-
Notifications
You must be signed in to change notification settings - Fork 7
/
mapping_resource.txt
1685 lines (1683 loc) · 166 KB
/
mapping_resource.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
res path mapping:
res/anim -> r/a
res/drawable-v23 -> r/b
res/drawable-ldrtl-xxxhdpi-v17 -> r/c
res/drawable-xxhdpi-v4 -> r/d
res/drawable-ldrtl-mdpi-v17 -> r/e
res/color-v23 -> r/f
res/layout-v22 -> r/g
res/drawable -> r/h
res/drawable-ldrtl-xxhdpi-v17 -> r/i
res/layout -> r/j
res/drawable-xhdpi-v4 -> r/k
res/color -> r/l
res/drawable-xxxhdpi-v4 -> r/m
res/xml -> r/n
res/drawable-ldrtl-xhdpi-v17 -> r/o
res/drawable-v21 -> r/p
res/color-v11 -> r/q
res/drawable-mdpi-v4 -> r/r
res/layout-v26 -> r/s
res/layout-v21 -> r/t
res/mipmap-xxhdpi-v4 -> r/u
res/drawable-hdpi-v4 -> r/v
res/raw -> r/w
res/drawable-ldrtl-hdpi-v17 -> r/x
res id mapping:
com.bihe0832.getsignature.R.anim.abc_fade_in -> com.bihe0832.getsignature.R.anim.a
com.bihe0832.getsignature.R.anim.abc_fade_out -> com.bihe0832.getsignature.R.anim.b
com.bihe0832.getsignature.R.anim.abc_grow_fade_in_from_bottom -> com.bihe0832.getsignature.R.anim.c
com.bihe0832.getsignature.R.anim.abc_popup_enter -> com.bihe0832.getsignature.R.anim.d
com.bihe0832.getsignature.R.anim.abc_popup_exit -> com.bihe0832.getsignature.R.anim.e
com.bihe0832.getsignature.R.anim.abc_shrink_fade_out_from_bottom -> com.bihe0832.getsignature.R.anim.f
com.bihe0832.getsignature.R.anim.abc_slide_in_bottom -> com.bihe0832.getsignature.R.anim.g
com.bihe0832.getsignature.R.anim.abc_slide_in_top -> com.bihe0832.getsignature.R.anim.h
com.bihe0832.getsignature.R.anim.abc_slide_out_bottom -> com.bihe0832.getsignature.R.anim.i
com.bihe0832.getsignature.R.anim.abc_slide_out_top -> com.bihe0832.getsignature.R.anim.j
com.bihe0832.getsignature.R.anim.h_fragment_enter -> com.bihe0832.getsignature.R.anim.k
com.bihe0832.getsignature.R.anim.h_fragment_exit -> com.bihe0832.getsignature.R.anim.l
com.bihe0832.getsignature.R.anim.h_fragment_pop_enter -> com.bihe0832.getsignature.R.anim.m
com.bihe0832.getsignature.R.anim.h_fragment_pop_exit -> com.bihe0832.getsignature.R.anim.n
com.bihe0832.getsignature.R.anim.loading_animation -> com.bihe0832.getsignature.R.anim.o
com.bihe0832.getsignature.R.anim.no_anim -> com.bihe0832.getsignature.R.anim.p
com.bihe0832.getsignature.R.anim.pop_exit_no_anim -> com.bihe0832.getsignature.R.anim.q
com.bihe0832.getsignature.R.anim.push_bottom_in -> com.bihe0832.getsignature.R.anim.r
com.bihe0832.getsignature.R.anim.push_bottom_out -> com.bihe0832.getsignature.R.anim.s
com.bihe0832.getsignature.R.anim.rotate_down -> com.bihe0832.getsignature.R.anim.t
com.bihe0832.getsignature.R.anim.rotate_infinite -> com.bihe0832.getsignature.R.anim.u
com.bihe0832.getsignature.R.anim.rotate_up -> com.bihe0832.getsignature.R.anim.v
com.bihe0832.getsignature.R.anim.slide_left_in -> com.bihe0832.getsignature.R.anim.w
com.bihe0832.getsignature.R.anim.slide_left_out -> com.bihe0832.getsignature.R.anim.x
com.bihe0832.getsignature.R.anim.slide_right_in -> com.bihe0832.getsignature.R.anim.y
com.bihe0832.getsignature.R.anim.slide_right_out -> com.bihe0832.getsignature.R.anim.z
com.bihe0832.getsignature.R.anim.tooltip_enter -> com.bihe0832.getsignature.R.anim.a0
com.bihe0832.getsignature.R.anim.tooltip_exit -> com.bihe0832.getsignature.R.anim.a1
com.bihe0832.getsignature.R.anim.v_fragment_enter -> com.bihe0832.getsignature.R.anim.a2
com.bihe0832.getsignature.R.anim.v_fragment_exit -> com.bihe0832.getsignature.R.anim.a3
com.bihe0832.getsignature.R.anim.v_fragment_pop_enter -> com.bihe0832.getsignature.R.anim.a4
com.bihe0832.getsignature.R.anim.v_fragment_pop_exit -> com.bihe0832.getsignature.R.anim.a5
com.bihe0832.getsignature.R.attr.SpinKitViewStyle -> com.bihe0832.getsignature.R.attr.a
com.bihe0832.getsignature.R.attr.SpinKit_Color -> com.bihe0832.getsignature.R.attr.b
com.bihe0832.getsignature.R.attr.SpinKit_Style -> com.bihe0832.getsignature.R.attr.c
com.bihe0832.getsignature.R.attr.actionBarDivider -> com.bihe0832.getsignature.R.attr.d
com.bihe0832.getsignature.R.attr.actionBarItemBackground -> com.bihe0832.getsignature.R.attr.e
com.bihe0832.getsignature.R.attr.actionBarPopupTheme -> com.bihe0832.getsignature.R.attr.f
com.bihe0832.getsignature.R.attr.actionBarSize -> com.bihe0832.getsignature.R.attr.g
com.bihe0832.getsignature.R.attr.actionBarSplitStyle -> com.bihe0832.getsignature.R.attr.h
com.bihe0832.getsignature.R.attr.actionBarStyle -> com.bihe0832.getsignature.R.attr.i
com.bihe0832.getsignature.R.attr.actionBarTabBarStyle -> com.bihe0832.getsignature.R.attr.j
com.bihe0832.getsignature.R.attr.actionBarTabStyle -> com.bihe0832.getsignature.R.attr.k
com.bihe0832.getsignature.R.attr.actionBarTabTextStyle -> com.bihe0832.getsignature.R.attr.l
com.bihe0832.getsignature.R.attr.actionBarTheme -> com.bihe0832.getsignature.R.attr.m
com.bihe0832.getsignature.R.attr.actionBarWidgetTheme -> com.bihe0832.getsignature.R.attr.n
com.bihe0832.getsignature.R.attr.actionButtonStyle -> com.bihe0832.getsignature.R.attr.o
com.bihe0832.getsignature.R.attr.actionDropDownStyle -> com.bihe0832.getsignature.R.attr.p
com.bihe0832.getsignature.R.attr.actionLayout -> com.bihe0832.getsignature.R.attr.q
com.bihe0832.getsignature.R.attr.actionMenuTextAppearance -> com.bihe0832.getsignature.R.attr.r
com.bihe0832.getsignature.R.attr.actionMenuTextColor -> com.bihe0832.getsignature.R.attr.s
com.bihe0832.getsignature.R.attr.actionModeBackground -> com.bihe0832.getsignature.R.attr.t
com.bihe0832.getsignature.R.attr.actionModeCloseButtonStyle -> com.bihe0832.getsignature.R.attr.u
com.bihe0832.getsignature.R.attr.actionModeCloseDrawable -> com.bihe0832.getsignature.R.attr.v
com.bihe0832.getsignature.R.attr.actionModeCopyDrawable -> com.bihe0832.getsignature.R.attr.w
com.bihe0832.getsignature.R.attr.actionModeCutDrawable -> com.bihe0832.getsignature.R.attr.x
com.bihe0832.getsignature.R.attr.actionModeFindDrawable -> com.bihe0832.getsignature.R.attr.y
com.bihe0832.getsignature.R.attr.actionModePasteDrawable -> com.bihe0832.getsignature.R.attr.z
com.bihe0832.getsignature.R.attr.actionModePopupWindowStyle -> com.bihe0832.getsignature.R.attr.a0
com.bihe0832.getsignature.R.attr.actionModeSelectAllDrawable -> com.bihe0832.getsignature.R.attr.a1
com.bihe0832.getsignature.R.attr.actionModeShareDrawable -> com.bihe0832.getsignature.R.attr.a2
com.bihe0832.getsignature.R.attr.actionModeSplitBackground -> com.bihe0832.getsignature.R.attr.a3
com.bihe0832.getsignature.R.attr.actionModeStyle -> com.bihe0832.getsignature.R.attr.a4
com.bihe0832.getsignature.R.attr.actionModeWebSearchDrawable -> com.bihe0832.getsignature.R.attr.a5
com.bihe0832.getsignature.R.attr.actionOverflowButtonStyle -> com.bihe0832.getsignature.R.attr.a6
com.bihe0832.getsignature.R.attr.actionOverflowMenuStyle -> com.bihe0832.getsignature.R.attr.a7
com.bihe0832.getsignature.R.attr.actionProviderClass -> com.bihe0832.getsignature.R.attr.a8
com.bihe0832.getsignature.R.attr.actionViewClass -> com.bihe0832.getsignature.R.attr.a9
com.bihe0832.getsignature.R.attr.activityChooserViewStyle -> com.bihe0832.getsignature.R.attr.a_
com.bihe0832.getsignature.R.attr.alertDialogButtonGroupStyle -> com.bihe0832.getsignature.R.attr.aa
com.bihe0832.getsignature.R.attr.alertDialogCenterButtons -> com.bihe0832.getsignature.R.attr.ab
com.bihe0832.getsignature.R.attr.alertDialogStyle -> com.bihe0832.getsignature.R.attr.ac
com.bihe0832.getsignature.R.attr.alertDialogTheme -> com.bihe0832.getsignature.R.attr.ad
com.bihe0832.getsignature.R.attr.allowStacking -> com.bihe0832.getsignature.R.attr.ae
com.bihe0832.getsignature.R.attr.alpha -> com.bihe0832.getsignature.R.attr.af
com.bihe0832.getsignature.R.attr.alphabeticModifiers -> com.bihe0832.getsignature.R.attr.ag
com.bihe0832.getsignature.R.attr.arrowHeadLength -> com.bihe0832.getsignature.R.attr.ah
com.bihe0832.getsignature.R.attr.arrowShaftLength -> com.bihe0832.getsignature.R.attr.ai
com.bihe0832.getsignature.R.attr.autoCompleteTextViewStyle -> com.bihe0832.getsignature.R.attr.aj
com.bihe0832.getsignature.R.attr.autoSizeMaxTextSize -> com.bihe0832.getsignature.R.attr.ak
com.bihe0832.getsignature.R.attr.autoSizeMinTextSize -> com.bihe0832.getsignature.R.attr.al
com.bihe0832.getsignature.R.attr.autoSizePresetSizes -> com.bihe0832.getsignature.R.attr.am
com.bihe0832.getsignature.R.attr.autoSizeStepGranularity -> com.bihe0832.getsignature.R.attr.an
com.bihe0832.getsignature.R.attr.autoSizeTextType -> com.bihe0832.getsignature.R.attr.ao
com.bihe0832.getsignature.R.attr.background -> com.bihe0832.getsignature.R.attr.ap
com.bihe0832.getsignature.R.attr.backgroundSplit -> com.bihe0832.getsignature.R.attr.aq
com.bihe0832.getsignature.R.attr.backgroundStacked -> com.bihe0832.getsignature.R.attr.ar
com.bihe0832.getsignature.R.attr.backgroundTint -> com.bihe0832.getsignature.R.attr.as
com.bihe0832.getsignature.R.attr.backgroundTintMode -> com.bihe0832.getsignature.R.attr.at
com.bihe0832.getsignature.R.attr.barLength -> com.bihe0832.getsignature.R.attr.au
com.bihe0832.getsignature.R.attr.barrierAllowsGoneWidgets -> com.bihe0832.getsignature.R.attr.av
com.bihe0832.getsignature.R.attr.barrierDirection -> com.bihe0832.getsignature.R.attr.aw
com.bihe0832.getsignature.R.attr.borderlessButtonStyle -> com.bihe0832.getsignature.R.attr.ax
com.bihe0832.getsignature.R.attr.buttonBarButtonStyle -> com.bihe0832.getsignature.R.attr.ay
com.bihe0832.getsignature.R.attr.buttonBarNegativeButtonStyle -> com.bihe0832.getsignature.R.attr.az
com.bihe0832.getsignature.R.attr.buttonBarNeutralButtonStyle -> com.bihe0832.getsignature.R.attr.b0
com.bihe0832.getsignature.R.attr.buttonBarPositiveButtonStyle -> com.bihe0832.getsignature.R.attr.b1
com.bihe0832.getsignature.R.attr.buttonBarStyle -> com.bihe0832.getsignature.R.attr.b2
com.bihe0832.getsignature.R.attr.buttonGravity -> com.bihe0832.getsignature.R.attr.b3
com.bihe0832.getsignature.R.attr.buttonPanelSideLayout -> com.bihe0832.getsignature.R.attr.b4
com.bihe0832.getsignature.R.attr.buttonStyle -> com.bihe0832.getsignature.R.attr.b5
com.bihe0832.getsignature.R.attr.buttonStyleSmall -> com.bihe0832.getsignature.R.attr.b6
com.bihe0832.getsignature.R.attr.buttonTint -> com.bihe0832.getsignature.R.attr.b7
com.bihe0832.getsignature.R.attr.buttonTintMode -> com.bihe0832.getsignature.R.attr.b8
com.bihe0832.getsignature.R.attr.chainUseRtl -> com.bihe0832.getsignature.R.attr.b9
com.bihe0832.getsignature.R.attr.checkboxStyle -> com.bihe0832.getsignature.R.attr.b_
com.bihe0832.getsignature.R.attr.checkedTextViewStyle -> com.bihe0832.getsignature.R.attr.ba
com.bihe0832.getsignature.R.attr.closeIcon -> com.bihe0832.getsignature.R.attr.bb
com.bihe0832.getsignature.R.attr.closeItemLayout -> com.bihe0832.getsignature.R.attr.bc
com.bihe0832.getsignature.R.attr.collapseContentDescription -> com.bihe0832.getsignature.R.attr.bd
com.bihe0832.getsignature.R.attr.collapseIcon -> com.bihe0832.getsignature.R.attr.be
com.bihe0832.getsignature.R.attr.color -> com.bihe0832.getsignature.R.attr.bf
com.bihe0832.getsignature.R.attr.colorAccent -> com.bihe0832.getsignature.R.attr.bg
com.bihe0832.getsignature.R.attr.colorBackgroundFloating -> com.bihe0832.getsignature.R.attr.bh
com.bihe0832.getsignature.R.attr.colorButtonNormal -> com.bihe0832.getsignature.R.attr.bi
com.bihe0832.getsignature.R.attr.colorControlActivated -> com.bihe0832.getsignature.R.attr.bj
com.bihe0832.getsignature.R.attr.colorControlHighlight -> com.bihe0832.getsignature.R.attr.bk
com.bihe0832.getsignature.R.attr.colorControlNormal -> com.bihe0832.getsignature.R.attr.bl
com.bihe0832.getsignature.R.attr.colorError -> com.bihe0832.getsignature.R.attr.bm
com.bihe0832.getsignature.R.attr.colorPrimary -> com.bihe0832.getsignature.R.attr.bn
com.bihe0832.getsignature.R.attr.colorPrimaryDark -> com.bihe0832.getsignature.R.attr.bo
com.bihe0832.getsignature.R.attr.colorSwitchThumbNormal -> com.bihe0832.getsignature.R.attr.bp
com.bihe0832.getsignature.R.attr.commitIcon -> com.bihe0832.getsignature.R.attr.bq
com.bihe0832.getsignature.R.attr.constraintSet -> com.bihe0832.getsignature.R.attr.br
com.bihe0832.getsignature.R.attr.constraint_referenced_ids -> com.bihe0832.getsignature.R.attr.bs
com.bihe0832.getsignature.R.attr.content -> com.bihe0832.getsignature.R.attr.bt
com.bihe0832.getsignature.R.attr.contentDescription -> com.bihe0832.getsignature.R.attr.bu
com.bihe0832.getsignature.R.attr.contentInsetEnd -> com.bihe0832.getsignature.R.attr.bv
com.bihe0832.getsignature.R.attr.contentInsetEndWithActions -> com.bihe0832.getsignature.R.attr.bw
com.bihe0832.getsignature.R.attr.contentInsetLeft -> com.bihe0832.getsignature.R.attr.bx
com.bihe0832.getsignature.R.attr.contentInsetRight -> com.bihe0832.getsignature.R.attr.by
com.bihe0832.getsignature.R.attr.contentInsetStart -> com.bihe0832.getsignature.R.attr.bz
com.bihe0832.getsignature.R.attr.contentInsetStartWithNavigation -> com.bihe0832.getsignature.R.attr.c0
com.bihe0832.getsignature.R.attr.controlBackground -> com.bihe0832.getsignature.R.attr.c1
com.bihe0832.getsignature.R.attr.corner_color -> com.bihe0832.getsignature.R.attr.c2
com.bihe0832.getsignature.R.attr.customNavigationLayout -> com.bihe0832.getsignature.R.attr.c3
com.bihe0832.getsignature.R.attr.defaultQueryHint -> com.bihe0832.getsignature.R.attr.c4
com.bihe0832.getsignature.R.attr.dialogPreferredPadding -> com.bihe0832.getsignature.R.attr.c5
com.bihe0832.getsignature.R.attr.dialogTheme -> com.bihe0832.getsignature.R.attr.c6
com.bihe0832.getsignature.R.attr.displayOptions -> com.bihe0832.getsignature.R.attr.c7
com.bihe0832.getsignature.R.attr.divider -> com.bihe0832.getsignature.R.attr.c8
com.bihe0832.getsignature.R.attr.dividerHorizontal -> com.bihe0832.getsignature.R.attr.c9
com.bihe0832.getsignature.R.attr.dividerPadding -> com.bihe0832.getsignature.R.attr.c_
com.bihe0832.getsignature.R.attr.dividerVertical -> com.bihe0832.getsignature.R.attr.ca
com.bihe0832.getsignature.R.attr.drawableSize -> com.bihe0832.getsignature.R.attr.cb
com.bihe0832.getsignature.R.attr.drawerArrowStyle -> com.bihe0832.getsignature.R.attr.cc
com.bihe0832.getsignature.R.attr.dropDownListViewStyle -> com.bihe0832.getsignature.R.attr.cd
com.bihe0832.getsignature.R.attr.dropdownListPreferredItemHeight -> com.bihe0832.getsignature.R.attr.ce
com.bihe0832.getsignature.R.attr.editTextBackground -> com.bihe0832.getsignature.R.attr.cf
com.bihe0832.getsignature.R.attr.editTextColor -> com.bihe0832.getsignature.R.attr.cg
com.bihe0832.getsignature.R.attr.editTextStyle -> com.bihe0832.getsignature.R.attr.ch
com.bihe0832.getsignature.R.attr.elevation -> com.bihe0832.getsignature.R.attr.ci
com.bihe0832.getsignature.R.attr.emptyVisibility -> com.bihe0832.getsignature.R.attr.cj
com.bihe0832.getsignature.R.attr.expandActivityOverflowButtonDrawable -> com.bihe0832.getsignature.R.attr.ck
com.bihe0832.getsignature.R.attr.fastScrollEnabled -> com.bihe0832.getsignature.R.attr.cl
com.bihe0832.getsignature.R.attr.fastScrollHorizontalThumbDrawable -> com.bihe0832.getsignature.R.attr.cm
com.bihe0832.getsignature.R.attr.fastScrollHorizontalTrackDrawable -> com.bihe0832.getsignature.R.attr.cn
com.bihe0832.getsignature.R.attr.fastScrollVerticalThumbDrawable -> com.bihe0832.getsignature.R.attr.co
com.bihe0832.getsignature.R.attr.fastScrollVerticalTrackDrawable -> com.bihe0832.getsignature.R.attr.cp
com.bihe0832.getsignature.R.attr.font -> com.bihe0832.getsignature.R.attr.cq
com.bihe0832.getsignature.R.attr.fontFamily -> com.bihe0832.getsignature.R.attr.cr
com.bihe0832.getsignature.R.attr.fontProviderAuthority -> com.bihe0832.getsignature.R.attr.cs
com.bihe0832.getsignature.R.attr.fontProviderCerts -> com.bihe0832.getsignature.R.attr.ct
com.bihe0832.getsignature.R.attr.fontProviderFetchStrategy -> com.bihe0832.getsignature.R.attr.cu
com.bihe0832.getsignature.R.attr.fontProviderFetchTimeout -> com.bihe0832.getsignature.R.attr.cv
com.bihe0832.getsignature.R.attr.fontProviderPackage -> com.bihe0832.getsignature.R.attr.cw
com.bihe0832.getsignature.R.attr.fontProviderQuery -> com.bihe0832.getsignature.R.attr.cx
com.bihe0832.getsignature.R.attr.fontStyle -> com.bihe0832.getsignature.R.attr.cy
com.bihe0832.getsignature.R.attr.fontWeight -> com.bihe0832.getsignature.R.attr.cz
com.bihe0832.getsignature.R.attr.frame_color -> com.bihe0832.getsignature.R.attr.d0
com.bihe0832.getsignature.R.attr.gapBetweenBars -> com.bihe0832.getsignature.R.attr.d1
com.bihe0832.getsignature.R.attr.goIcon -> com.bihe0832.getsignature.R.attr.d2
com.bihe0832.getsignature.R.attr.height -> com.bihe0832.getsignature.R.attr.d3
com.bihe0832.getsignature.R.attr.hideOnContentScroll -> com.bihe0832.getsignature.R.attr.d4
com.bihe0832.getsignature.R.attr.homeAsUpIndicator -> com.bihe0832.getsignature.R.attr.d5
com.bihe0832.getsignature.R.attr.homeLayout -> com.bihe0832.getsignature.R.attr.d6
com.bihe0832.getsignature.R.attr.icon -> com.bihe0832.getsignature.R.attr.d7
com.bihe0832.getsignature.R.attr.iconTint -> com.bihe0832.getsignature.R.attr.d8
com.bihe0832.getsignature.R.attr.iconTintMode -> com.bihe0832.getsignature.R.attr.d9
com.bihe0832.getsignature.R.attr.iconifiedByDefault -> com.bihe0832.getsignature.R.attr.d_
com.bihe0832.getsignature.R.attr.imageButtonStyle -> com.bihe0832.getsignature.R.attr.da
com.bihe0832.getsignature.R.attr.indeterminateProgressStyle -> com.bihe0832.getsignature.R.attr.db
com.bihe0832.getsignature.R.attr.initialActivityCount -> com.bihe0832.getsignature.R.attr.dc
com.bihe0832.getsignature.R.attr.isLightTheme -> com.bihe0832.getsignature.R.attr.dd
com.bihe0832.getsignature.R.attr.itemPadding -> com.bihe0832.getsignature.R.attr.de
com.bihe0832.getsignature.R.attr.label_text -> com.bihe0832.getsignature.R.attr.df
com.bihe0832.getsignature.R.attr.label_text_color -> com.bihe0832.getsignature.R.attr.dg
com.bihe0832.getsignature.R.attr.label_text_size -> com.bihe0832.getsignature.R.attr.dh
com.bihe0832.getsignature.R.attr.laser_color -> com.bihe0832.getsignature.R.attr.di
com.bihe0832.getsignature.R.attr.layout -> com.bihe0832.getsignature.R.attr.dj
com.bihe0832.getsignature.R.attr.layoutManager -> com.bihe0832.getsignature.R.attr.dk
com.bihe0832.getsignature.R.attr.layout_constrainedHeight -> com.bihe0832.getsignature.R.attr.dl
com.bihe0832.getsignature.R.attr.layout_constrainedWidth -> com.bihe0832.getsignature.R.attr.dm
com.bihe0832.getsignature.R.attr.layout_constraintBaseline_creator -> com.bihe0832.getsignature.R.attr.dn
com.bihe0832.getsignature.R.attr.layout_constraintBaseline_toBaselineOf -> com.bihe0832.getsignature.R.attr.do
com.bihe0832.getsignature.R.attr.layout_constraintBottom_creator -> com.bihe0832.getsignature.R.attr.dp
com.bihe0832.getsignature.R.attr.layout_constraintBottom_toBottomOf -> com.bihe0832.getsignature.R.attr.dq
com.bihe0832.getsignature.R.attr.layout_constraintBottom_toTopOf -> com.bihe0832.getsignature.R.attr.dr
com.bihe0832.getsignature.R.attr.layout_constraintCircle -> com.bihe0832.getsignature.R.attr.ds
com.bihe0832.getsignature.R.attr.layout_constraintCircleAngle -> com.bihe0832.getsignature.R.attr.dt
com.bihe0832.getsignature.R.attr.layout_constraintCircleRadius -> com.bihe0832.getsignature.R.attr.du
com.bihe0832.getsignature.R.attr.layout_constraintDimensionRatio -> com.bihe0832.getsignature.R.attr.dv
com.bihe0832.getsignature.R.attr.layout_constraintEnd_toEndOf -> com.bihe0832.getsignature.R.attr.dw
com.bihe0832.getsignature.R.attr.layout_constraintEnd_toStartOf -> com.bihe0832.getsignature.R.attr.dx
com.bihe0832.getsignature.R.attr.layout_constraintGuide_begin -> com.bihe0832.getsignature.R.attr.dy
com.bihe0832.getsignature.R.attr.layout_constraintGuide_end -> com.bihe0832.getsignature.R.attr.dz
com.bihe0832.getsignature.R.attr.layout_constraintGuide_percent -> com.bihe0832.getsignature.R.attr.e0
com.bihe0832.getsignature.R.attr.layout_constraintHeight_default -> com.bihe0832.getsignature.R.attr.e1
com.bihe0832.getsignature.R.attr.layout_constraintHeight_max -> com.bihe0832.getsignature.R.attr.e2
com.bihe0832.getsignature.R.attr.layout_constraintHeight_min -> com.bihe0832.getsignature.R.attr.e3
com.bihe0832.getsignature.R.attr.layout_constraintHeight_percent -> com.bihe0832.getsignature.R.attr.e4
com.bihe0832.getsignature.R.attr.layout_constraintHorizontal_bias -> com.bihe0832.getsignature.R.attr.e5
com.bihe0832.getsignature.R.attr.layout_constraintHorizontal_chainStyle -> com.bihe0832.getsignature.R.attr.e6
com.bihe0832.getsignature.R.attr.layout_constraintHorizontal_weight -> com.bihe0832.getsignature.R.attr.e7
com.bihe0832.getsignature.R.attr.layout_constraintLeft_creator -> com.bihe0832.getsignature.R.attr.e8
com.bihe0832.getsignature.R.attr.layout_constraintLeft_toLeftOf -> com.bihe0832.getsignature.R.attr.e9
com.bihe0832.getsignature.R.attr.layout_constraintLeft_toRightOf -> com.bihe0832.getsignature.R.attr.e_
com.bihe0832.getsignature.R.attr.layout_constraintRight_creator -> com.bihe0832.getsignature.R.attr.ea
com.bihe0832.getsignature.R.attr.layout_constraintRight_toLeftOf -> com.bihe0832.getsignature.R.attr.eb
com.bihe0832.getsignature.R.attr.layout_constraintRight_toRightOf -> com.bihe0832.getsignature.R.attr.ec
com.bihe0832.getsignature.R.attr.layout_constraintStart_toEndOf -> com.bihe0832.getsignature.R.attr.ed
com.bihe0832.getsignature.R.attr.layout_constraintStart_toStartOf -> com.bihe0832.getsignature.R.attr.ee
com.bihe0832.getsignature.R.attr.layout_constraintTop_creator -> com.bihe0832.getsignature.R.attr.ef
com.bihe0832.getsignature.R.attr.layout_constraintTop_toBottomOf -> com.bihe0832.getsignature.R.attr.eg
com.bihe0832.getsignature.R.attr.layout_constraintTop_toTopOf -> com.bihe0832.getsignature.R.attr.eh
com.bihe0832.getsignature.R.attr.layout_constraintVertical_bias -> com.bihe0832.getsignature.R.attr.ei
com.bihe0832.getsignature.R.attr.layout_constraintVertical_chainStyle -> com.bihe0832.getsignature.R.attr.ej
com.bihe0832.getsignature.R.attr.layout_constraintVertical_weight -> com.bihe0832.getsignature.R.attr.ek
com.bihe0832.getsignature.R.attr.layout_constraintWidth_default -> com.bihe0832.getsignature.R.attr.el
com.bihe0832.getsignature.R.attr.layout_constraintWidth_max -> com.bihe0832.getsignature.R.attr.em
com.bihe0832.getsignature.R.attr.layout_constraintWidth_min -> com.bihe0832.getsignature.R.attr.en
com.bihe0832.getsignature.R.attr.layout_constraintWidth_percent -> com.bihe0832.getsignature.R.attr.eo
com.bihe0832.getsignature.R.attr.layout_editor_absoluteX -> com.bihe0832.getsignature.R.attr.ep
com.bihe0832.getsignature.R.attr.layout_editor_absoluteY -> com.bihe0832.getsignature.R.attr.eq
com.bihe0832.getsignature.R.attr.layout_goneMarginBottom -> com.bihe0832.getsignature.R.attr.er
com.bihe0832.getsignature.R.attr.layout_goneMarginEnd -> com.bihe0832.getsignature.R.attr.es
com.bihe0832.getsignature.R.attr.layout_goneMarginLeft -> com.bihe0832.getsignature.R.attr.et
com.bihe0832.getsignature.R.attr.layout_goneMarginRight -> com.bihe0832.getsignature.R.attr.eu
com.bihe0832.getsignature.R.attr.layout_goneMarginStart -> com.bihe0832.getsignature.R.attr.ev
com.bihe0832.getsignature.R.attr.layout_goneMarginTop -> com.bihe0832.getsignature.R.attr.ew
com.bihe0832.getsignature.R.attr.layout_optimizationLevel -> com.bihe0832.getsignature.R.attr.ex
com.bihe0832.getsignature.R.attr.listChoiceBackgroundIndicator -> com.bihe0832.getsignature.R.attr.ey
com.bihe0832.getsignature.R.attr.listDividerAlertDialog -> com.bihe0832.getsignature.R.attr.ez
com.bihe0832.getsignature.R.attr.listItemLayout -> com.bihe0832.getsignature.R.attr.f0
com.bihe0832.getsignature.R.attr.listLayout -> com.bihe0832.getsignature.R.attr.f1
com.bihe0832.getsignature.R.attr.listMenuViewStyle -> com.bihe0832.getsignature.R.attr.f2
com.bihe0832.getsignature.R.attr.listPopupWindowStyle -> com.bihe0832.getsignature.R.attr.f3
com.bihe0832.getsignature.R.attr.listPreferredItemHeight -> com.bihe0832.getsignature.R.attr.f4
com.bihe0832.getsignature.R.attr.listPreferredItemHeightLarge -> com.bihe0832.getsignature.R.attr.f5
com.bihe0832.getsignature.R.attr.listPreferredItemHeightSmall -> com.bihe0832.getsignature.R.attr.f6
com.bihe0832.getsignature.R.attr.listPreferredItemPaddingLeft -> com.bihe0832.getsignature.R.attr.f7
com.bihe0832.getsignature.R.attr.listPreferredItemPaddingRight -> com.bihe0832.getsignature.R.attr.f8
com.bihe0832.getsignature.R.attr.logo -> com.bihe0832.getsignature.R.attr.f9
com.bihe0832.getsignature.R.attr.logoDescription -> com.bihe0832.getsignature.R.attr.f_
com.bihe0832.getsignature.R.attr.mask_color -> com.bihe0832.getsignature.R.attr.fa
com.bihe0832.getsignature.R.attr.maxButtonHeight -> com.bihe0832.getsignature.R.attr.fb
com.bihe0832.getsignature.R.attr.measureWithLargestChild -> com.bihe0832.getsignature.R.attr.fc
com.bihe0832.getsignature.R.attr.multiChoiceItemLayout -> com.bihe0832.getsignature.R.attr.fd
com.bihe0832.getsignature.R.attr.mv_backgroundColor -> com.bihe0832.getsignature.R.attr.fe
com.bihe0832.getsignature.R.attr.mv_cornerRadius -> com.bihe0832.getsignature.R.attr.ff
com.bihe0832.getsignature.R.attr.mv_isRadiusHalfHeight -> com.bihe0832.getsignature.R.attr.fg
com.bihe0832.getsignature.R.attr.mv_isWidthHeightEqual -> com.bihe0832.getsignature.R.attr.fh
com.bihe0832.getsignature.R.attr.mv_strokeColor -> com.bihe0832.getsignature.R.attr.fi
com.bihe0832.getsignature.R.attr.mv_strokeWidth -> com.bihe0832.getsignature.R.attr.fj
com.bihe0832.getsignature.R.attr.navigationContentDescription -> com.bihe0832.getsignature.R.attr.fk
com.bihe0832.getsignature.R.attr.navigationIcon -> com.bihe0832.getsignature.R.attr.fl
com.bihe0832.getsignature.R.attr.navigationMode -> com.bihe0832.getsignature.R.attr.fm
com.bihe0832.getsignature.R.attr.numericModifiers -> com.bihe0832.getsignature.R.attr.fn
com.bihe0832.getsignature.R.attr.overlapAnchor -> com.bihe0832.getsignature.R.attr.fo
com.bihe0832.getsignature.R.attr.paddingBottomNoButtons -> com.bihe0832.getsignature.R.attr.fp
com.bihe0832.getsignature.R.attr.paddingEnd -> com.bihe0832.getsignature.R.attr.fq
com.bihe0832.getsignature.R.attr.paddingStart -> com.bihe0832.getsignature.R.attr.fr
com.bihe0832.getsignature.R.attr.paddingTopNoTitle -> com.bihe0832.getsignature.R.attr.fs
com.bihe0832.getsignature.R.attr.panelBackground -> com.bihe0832.getsignature.R.attr.ft
com.bihe0832.getsignature.R.attr.panelMenuListTheme -> com.bihe0832.getsignature.R.attr.fu
com.bihe0832.getsignature.R.attr.panelMenuListWidth -> com.bihe0832.getsignature.R.attr.fv
com.bihe0832.getsignature.R.attr.popupMenuStyle -> com.bihe0832.getsignature.R.attr.fw
com.bihe0832.getsignature.R.attr.popupTheme -> com.bihe0832.getsignature.R.attr.fx
com.bihe0832.getsignature.R.attr.popupWindowStyle -> com.bihe0832.getsignature.R.attr.fy
com.bihe0832.getsignature.R.attr.preserveIconSpacing -> com.bihe0832.getsignature.R.attr.fz
com.bihe0832.getsignature.R.attr.progressBarPadding -> com.bihe0832.getsignature.R.attr.g0
com.bihe0832.getsignature.R.attr.progressBarStyle -> com.bihe0832.getsignature.R.attr.g1
com.bihe0832.getsignature.R.attr.queryBackground -> com.bihe0832.getsignature.R.attr.g2
com.bihe0832.getsignature.R.attr.queryHint -> com.bihe0832.getsignature.R.attr.g3
com.bihe0832.getsignature.R.attr.radioButtonStyle -> com.bihe0832.getsignature.R.attr.g4
com.bihe0832.getsignature.R.attr.ratingBarStyle -> com.bihe0832.getsignature.R.attr.g5
com.bihe0832.getsignature.R.attr.ratingBarStyleIndicator -> com.bihe0832.getsignature.R.attr.g6
com.bihe0832.getsignature.R.attr.ratingBarStyleSmall -> com.bihe0832.getsignature.R.attr.g7
com.bihe0832.getsignature.R.attr.result_color -> com.bihe0832.getsignature.R.attr.g8
com.bihe0832.getsignature.R.attr.result_point_color -> com.bihe0832.getsignature.R.attr.g9
com.bihe0832.getsignature.R.attr.reverseLayout -> com.bihe0832.getsignature.R.attr.g_
com.bihe0832.getsignature.R.attr.searchHintIcon -> com.bihe0832.getsignature.R.attr.ga
com.bihe0832.getsignature.R.attr.searchIcon -> com.bihe0832.getsignature.R.attr.gb
com.bihe0832.getsignature.R.attr.searchViewStyle -> com.bihe0832.getsignature.R.attr.gc
com.bihe0832.getsignature.R.attr.seekBarStyle -> com.bihe0832.getsignature.R.attr.gd
com.bihe0832.getsignature.R.attr.selectableItemBackground -> com.bihe0832.getsignature.R.attr.ge
com.bihe0832.getsignature.R.attr.selectableItemBackgroundBorderless -> com.bihe0832.getsignature.R.attr.gf
com.bihe0832.getsignature.R.attr.showAsAction -> com.bihe0832.getsignature.R.attr.gg
com.bihe0832.getsignature.R.attr.showDividers -> com.bihe0832.getsignature.R.attr.gh
com.bihe0832.getsignature.R.attr.showText -> com.bihe0832.getsignature.R.attr.gi
com.bihe0832.getsignature.R.attr.showTitle -> com.bihe0832.getsignature.R.attr.gj
com.bihe0832.getsignature.R.attr.singleChoiceItemLayout -> com.bihe0832.getsignature.R.attr.gk
com.bihe0832.getsignature.R.attr.spanCount -> com.bihe0832.getsignature.R.attr.gl
com.bihe0832.getsignature.R.attr.spinBars -> com.bihe0832.getsignature.R.attr.gm
com.bihe0832.getsignature.R.attr.spinnerDropDownItemStyle -> com.bihe0832.getsignature.R.attr.gn
com.bihe0832.getsignature.R.attr.spinnerStyle -> com.bihe0832.getsignature.R.attr.go
com.bihe0832.getsignature.R.attr.splitTrack -> com.bihe0832.getsignature.R.attr.gp
com.bihe0832.getsignature.R.attr.srcCompat -> com.bihe0832.getsignature.R.attr.gq
com.bihe0832.getsignature.R.attr.stackFromEnd -> com.bihe0832.getsignature.R.attr.gr
com.bihe0832.getsignature.R.attr.state_above_anchor -> com.bihe0832.getsignature.R.attr.gs
com.bihe0832.getsignature.R.attr.subMenuArrow -> com.bihe0832.getsignature.R.attr.gt
com.bihe0832.getsignature.R.attr.submitBackground -> com.bihe0832.getsignature.R.attr.gu
com.bihe0832.getsignature.R.attr.subtitle -> com.bihe0832.getsignature.R.attr.gv
com.bihe0832.getsignature.R.attr.subtitleTextAppearance -> com.bihe0832.getsignature.R.attr.gw
com.bihe0832.getsignature.R.attr.subtitleTextColor -> com.bihe0832.getsignature.R.attr.gx
com.bihe0832.getsignature.R.attr.subtitleTextStyle -> com.bihe0832.getsignature.R.attr.gy
com.bihe0832.getsignature.R.attr.suggestionRowLayout -> com.bihe0832.getsignature.R.attr.gz
com.bihe0832.getsignature.R.attr.switchMinWidth -> com.bihe0832.getsignature.R.attr.h0
com.bihe0832.getsignature.R.attr.switchPadding -> com.bihe0832.getsignature.R.attr.h1
com.bihe0832.getsignature.R.attr.switchStyle -> com.bihe0832.getsignature.R.attr.h2
com.bihe0832.getsignature.R.attr.switchTextAppearance -> com.bihe0832.getsignature.R.attr.h3
com.bihe0832.getsignature.R.attr.textAllCaps -> com.bihe0832.getsignature.R.attr.h4
com.bihe0832.getsignature.R.attr.textAppearanceLargePopupMenu -> com.bihe0832.getsignature.R.attr.h5
com.bihe0832.getsignature.R.attr.textAppearanceListItem -> com.bihe0832.getsignature.R.attr.h6
com.bihe0832.getsignature.R.attr.textAppearanceListItemSecondary -> com.bihe0832.getsignature.R.attr.h7
com.bihe0832.getsignature.R.attr.textAppearanceListItemSmall -> com.bihe0832.getsignature.R.attr.h8
com.bihe0832.getsignature.R.attr.textAppearancePopupMenuHeader -> com.bihe0832.getsignature.R.attr.h9
com.bihe0832.getsignature.R.attr.textAppearanceSearchResultSubtitle -> com.bihe0832.getsignature.R.attr.h_
com.bihe0832.getsignature.R.attr.textAppearanceSearchResultTitle -> com.bihe0832.getsignature.R.attr.ha
com.bihe0832.getsignature.R.attr.textAppearanceSmallPopupMenu -> com.bihe0832.getsignature.R.attr.hb
com.bihe0832.getsignature.R.attr.textColorAlertDialogListItem -> com.bihe0832.getsignature.R.attr.hc
com.bihe0832.getsignature.R.attr.textColorSearchUrl -> com.bihe0832.getsignature.R.attr.hd
com.bihe0832.getsignature.R.attr.theme -> com.bihe0832.getsignature.R.attr.he
com.bihe0832.getsignature.R.attr.thickness -> com.bihe0832.getsignature.R.attr.hf
com.bihe0832.getsignature.R.attr.thumbTextPadding -> com.bihe0832.getsignature.R.attr.hg
com.bihe0832.getsignature.R.attr.thumbTint -> com.bihe0832.getsignature.R.attr.hh
com.bihe0832.getsignature.R.attr.thumbTintMode -> com.bihe0832.getsignature.R.attr.hi
com.bihe0832.getsignature.R.attr.tickMark -> com.bihe0832.getsignature.R.attr.hj
com.bihe0832.getsignature.R.attr.tickMarkTint -> com.bihe0832.getsignature.R.attr.hk
com.bihe0832.getsignature.R.attr.tickMarkTintMode -> com.bihe0832.getsignature.R.attr.hl
com.bihe0832.getsignature.R.attr.tint -> com.bihe0832.getsignature.R.attr.hm
com.bihe0832.getsignature.R.attr.tintMode -> com.bihe0832.getsignature.R.attr.hn
com.bihe0832.getsignature.R.attr.title -> com.bihe0832.getsignature.R.attr.ho
com.bihe0832.getsignature.R.attr.titleMargin -> com.bihe0832.getsignature.R.attr.hp
com.bihe0832.getsignature.R.attr.titleMarginBottom -> com.bihe0832.getsignature.R.attr.hq
com.bihe0832.getsignature.R.attr.titleMarginEnd -> com.bihe0832.getsignature.R.attr.hr
com.bihe0832.getsignature.R.attr.titleMarginStart -> com.bihe0832.getsignature.R.attr.hs
com.bihe0832.getsignature.R.attr.titleMarginTop -> com.bihe0832.getsignature.R.attr.ht
com.bihe0832.getsignature.R.attr.titleMargins -> com.bihe0832.getsignature.R.attr.hu
com.bihe0832.getsignature.R.attr.titleTextAppearance -> com.bihe0832.getsignature.R.attr.hv
com.bihe0832.getsignature.R.attr.titleTextColor -> com.bihe0832.getsignature.R.attr.hw
com.bihe0832.getsignature.R.attr.titleTextStyle -> com.bihe0832.getsignature.R.attr.hx
com.bihe0832.getsignature.R.attr.tl_bar_color -> com.bihe0832.getsignature.R.attr.hy
com.bihe0832.getsignature.R.attr.tl_bar_stroke_color -> com.bihe0832.getsignature.R.attr.hz
com.bihe0832.getsignature.R.attr.tl_bar_stroke_width -> com.bihe0832.getsignature.R.attr.i0
com.bihe0832.getsignature.R.attr.tl_divider_color -> com.bihe0832.getsignature.R.attr.i1
com.bihe0832.getsignature.R.attr.tl_divider_padding -> com.bihe0832.getsignature.R.attr.i2
com.bihe0832.getsignature.R.attr.tl_divider_width -> com.bihe0832.getsignature.R.attr.i3
com.bihe0832.getsignature.R.attr.tl_iconGravity -> com.bihe0832.getsignature.R.attr.i4
com.bihe0832.getsignature.R.attr.tl_iconHeight -> com.bihe0832.getsignature.R.attr.i5
com.bihe0832.getsignature.R.attr.tl_iconMargin -> com.bihe0832.getsignature.R.attr.i6
com.bihe0832.getsignature.R.attr.tl_iconVisible -> com.bihe0832.getsignature.R.attr.i7
com.bihe0832.getsignature.R.attr.tl_iconWidth -> com.bihe0832.getsignature.R.attr.i8
com.bihe0832.getsignature.R.attr.tl_indicator_anim_duration -> com.bihe0832.getsignature.R.attr.i9
com.bihe0832.getsignature.R.attr.tl_indicator_anim_enable -> com.bihe0832.getsignature.R.attr.i_
com.bihe0832.getsignature.R.attr.tl_indicator_bounce_enable -> com.bihe0832.getsignature.R.attr.ia
com.bihe0832.getsignature.R.attr.tl_indicator_color -> com.bihe0832.getsignature.R.attr.ib
com.bihe0832.getsignature.R.attr.tl_indicator_corner_radius -> com.bihe0832.getsignature.R.attr.ic
com.bihe0832.getsignature.R.attr.tl_indicator_gravity -> com.bihe0832.getsignature.R.attr.id
com.bihe0832.getsignature.R.attr.tl_indicator_height -> com.bihe0832.getsignature.R.attr.ie
com.bihe0832.getsignature.R.attr.tl_indicator_margin_bottom -> com.bihe0832.getsignature.R.attr.if
com.bihe0832.getsignature.R.attr.tl_indicator_margin_left -> com.bihe0832.getsignature.R.attr.ig
com.bihe0832.getsignature.R.attr.tl_indicator_margin_right -> com.bihe0832.getsignature.R.attr.ih
com.bihe0832.getsignature.R.attr.tl_indicator_margin_top -> com.bihe0832.getsignature.R.attr.ii
com.bihe0832.getsignature.R.attr.tl_indicator_style -> com.bihe0832.getsignature.R.attr.ij
com.bihe0832.getsignature.R.attr.tl_indicator_width -> com.bihe0832.getsignature.R.attr.ik
com.bihe0832.getsignature.R.attr.tl_indicator_width_equal_title -> com.bihe0832.getsignature.R.attr.il
com.bihe0832.getsignature.R.attr.tl_is_title_use_textsize -> com.bihe0832.getsignature.R.attr.im
com.bihe0832.getsignature.R.attr.tl_tab_padding -> com.bihe0832.getsignature.R.attr.in
com.bihe0832.getsignature.R.attr.tl_tab_space_equal -> com.bihe0832.getsignature.R.attr.io
com.bihe0832.getsignature.R.attr.tl_tab_width -> com.bihe0832.getsignature.R.attr.ip
com.bihe0832.getsignature.R.attr.tl_textAllCaps -> com.bihe0832.getsignature.R.attr.iq
com.bihe0832.getsignature.R.attr.tl_textBold -> com.bihe0832.getsignature.R.attr.ir
com.bihe0832.getsignature.R.attr.tl_textSelectColor -> com.bihe0832.getsignature.R.attr.is
com.bihe0832.getsignature.R.attr.tl_textUnselectColor -> com.bihe0832.getsignature.R.attr.it
com.bihe0832.getsignature.R.attr.tl_textsize -> com.bihe0832.getsignature.R.attr.iu
com.bihe0832.getsignature.R.attr.tl_underline_color -> com.bihe0832.getsignature.R.attr.iv
com.bihe0832.getsignature.R.attr.tl_underline_gravity -> com.bihe0832.getsignature.R.attr.iw
com.bihe0832.getsignature.R.attr.tl_underline_height -> com.bihe0832.getsignature.R.attr.ix
com.bihe0832.getsignature.R.attr.toolbarNavigationButtonStyle -> com.bihe0832.getsignature.R.attr.iy
com.bihe0832.getsignature.R.attr.toolbarStyle -> com.bihe0832.getsignature.R.attr.iz
com.bihe0832.getsignature.R.attr.tooltipForegroundColor -> com.bihe0832.getsignature.R.attr.j0
com.bihe0832.getsignature.R.attr.tooltipFrameBackground -> com.bihe0832.getsignature.R.attr.j1
com.bihe0832.getsignature.R.attr.tooltipText -> com.bihe0832.getsignature.R.attr.j2
com.bihe0832.getsignature.R.attr.track -> com.bihe0832.getsignature.R.attr.j3
com.bihe0832.getsignature.R.attr.trackTint -> com.bihe0832.getsignature.R.attr.j4
com.bihe0832.getsignature.R.attr.trackTintMode -> com.bihe0832.getsignature.R.attr.j5
com.bihe0832.getsignature.R.attr.voiceIcon -> com.bihe0832.getsignature.R.attr.j6
com.bihe0832.getsignature.R.attr.windowActionBar -> com.bihe0832.getsignature.R.attr.j7
com.bihe0832.getsignature.R.attr.windowActionBarOverlay -> com.bihe0832.getsignature.R.attr.j8
com.bihe0832.getsignature.R.attr.windowActionModeOverlay -> com.bihe0832.getsignature.R.attr.j9
com.bihe0832.getsignature.R.attr.windowFixedHeightMajor -> com.bihe0832.getsignature.R.attr.j_
com.bihe0832.getsignature.R.attr.windowFixedHeightMinor -> com.bihe0832.getsignature.R.attr.ja
com.bihe0832.getsignature.R.attr.windowFixedWidthMajor -> com.bihe0832.getsignature.R.attr.jb
com.bihe0832.getsignature.R.attr.windowFixedWidthMinor -> com.bihe0832.getsignature.R.attr.jc
com.bihe0832.getsignature.R.attr.windowMinWidthMajor -> com.bihe0832.getsignature.R.attr.jd
com.bihe0832.getsignature.R.attr.windowMinWidthMinor -> com.bihe0832.getsignature.R.attr.je
com.bihe0832.getsignature.R.attr.windowNoTitle -> com.bihe0832.getsignature.R.attr.jf
com.bihe0832.getsignature.R.bool.abc_action_bar_embed_tabs -> com.bihe0832.getsignature.R.bool.a
com.bihe0832.getsignature.R.bool.abc_allow_stacked_button_bar -> com.bihe0832.getsignature.R.bool.b
com.bihe0832.getsignature.R.bool.abc_config_actionMenuItemAllCaps -> com.bihe0832.getsignature.R.bool.c
com.bihe0832.getsignature.R.bool.abc_config_closeDialogWhenTouchOutside -> com.bihe0832.getsignature.R.bool.d
com.bihe0832.getsignature.R.bool.abc_config_showMenuShortcutsWhenKeyboardPresent -> com.bihe0832.getsignature.R.bool.e
com.bihe0832.getsignature.R.color.abc_background_cache_hint_selector_material_dark -> com.bihe0832.getsignature.R.color.a
com.bihe0832.getsignature.R.color.abc_background_cache_hint_selector_material_light -> com.bihe0832.getsignature.R.color.b
com.bihe0832.getsignature.R.color.abc_btn_colored_borderless_text_material -> com.bihe0832.getsignature.R.color.c
com.bihe0832.getsignature.R.color.abc_btn_colored_text_material -> com.bihe0832.getsignature.R.color.d
com.bihe0832.getsignature.R.color.abc_hint_foreground_material_dark -> com.bihe0832.getsignature.R.color.e
com.bihe0832.getsignature.R.color.abc_hint_foreground_material_light -> com.bihe0832.getsignature.R.color.f
com.bihe0832.getsignature.R.color.abc_input_method_navigation_guard -> com.bihe0832.getsignature.R.color.g
com.bihe0832.getsignature.R.color.abc_primary_text_disable_only_material_dark -> com.bihe0832.getsignature.R.color.h
com.bihe0832.getsignature.R.color.abc_primary_text_disable_only_material_light -> com.bihe0832.getsignature.R.color.i
com.bihe0832.getsignature.R.color.abc_primary_text_material_dark -> com.bihe0832.getsignature.R.color.j
com.bihe0832.getsignature.R.color.abc_primary_text_material_light -> com.bihe0832.getsignature.R.color.k
com.bihe0832.getsignature.R.color.abc_search_url_text -> com.bihe0832.getsignature.R.color.l
com.bihe0832.getsignature.R.color.abc_search_url_text_normal -> com.bihe0832.getsignature.R.color.m
com.bihe0832.getsignature.R.color.abc_search_url_text_pressed -> com.bihe0832.getsignature.R.color.n
com.bihe0832.getsignature.R.color.abc_search_url_text_selected -> com.bihe0832.getsignature.R.color.o
com.bihe0832.getsignature.R.color.abc_secondary_text_material_dark -> com.bihe0832.getsignature.R.color.p
com.bihe0832.getsignature.R.color.abc_secondary_text_material_light -> com.bihe0832.getsignature.R.color.q
com.bihe0832.getsignature.R.color.abc_tint_btn_checkable -> com.bihe0832.getsignature.R.color.r
com.bihe0832.getsignature.R.color.abc_tint_default -> com.bihe0832.getsignature.R.color.s
com.bihe0832.getsignature.R.color.abc_tint_edittext -> com.bihe0832.getsignature.R.color.t
com.bihe0832.getsignature.R.color.abc_tint_seek_thumb -> com.bihe0832.getsignature.R.color.u
com.bihe0832.getsignature.R.color.abc_tint_spinner -> com.bihe0832.getsignature.R.color.v
com.bihe0832.getsignature.R.color.abc_tint_switch_track -> com.bihe0832.getsignature.R.color.w
com.bihe0832.getsignature.R.color.accent_material_dark -> com.bihe0832.getsignature.R.color.x
com.bihe0832.getsignature.R.color.accent_material_light -> com.bihe0832.getsignature.R.color.y
com.bihe0832.getsignature.R.color.background_floating_material_dark -> com.bihe0832.getsignature.R.color.z
com.bihe0832.getsignature.R.color.background_floating_material_light -> com.bihe0832.getsignature.R.color.a0
com.bihe0832.getsignature.R.color.background_material_dark -> com.bihe0832.getsignature.R.color.a1
com.bihe0832.getsignature.R.color.background_material_light -> com.bihe0832.getsignature.R.color.a2
com.bihe0832.getsignature.R.color.bihe0832_common_toast_background_color -> com.bihe0832.getsignature.R.color.a3
com.bihe0832.getsignature.R.color.bihe0832_common_toast_text_color -> com.bihe0832.getsignature.R.color.a4
com.bihe0832.getsignature.R.color.black -> com.bihe0832.getsignature.R.color.a5
com.bihe0832.getsignature.R.color.bright_foreground_disabled_material_dark -> com.bihe0832.getsignature.R.color.a6
com.bihe0832.getsignature.R.color.bright_foreground_disabled_material_light -> com.bihe0832.getsignature.R.color.a7
com.bihe0832.getsignature.R.color.bright_foreground_inverse_material_dark -> com.bihe0832.getsignature.R.color.a8
com.bihe0832.getsignature.R.color.bright_foreground_inverse_material_light -> com.bihe0832.getsignature.R.color.a9
com.bihe0832.getsignature.R.color.bright_foreground_material_dark -> com.bihe0832.getsignature.R.color.a_
com.bihe0832.getsignature.R.color.bright_foreground_material_light -> com.bihe0832.getsignature.R.color.aa
com.bihe0832.getsignature.R.color.button_material_dark -> com.bihe0832.getsignature.R.color.ab
com.bihe0832.getsignature.R.color.button_material_light -> com.bihe0832.getsignature.R.color.ac
com.bihe0832.getsignature.R.color.card_settings_bg -> com.bihe0832.getsignature.R.color.ad
com.bihe0832.getsignature.R.color.colorAccent -> com.bihe0832.getsignature.R.color.ae
com.bihe0832.getsignature.R.color.colorButtonNormal -> com.bihe0832.getsignature.R.color.af
com.bihe0832.getsignature.R.color.colorControlActivated -> com.bihe0832.getsignature.R.color.ag
com.bihe0832.getsignature.R.color.colorControlHighlight -> com.bihe0832.getsignature.R.color.ah
com.bihe0832.getsignature.R.color.colorControlNormal -> com.bihe0832.getsignature.R.color.ai
com.bihe0832.getsignature.R.color.colorPrimary -> com.bihe0832.getsignature.R.color.aj
com.bihe0832.getsignature.R.color.colorPrimaryDark -> com.bihe0832.getsignature.R.color.ak
com.bihe0832.getsignature.R.color.colorPrimaryLight -> com.bihe0832.getsignature.R.color.al
com.bihe0832.getsignature.R.color.colorPrimaryText -> com.bihe0832.getsignature.R.color.am
com.bihe0832.getsignature.R.color.colorSecondaryText -> com.bihe0832.getsignature.R.color.an
com.bihe0832.getsignature.R.color.colorTextColor -> com.bihe0832.getsignature.R.color.ao
com.bihe0832.getsignature.R.color.common_activity_bg -> com.bihe0832.getsignature.R.color.ap
com.bihe0832.getsignature.R.color.common_content_bg -> com.bihe0832.getsignature.R.color.aq
com.bihe0832.getsignature.R.color.corner_color -> com.bihe0832.getsignature.R.color.ar
com.bihe0832.getsignature.R.color.dialog_bg -> com.bihe0832.getsignature.R.color.as
com.bihe0832.getsignature.R.color.dialog_button -> com.bihe0832.getsignature.R.color.at
com.bihe0832.getsignature.R.color.dialog_hint -> com.bihe0832.getsignature.R.color.au
com.bihe0832.getsignature.R.color.dialog_split -> com.bihe0832.getsignature.R.color.av
com.bihe0832.getsignature.R.color.dialog_tips -> com.bihe0832.getsignature.R.color.aw
com.bihe0832.getsignature.R.color.dialog_title -> com.bihe0832.getsignature.R.color.ax
com.bihe0832.getsignature.R.color.dim_foreground_disabled_material_dark -> com.bihe0832.getsignature.R.color.ay
com.bihe0832.getsignature.R.color.dim_foreground_disabled_material_light -> com.bihe0832.getsignature.R.color.az
com.bihe0832.getsignature.R.color.dim_foreground_material_dark -> com.bihe0832.getsignature.R.color.b0
com.bihe0832.getsignature.R.color.dim_foreground_material_light -> com.bihe0832.getsignature.R.color.b1
com.bihe0832.getsignature.R.color.divider -> com.bihe0832.getsignature.R.color.b2
com.bihe0832.getsignature.R.color.error_color_material -> com.bihe0832.getsignature.R.color.b3
com.bihe0832.getsignature.R.color.foreground_material_dark -> com.bihe0832.getsignature.R.color.b4
com.bihe0832.getsignature.R.color.foreground_material_light -> com.bihe0832.getsignature.R.color.b5
com.bihe0832.getsignature.R.color.gray -> com.bihe0832.getsignature.R.color.b6
com.bihe0832.getsignature.R.color.gray_font_dark -> com.bihe0832.getsignature.R.color.b7
com.bihe0832.getsignature.R.color.gray_light -> com.bihe0832.getsignature.R.color.b8
com.bihe0832.getsignature.R.color.highlighted_text_material_dark -> com.bihe0832.getsignature.R.color.b9
com.bihe0832.getsignature.R.color.highlighted_text_material_light -> com.bihe0832.getsignature.R.color.b_
com.bihe0832.getsignature.R.color.icons -> com.bihe0832.getsignature.R.color.ba
com.bihe0832.getsignature.R.color.laser_color -> com.bihe0832.getsignature.R.color.bb
com.bihe0832.getsignature.R.color.lib_refresh_bg_color -> com.bihe0832.getsignature.R.color.bc
com.bihe0832.getsignature.R.color.lib_refresh_spinkit_color -> com.bihe0832.getsignature.R.color.bd
com.bihe0832.getsignature.R.color.lib_refresh_text_color -> com.bihe0832.getsignature.R.color.be
com.bihe0832.getsignature.R.color.loading_background -> com.bihe0832.getsignature.R.color.bf
com.bihe0832.getsignature.R.color.material_blue_grey_800 -> com.bihe0832.getsignature.R.color.bg
com.bihe0832.getsignature.R.color.material_blue_grey_900 -> com.bihe0832.getsignature.R.color.bh
com.bihe0832.getsignature.R.color.material_blue_grey_950 -> com.bihe0832.getsignature.R.color.bi
com.bihe0832.getsignature.R.color.material_deep_teal_200 -> com.bihe0832.getsignature.R.color.bj
com.bihe0832.getsignature.R.color.material_deep_teal_500 -> com.bihe0832.getsignature.R.color.bk
com.bihe0832.getsignature.R.color.material_grey_100 -> com.bihe0832.getsignature.R.color.bl
com.bihe0832.getsignature.R.color.material_grey_300 -> com.bihe0832.getsignature.R.color.bm
com.bihe0832.getsignature.R.color.material_grey_50 -> com.bihe0832.getsignature.R.color.bn
com.bihe0832.getsignature.R.color.material_grey_600 -> com.bihe0832.getsignature.R.color.bo
com.bihe0832.getsignature.R.color.material_grey_800 -> com.bihe0832.getsignature.R.color.bp
com.bihe0832.getsignature.R.color.material_grey_850 -> com.bihe0832.getsignature.R.color.bq
com.bihe0832.getsignature.R.color.material_grey_900 -> com.bihe0832.getsignature.R.color.br
com.bihe0832.getsignature.R.color.notification_action_color_filter -> com.bihe0832.getsignature.R.color.bs
com.bihe0832.getsignature.R.color.notification_icon_bg_color -> com.bihe0832.getsignature.R.color.bt
com.bihe0832.getsignature.R.color.notification_material_background_media_default_color -> com.bihe0832.getsignature.R.color.bu
com.bihe0832.getsignature.R.color.primary_dark_material_dark -> com.bihe0832.getsignature.R.color.bv
com.bihe0832.getsignature.R.color.primary_dark_material_light -> com.bihe0832.getsignature.R.color.bw
com.bihe0832.getsignature.R.color.primary_material_dark -> com.bihe0832.getsignature.R.color.bx
com.bihe0832.getsignature.R.color.primary_material_light -> com.bihe0832.getsignature.R.color.by
com.bihe0832.getsignature.R.color.primary_text_default_material_dark -> com.bihe0832.getsignature.R.color.bz
com.bihe0832.getsignature.R.color.primary_text_default_material_light -> com.bihe0832.getsignature.R.color.c0
com.bihe0832.getsignature.R.color.primary_text_disabled_material_dark -> com.bihe0832.getsignature.R.color.c1
com.bihe0832.getsignature.R.color.primary_text_disabled_material_light -> com.bihe0832.getsignature.R.color.c2
com.bihe0832.getsignature.R.color.process_back_color -> com.bihe0832.getsignature.R.color.c3
com.bihe0832.getsignature.R.color.process_color -> com.bihe0832.getsignature.R.color.c4
com.bihe0832.getsignature.R.color.result_point_color -> com.bihe0832.getsignature.R.color.c5
com.bihe0832.getsignature.R.color.result_view -> com.bihe0832.getsignature.R.color.c6
com.bihe0832.getsignature.R.color.ripple_material_dark -> com.bihe0832.getsignature.R.color.c7
com.bihe0832.getsignature.R.color.ripple_material_light -> com.bihe0832.getsignature.R.color.c8
com.bihe0832.getsignature.R.color.secondary_text_default_material_dark -> com.bihe0832.getsignature.R.color.c9
com.bihe0832.getsignature.R.color.secondary_text_default_material_light -> com.bihe0832.getsignature.R.color.c_
com.bihe0832.getsignature.R.color.secondary_text_disabled_material_dark -> com.bihe0832.getsignature.R.color.ca
com.bihe0832.getsignature.R.color.secondary_text_disabled_material_light -> com.bihe0832.getsignature.R.color.cb
com.bihe0832.getsignature.R.color.switch_thumb_disabled_material_dark -> com.bihe0832.getsignature.R.color.cc
com.bihe0832.getsignature.R.color.switch_thumb_disabled_material_light -> com.bihe0832.getsignature.R.color.cd
com.bihe0832.getsignature.R.color.switch_thumb_material_dark -> com.bihe0832.getsignature.R.color.ce
com.bihe0832.getsignature.R.color.switch_thumb_material_light -> com.bihe0832.getsignature.R.color.cf
com.bihe0832.getsignature.R.color.switch_thumb_normal_material_dark -> com.bihe0832.getsignature.R.color.cg
com.bihe0832.getsignature.R.color.switch_thumb_normal_material_light -> com.bihe0832.getsignature.R.color.ch
com.bihe0832.getsignature.R.color.tab_selected -> com.bihe0832.getsignature.R.color.ci
com.bihe0832.getsignature.R.color.tab_unselect -> com.bihe0832.getsignature.R.color.cj
com.bihe0832.getsignature.R.color.tag_background -> com.bihe0832.getsignature.R.color.ck
com.bihe0832.getsignature.R.color.text_gray -> com.bihe0832.getsignature.R.color.cl
com.bihe0832.getsignature.R.color.tooltip_background_dark -> com.bihe0832.getsignature.R.color.cm
com.bihe0832.getsignature.R.color.tooltip_background_light -> com.bihe0832.getsignature.R.color.cn
com.bihe0832.getsignature.R.color.transparent -> com.bihe0832.getsignature.R.color.co
com.bihe0832.getsignature.R.color.viewfinder_frame -> com.bihe0832.getsignature.R.color.cp
com.bihe0832.getsignature.R.color.viewfinder_mask -> com.bihe0832.getsignature.R.color.cq
com.bihe0832.getsignature.R.color.white -> com.bihe0832.getsignature.R.color.cr
com.bihe0832.getsignature.R.color.abc_color_highlight_material -> com.bihe0832.getsignature.R.color.cs
com.bihe0832.getsignature.R.dimen.abc_action_bar_content_inset_material -> com.bihe0832.getsignature.R.dimen.a
com.bihe0832.getsignature.R.dimen.abc_action_bar_content_inset_with_nav -> com.bihe0832.getsignature.R.dimen.b
com.bihe0832.getsignature.R.dimen.abc_action_bar_default_height_material -> com.bihe0832.getsignature.R.dimen.c
com.bihe0832.getsignature.R.dimen.abc_action_bar_default_padding_end_material -> com.bihe0832.getsignature.R.dimen.d
com.bihe0832.getsignature.R.dimen.abc_action_bar_default_padding_start_material -> com.bihe0832.getsignature.R.dimen.e
com.bihe0832.getsignature.R.dimen.abc_action_bar_elevation_material -> com.bihe0832.getsignature.R.dimen.f
com.bihe0832.getsignature.R.dimen.abc_action_bar_icon_vertical_padding_material -> com.bihe0832.getsignature.R.dimen.g
com.bihe0832.getsignature.R.dimen.abc_action_bar_overflow_padding_end_material -> com.bihe0832.getsignature.R.dimen.h
com.bihe0832.getsignature.R.dimen.abc_action_bar_overflow_padding_start_material -> com.bihe0832.getsignature.R.dimen.i
com.bihe0832.getsignature.R.dimen.abc_action_bar_progress_bar_size -> com.bihe0832.getsignature.R.dimen.j
com.bihe0832.getsignature.R.dimen.abc_action_bar_stacked_max_height -> com.bihe0832.getsignature.R.dimen.k
com.bihe0832.getsignature.R.dimen.abc_action_bar_stacked_tab_max_width -> com.bihe0832.getsignature.R.dimen.l
com.bihe0832.getsignature.R.dimen.abc_action_bar_subtitle_bottom_margin_material -> com.bihe0832.getsignature.R.dimen.m
com.bihe0832.getsignature.R.dimen.abc_action_bar_subtitle_top_margin_material -> com.bihe0832.getsignature.R.dimen.n
com.bihe0832.getsignature.R.dimen.abc_action_button_min_height_material -> com.bihe0832.getsignature.R.dimen.o
com.bihe0832.getsignature.R.dimen.abc_action_button_min_width_material -> com.bihe0832.getsignature.R.dimen.p
com.bihe0832.getsignature.R.dimen.abc_action_button_min_width_overflow_material -> com.bihe0832.getsignature.R.dimen.q
com.bihe0832.getsignature.R.dimen.abc_alert_dialog_button_bar_height -> com.bihe0832.getsignature.R.dimen.r
com.bihe0832.getsignature.R.dimen.abc_button_inset_horizontal_material -> com.bihe0832.getsignature.R.dimen.s
com.bihe0832.getsignature.R.dimen.abc_button_inset_vertical_material -> com.bihe0832.getsignature.R.dimen.t
com.bihe0832.getsignature.R.dimen.abc_button_padding_horizontal_material -> com.bihe0832.getsignature.R.dimen.u
com.bihe0832.getsignature.R.dimen.abc_button_padding_vertical_material -> com.bihe0832.getsignature.R.dimen.v
com.bihe0832.getsignature.R.dimen.abc_cascading_menus_min_smallest_width -> com.bihe0832.getsignature.R.dimen.w
com.bihe0832.getsignature.R.dimen.abc_config_prefDialogWidth -> com.bihe0832.getsignature.R.dimen.x
com.bihe0832.getsignature.R.dimen.abc_control_corner_material -> com.bihe0832.getsignature.R.dimen.y
com.bihe0832.getsignature.R.dimen.abc_control_inset_material -> com.bihe0832.getsignature.R.dimen.z
com.bihe0832.getsignature.R.dimen.abc_control_padding_material -> com.bihe0832.getsignature.R.dimen.a0
com.bihe0832.getsignature.R.dimen.abc_dialog_fixed_height_major -> com.bihe0832.getsignature.R.dimen.a1
com.bihe0832.getsignature.R.dimen.abc_dialog_fixed_height_minor -> com.bihe0832.getsignature.R.dimen.a2
com.bihe0832.getsignature.R.dimen.abc_dialog_fixed_width_major -> com.bihe0832.getsignature.R.dimen.a3
com.bihe0832.getsignature.R.dimen.abc_dialog_fixed_width_minor -> com.bihe0832.getsignature.R.dimen.a4
com.bihe0832.getsignature.R.dimen.abc_dialog_list_padding_bottom_no_buttons -> com.bihe0832.getsignature.R.dimen.a5
com.bihe0832.getsignature.R.dimen.abc_dialog_list_padding_top_no_title -> com.bihe0832.getsignature.R.dimen.a6
com.bihe0832.getsignature.R.dimen.abc_dialog_min_width_major -> com.bihe0832.getsignature.R.dimen.a7
com.bihe0832.getsignature.R.dimen.abc_dialog_min_width_minor -> com.bihe0832.getsignature.R.dimen.a8
com.bihe0832.getsignature.R.dimen.abc_dialog_padding_material -> com.bihe0832.getsignature.R.dimen.a9
com.bihe0832.getsignature.R.dimen.abc_dialog_padding_top_material -> com.bihe0832.getsignature.R.dimen.a_
com.bihe0832.getsignature.R.dimen.abc_dialog_title_divider_material -> com.bihe0832.getsignature.R.dimen.aa
com.bihe0832.getsignature.R.dimen.abc_disabled_alpha_material_dark -> com.bihe0832.getsignature.R.dimen.ab
com.bihe0832.getsignature.R.dimen.abc_disabled_alpha_material_light -> com.bihe0832.getsignature.R.dimen.ac
com.bihe0832.getsignature.R.dimen.abc_dropdownitem_icon_width -> com.bihe0832.getsignature.R.dimen.ad
com.bihe0832.getsignature.R.dimen.abc_dropdownitem_text_padding_left -> com.bihe0832.getsignature.R.dimen.ae
com.bihe0832.getsignature.R.dimen.abc_dropdownitem_text_padding_right -> com.bihe0832.getsignature.R.dimen.af
com.bihe0832.getsignature.R.dimen.abc_edit_text_inset_bottom_material -> com.bihe0832.getsignature.R.dimen.ag
com.bihe0832.getsignature.R.dimen.abc_edit_text_inset_horizontal_material -> com.bihe0832.getsignature.R.dimen.ah
com.bihe0832.getsignature.R.dimen.abc_edit_text_inset_top_material -> com.bihe0832.getsignature.R.dimen.ai
com.bihe0832.getsignature.R.dimen.abc_floating_window_z -> com.bihe0832.getsignature.R.dimen.aj
com.bihe0832.getsignature.R.dimen.abc_list_item_padding_horizontal_material -> com.bihe0832.getsignature.R.dimen.ak
com.bihe0832.getsignature.R.dimen.abc_panel_menu_list_width -> com.bihe0832.getsignature.R.dimen.al
com.bihe0832.getsignature.R.dimen.abc_progress_bar_height_material -> com.bihe0832.getsignature.R.dimen.am
com.bihe0832.getsignature.R.dimen.abc_search_view_preferred_height -> com.bihe0832.getsignature.R.dimen.an
com.bihe0832.getsignature.R.dimen.abc_search_view_preferred_width -> com.bihe0832.getsignature.R.dimen.ao
com.bihe0832.getsignature.R.dimen.abc_seekbar_track_background_height_material -> com.bihe0832.getsignature.R.dimen.ap
com.bihe0832.getsignature.R.dimen.abc_seekbar_track_progress_height_material -> com.bihe0832.getsignature.R.dimen.aq
com.bihe0832.getsignature.R.dimen.abc_select_dialog_padding_start_material -> com.bihe0832.getsignature.R.dimen.ar
com.bihe0832.getsignature.R.dimen.abc_switch_padding -> com.bihe0832.getsignature.R.dimen.as
com.bihe0832.getsignature.R.dimen.abc_text_size_body_1_material -> com.bihe0832.getsignature.R.dimen.at
com.bihe0832.getsignature.R.dimen.abc_text_size_body_2_material -> com.bihe0832.getsignature.R.dimen.au
com.bihe0832.getsignature.R.dimen.abc_text_size_button_material -> com.bihe0832.getsignature.R.dimen.av
com.bihe0832.getsignature.R.dimen.abc_text_size_caption_material -> com.bihe0832.getsignature.R.dimen.aw
com.bihe0832.getsignature.R.dimen.abc_text_size_display_1_material -> com.bihe0832.getsignature.R.dimen.ax
com.bihe0832.getsignature.R.dimen.abc_text_size_display_2_material -> com.bihe0832.getsignature.R.dimen.ay
com.bihe0832.getsignature.R.dimen.abc_text_size_display_3_material -> com.bihe0832.getsignature.R.dimen.az
com.bihe0832.getsignature.R.dimen.abc_text_size_display_4_material -> com.bihe0832.getsignature.R.dimen.b0
com.bihe0832.getsignature.R.dimen.abc_text_size_headline_material -> com.bihe0832.getsignature.R.dimen.b1
com.bihe0832.getsignature.R.dimen.abc_text_size_large_material -> com.bihe0832.getsignature.R.dimen.b2
com.bihe0832.getsignature.R.dimen.abc_text_size_medium_material -> com.bihe0832.getsignature.R.dimen.b3
com.bihe0832.getsignature.R.dimen.abc_text_size_menu_header_material -> com.bihe0832.getsignature.R.dimen.b4
com.bihe0832.getsignature.R.dimen.abc_text_size_menu_material -> com.bihe0832.getsignature.R.dimen.b5
com.bihe0832.getsignature.R.dimen.abc_text_size_small_material -> com.bihe0832.getsignature.R.dimen.b6
com.bihe0832.getsignature.R.dimen.abc_text_size_subhead_material -> com.bihe0832.getsignature.R.dimen.b7
com.bihe0832.getsignature.R.dimen.abc_text_size_subtitle_material_toolbar -> com.bihe0832.getsignature.R.dimen.b8
com.bihe0832.getsignature.R.dimen.abc_text_size_title_material -> com.bihe0832.getsignature.R.dimen.b9
com.bihe0832.getsignature.R.dimen.abc_text_size_title_material_toolbar -> com.bihe0832.getsignature.R.dimen.b_
com.bihe0832.getsignature.R.dimen.bihe0832_common_toast_img_size -> com.bihe0832.getsignature.R.dimen.ba
com.bihe0832.getsignature.R.dimen.bihe0832_common_toast_padding -> com.bihe0832.getsignature.R.dimen.bb
com.bihe0832.getsignature.R.dimen.bihe0832_common_toast_text_margin -> com.bihe0832.getsignature.R.dimen.bc
com.bihe0832.getsignature.R.dimen.bihe0832_common_toast_text_size -> com.bihe0832.getsignature.R.dimen.bd
com.bihe0832.getsignature.R.dimen.bihe0832_common_toast_y_offset -> com.bihe0832.getsignature.R.dimen.be
com.bihe0832.getsignature.R.dimen.compat_button_inset_horizontal_material -> com.bihe0832.getsignature.R.dimen.bf
com.bihe0832.getsignature.R.dimen.compat_button_inset_vertical_material -> com.bihe0832.getsignature.R.dimen.bg
com.bihe0832.getsignature.R.dimen.compat_button_padding_horizontal_material -> com.bihe0832.getsignature.R.dimen.bh
com.bihe0832.getsignature.R.dimen.compat_button_padding_vertical_material -> com.bihe0832.getsignature.R.dimen.bi
com.bihe0832.getsignature.R.dimen.compat_control_corner_material -> com.bihe0832.getsignature.R.dimen.bj
com.bihe0832.getsignature.R.dimen.def_height -> com.bihe0832.getsignature.R.dimen.bk
com.bihe0832.getsignature.R.dimen.disabled_alpha_material_dark -> com.bihe0832.getsignature.R.dimen.bl
com.bihe0832.getsignature.R.dimen.disabled_alpha_material_light -> com.bihe0832.getsignature.R.dimen.bm
com.bihe0832.getsignature.R.dimen.dp_10 -> com.bihe0832.getsignature.R.dimen.bn
com.bihe0832.getsignature.R.dimen.dp_4 -> com.bihe0832.getsignature.R.dimen.bo
com.bihe0832.getsignature.R.dimen.dp_40 -> com.bihe0832.getsignature.R.dimen.bp
com.bihe0832.getsignature.R.dimen.dp_72 -> com.bihe0832.getsignature.R.dimen.bq
com.bihe0832.getsignature.R.dimen.fastscroll_default_thickness -> com.bihe0832.getsignature.R.dimen.br
com.bihe0832.getsignature.R.dimen.fastscroll_margin -> com.bihe0832.getsignature.R.dimen.bs
com.bihe0832.getsignature.R.dimen.fastscroll_minimum_range -> com.bihe0832.getsignature.R.dimen.bt
com.bihe0832.getsignature.R.dimen.highlight_alpha_material_colored -> com.bihe0832.getsignature.R.dimen.bu
com.bihe0832.getsignature.R.dimen.highlight_alpha_material_dark -> com.bihe0832.getsignature.R.dimen.bv
com.bihe0832.getsignature.R.dimen.highlight_alpha_material_light -> com.bihe0832.getsignature.R.dimen.bw
com.bihe0832.getsignature.R.dimen.hint_alpha_material_dark -> com.bihe0832.getsignature.R.dimen.bx
com.bihe0832.getsignature.R.dimen.hint_alpha_material_light -> com.bihe0832.getsignature.R.dimen.by
com.bihe0832.getsignature.R.dimen.hint_pressed_alpha_material_dark -> com.bihe0832.getsignature.R.dimen.bz
com.bihe0832.getsignature.R.dimen.hint_pressed_alpha_material_light -> com.bihe0832.getsignature.R.dimen.c0
com.bihe0832.getsignature.R.dimen.item_touch_helper_max_drag_scroll_per_frame -> com.bihe0832.getsignature.R.dimen.c1
com.bihe0832.getsignature.R.dimen.item_touch_helper_swipe_escape_max_velocity -> com.bihe0832.getsignature.R.dimen.c2
com.bihe0832.getsignature.R.dimen.item_touch_helper_swipe_escape_velocity -> com.bihe0832.getsignature.R.dimen.c3
com.bihe0832.getsignature.R.dimen.main_bottom_bar_height -> com.bihe0832.getsignature.R.dimen.c4
com.bihe0832.getsignature.R.dimen.notification_action_icon_size -> com.bihe0832.getsignature.R.dimen.c5
com.bihe0832.getsignature.R.dimen.notification_action_text_size -> com.bihe0832.getsignature.R.dimen.c6
com.bihe0832.getsignature.R.dimen.notification_big_circle_margin -> com.bihe0832.getsignature.R.dimen.c7
com.bihe0832.getsignature.R.dimen.notification_content_margin_start -> com.bihe0832.getsignature.R.dimen.c8
com.bihe0832.getsignature.R.dimen.notification_large_icon_height -> com.bihe0832.getsignature.R.dimen.c9
com.bihe0832.getsignature.R.dimen.notification_large_icon_width -> com.bihe0832.getsignature.R.dimen.c_
com.bihe0832.getsignature.R.dimen.notification_main_column_padding_top -> com.bihe0832.getsignature.R.dimen.ca
com.bihe0832.getsignature.R.dimen.notification_media_narrow_margin -> com.bihe0832.getsignature.R.dimen.cb
com.bihe0832.getsignature.R.dimen.notification_right_icon_size -> com.bihe0832.getsignature.R.dimen.cc
com.bihe0832.getsignature.R.dimen.notification_right_side_padding_top -> com.bihe0832.getsignature.R.dimen.cd
com.bihe0832.getsignature.R.dimen.notification_small_icon_background_padding -> com.bihe0832.getsignature.R.dimen.ce
com.bihe0832.getsignature.R.dimen.notification_small_icon_size_as_large -> com.bihe0832.getsignature.R.dimen.cf
com.bihe0832.getsignature.R.dimen.notification_subtext_size -> com.bihe0832.getsignature.R.dimen.cg
com.bihe0832.getsignature.R.dimen.notification_top_pad -> com.bihe0832.getsignature.R.dimen.ch
com.bihe0832.getsignature.R.dimen.notification_top_pad_large_text -> com.bihe0832.getsignature.R.dimen.ci
com.bihe0832.getsignature.R.dimen.sp_12 -> com.bihe0832.getsignature.R.dimen.cj
com.bihe0832.getsignature.R.dimen.sp_14 -> com.bihe0832.getsignature.R.dimen.ck
com.bihe0832.getsignature.R.dimen.sp_16 -> com.bihe0832.getsignature.R.dimen.cl
com.bihe0832.getsignature.R.dimen.toolbar_padding_top -> com.bihe0832.getsignature.R.dimen.cm
com.bihe0832.getsignature.R.dimen.tooltip_corner_radius -> com.bihe0832.getsignature.R.dimen.cn
com.bihe0832.getsignature.R.dimen.tooltip_horizontal_padding -> com.bihe0832.getsignature.R.dimen.co
com.bihe0832.getsignature.R.dimen.tooltip_margin -> com.bihe0832.getsignature.R.dimen.cp
com.bihe0832.getsignature.R.dimen.tooltip_precise_anchor_extra_offset -> com.bihe0832.getsignature.R.dimen.cq
com.bihe0832.getsignature.R.dimen.tooltip_precise_anchor_threshold -> com.bihe0832.getsignature.R.dimen.cr
com.bihe0832.getsignature.R.dimen.tooltip_vertical_padding -> com.bihe0832.getsignature.R.dimen.cs
com.bihe0832.getsignature.R.dimen.tooltip_y_offset_non_touch -> com.bihe0832.getsignature.R.dimen.ct
com.bihe0832.getsignature.R.dimen.tooltip_y_offset_touch -> com.bihe0832.getsignature.R.dimen.cu
com.bihe0832.getsignature.R.drawable.abc_action_bar_item_background_material -> com.bihe0832.getsignature.R.drawable.a
com.bihe0832.getsignature.R.drawable.abc_btn_borderless_material -> com.bihe0832.getsignature.R.drawable.b
com.bihe0832.getsignature.R.drawable.abc_btn_check_material -> com.bihe0832.getsignature.R.drawable.c
com.bihe0832.getsignature.R.drawable.abc_btn_colored_material -> com.bihe0832.getsignature.R.drawable.d
com.bihe0832.getsignature.R.drawable.abc_btn_default_mtrl_shape -> com.bihe0832.getsignature.R.drawable.e
com.bihe0832.getsignature.R.drawable.abc_btn_radio_material -> com.bihe0832.getsignature.R.drawable.f
com.bihe0832.getsignature.R.drawable.abc_cab_background_internal_bg -> com.bihe0832.getsignature.R.drawable.g
com.bihe0832.getsignature.R.drawable.abc_cab_background_top_material -> com.bihe0832.getsignature.R.drawable.h
com.bihe0832.getsignature.R.drawable.abc_dialog_material_background -> com.bihe0832.getsignature.R.drawable.i
com.bihe0832.getsignature.R.drawable.abc_edit_text_material -> com.bihe0832.getsignature.R.drawable.j
com.bihe0832.getsignature.R.drawable.abc_ic_ab_back_material -> com.bihe0832.getsignature.R.drawable.k
com.bihe0832.getsignature.R.drawable.abc_ic_arrow_drop_right_black_24dp -> com.bihe0832.getsignature.R.drawable.l
com.bihe0832.getsignature.R.drawable.abc_ic_clear_material -> com.bihe0832.getsignature.R.drawable.m
com.bihe0832.getsignature.R.drawable.abc_ic_go_search_api_material -> com.bihe0832.getsignature.R.drawable.n
com.bihe0832.getsignature.R.drawable.abc_ic_menu_overflow_material -> com.bihe0832.getsignature.R.drawable.o
com.bihe0832.getsignature.R.drawable.abc_ic_search_api_material -> com.bihe0832.getsignature.R.drawable.p
com.bihe0832.getsignature.R.drawable.abc_ic_voice_search_api_material -> com.bihe0832.getsignature.R.drawable.q
com.bihe0832.getsignature.R.drawable.abc_item_background_holo_dark -> com.bihe0832.getsignature.R.drawable.r
com.bihe0832.getsignature.R.drawable.abc_item_background_holo_light -> com.bihe0832.getsignature.R.drawable.s
com.bihe0832.getsignature.R.drawable.abc_list_selector_background_transition_holo_dark -> com.bihe0832.getsignature.R.drawable.t
com.bihe0832.getsignature.R.drawable.abc_list_selector_background_transition_holo_light -> com.bihe0832.getsignature.R.drawable.u
com.bihe0832.getsignature.R.drawable.abc_list_selector_holo_dark -> com.bihe0832.getsignature.R.drawable.v
com.bihe0832.getsignature.R.drawable.abc_list_selector_holo_light -> com.bihe0832.getsignature.R.drawable.w
com.bihe0832.getsignature.R.drawable.abc_ratingbar_indicator_material -> com.bihe0832.getsignature.R.drawable.x
com.bihe0832.getsignature.R.drawable.abc_ratingbar_material -> com.bihe0832.getsignature.R.drawable.y
com.bihe0832.getsignature.R.drawable.abc_ratingbar_small_material -> com.bihe0832.getsignature.R.drawable.z
com.bihe0832.getsignature.R.drawable.abc_seekbar_thumb_material -> com.bihe0832.getsignature.R.drawable.a0
com.bihe0832.getsignature.R.drawable.abc_seekbar_tick_mark_material -> com.bihe0832.getsignature.R.drawable.a1
com.bihe0832.getsignature.R.drawable.abc_seekbar_track_material -> com.bihe0832.getsignature.R.drawable.a2
com.bihe0832.getsignature.R.drawable.abc_spinner_textfield_background_material -> com.bihe0832.getsignature.R.drawable.a3
com.bihe0832.getsignature.R.drawable.abc_switch_thumb_material -> com.bihe0832.getsignature.R.drawable.a4
com.bihe0832.getsignature.R.drawable.abc_tab_indicator_material -> com.bihe0832.getsignature.R.drawable.a5
com.bihe0832.getsignature.R.drawable.abc_text_cursor_material -> com.bihe0832.getsignature.R.drawable.a6
com.bihe0832.getsignature.R.drawable.abc_textfield_search_material -> com.bihe0832.getsignature.R.drawable.a7
com.bihe0832.getsignature.R.drawable.abc_vector_test -> com.bihe0832.getsignature.R.drawable.a8
com.bihe0832.getsignature.R.drawable.arrow -> com.bihe0832.getsignature.R.drawable.a9
com.bihe0832.getsignature.R.drawable.card_apk_corner -> com.bihe0832.getsignature.R.drawable.a_
com.bihe0832.getsignature.R.drawable.com_bihe0832_commonm_dialog_bg -> com.bihe0832.getsignature.R.drawable.aa
com.bihe0832.getsignature.R.drawable.common_progress_bar_bg -> com.bihe0832.getsignature.R.drawable.ab
com.bihe0832.getsignature.R.drawable.common_toast_corner -> com.bihe0832.getsignature.R.drawable.ac
com.bihe0832.getsignature.R.drawable.cpmplete_icon -> com.bihe0832.getsignature.R.drawable.ad
com.bihe0832.getsignature.R.drawable.loading_progress_bg -> com.bihe0832.getsignature.R.drawable.ae
com.bihe0832.getsignature.R.drawable.notification_action_background -> com.bihe0832.getsignature.R.drawable.af
com.bihe0832.getsignature.R.drawable.notification_bg -> com.bihe0832.getsignature.R.drawable.ag
com.bihe0832.getsignature.R.drawable.notification_bg_low -> com.bihe0832.getsignature.R.drawable.ah
com.bihe0832.getsignature.R.drawable.notification_icon_background -> com.bihe0832.getsignature.R.drawable.ai
com.bihe0832.getsignature.R.drawable.notification_template_icon_bg -> com.bihe0832.getsignature.R.drawable.aj
com.bihe0832.getsignature.R.drawable.notification_template_icon_low_bg -> com.bihe0832.getsignature.R.drawable.ak
com.bihe0832.getsignature.R.drawable.notification_tile_bg -> com.bihe0832.getsignature.R.drawable.al
com.bihe0832.getsignature.R.drawable.rotate_down -> com.bihe0832.getsignature.R.drawable.am
com.bihe0832.getsignature.R.drawable.sample_footer_loading -> com.bihe0832.getsignature.R.drawable.an
com.bihe0832.getsignature.R.drawable.sample_footer_loading_progress -> com.bihe0832.getsignature.R.drawable.ao
com.bihe0832.getsignature.R.drawable.simple_progress_bar_bg -> com.bihe0832.getsignature.R.drawable.ap
com.bihe0832.getsignature.R.drawable.tooltip_frame_dark -> com.bihe0832.getsignature.R.drawable.aq
com.bihe0832.getsignature.R.drawable.tooltip_frame_light -> com.bihe0832.getsignature.R.drawable.ar
com.bihe0832.getsignature.R.drawable.abc_control_background_material -> com.bihe0832.getsignature.R.drawable.as
com.bihe0832.getsignature.R.drawable.abc_ab_share_pack_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.at
com.bihe0832.getsignature.R.drawable.abc_btn_check_to_on_mtrl_000 -> com.bihe0832.getsignature.R.drawable.au
com.bihe0832.getsignature.R.drawable.abc_btn_check_to_on_mtrl_015 -> com.bihe0832.getsignature.R.drawable.av
com.bihe0832.getsignature.R.drawable.abc_btn_radio_to_on_mtrl_000 -> com.bihe0832.getsignature.R.drawable.aw
com.bihe0832.getsignature.R.drawable.abc_btn_radio_to_on_mtrl_015 -> com.bihe0832.getsignature.R.drawable.ax
com.bihe0832.getsignature.R.drawable.abc_btn_switch_to_on_mtrl_00001 -> com.bihe0832.getsignature.R.drawable.ay
com.bihe0832.getsignature.R.drawable.abc_btn_switch_to_on_mtrl_00012 -> com.bihe0832.getsignature.R.drawable.az
com.bihe0832.getsignature.R.drawable.abc_cab_background_top_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.b0
com.bihe0832.getsignature.R.drawable.abc_ic_commit_search_api_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.b1
com.bihe0832.getsignature.R.drawable.abc_ic_menu_copy_mtrl_am_alpha -> com.bihe0832.getsignature.R.drawable.b2
com.bihe0832.getsignature.R.drawable.abc_ic_menu_cut_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.b3
com.bihe0832.getsignature.R.drawable.abc_ic_menu_paste_mtrl_am_alpha -> com.bihe0832.getsignature.R.drawable.b4
com.bihe0832.getsignature.R.drawable.abc_ic_menu_selectall_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.b5
com.bihe0832.getsignature.R.drawable.abc_ic_menu_share_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.b6
com.bihe0832.getsignature.R.drawable.abc_ic_star_black_16dp -> com.bihe0832.getsignature.R.drawable.b7
com.bihe0832.getsignature.R.drawable.abc_ic_star_black_36dp -> com.bihe0832.getsignature.R.drawable.b8
com.bihe0832.getsignature.R.drawable.abc_ic_star_black_48dp -> com.bihe0832.getsignature.R.drawable.b9
com.bihe0832.getsignature.R.drawable.abc_ic_star_half_black_16dp -> com.bihe0832.getsignature.R.drawable.b_
com.bihe0832.getsignature.R.drawable.abc_ic_star_half_black_36dp -> com.bihe0832.getsignature.R.drawable.ba
com.bihe0832.getsignature.R.drawable.abc_ic_star_half_black_48dp -> com.bihe0832.getsignature.R.drawable.bb
com.bihe0832.getsignature.R.drawable.abc_list_divider_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.bc
com.bihe0832.getsignature.R.drawable.abc_list_focused_holo -> com.bihe0832.getsignature.R.drawable.bd
com.bihe0832.getsignature.R.drawable.abc_list_longpressed_holo -> com.bihe0832.getsignature.R.drawable.be
com.bihe0832.getsignature.R.drawable.abc_list_pressed_holo_dark -> com.bihe0832.getsignature.R.drawable.bf
com.bihe0832.getsignature.R.drawable.abc_list_pressed_holo_light -> com.bihe0832.getsignature.R.drawable.bg
com.bihe0832.getsignature.R.drawable.abc_list_selector_disabled_holo_dark -> com.bihe0832.getsignature.R.drawable.bh
com.bihe0832.getsignature.R.drawable.abc_list_selector_disabled_holo_light -> com.bihe0832.getsignature.R.drawable.bi
com.bihe0832.getsignature.R.drawable.abc_menu_hardkey_panel_mtrl_mult -> com.bihe0832.getsignature.R.drawable.bj
com.bihe0832.getsignature.R.drawable.abc_popup_background_mtrl_mult -> com.bihe0832.getsignature.R.drawable.bk
com.bihe0832.getsignature.R.drawable.abc_scrubber_control_off_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.bl
com.bihe0832.getsignature.R.drawable.abc_scrubber_control_to_pressed_mtrl_000 -> com.bihe0832.getsignature.R.drawable.bm
com.bihe0832.getsignature.R.drawable.abc_scrubber_control_to_pressed_mtrl_005 -> com.bihe0832.getsignature.R.drawable.bn
com.bihe0832.getsignature.R.drawable.abc_scrubber_primary_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.bo
com.bihe0832.getsignature.R.drawable.abc_scrubber_track_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.bp
com.bihe0832.getsignature.R.drawable.abc_spinner_mtrl_am_alpha -> com.bihe0832.getsignature.R.drawable.bq
com.bihe0832.getsignature.R.drawable.abc_switch_track_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.br
com.bihe0832.getsignature.R.drawable.abc_tab_indicator_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.bs
com.bihe0832.getsignature.R.drawable.abc_text_select_handle_left_mtrl_dark -> com.bihe0832.getsignature.R.drawable.bt
com.bihe0832.getsignature.R.drawable.abc_text_select_handle_left_mtrl_light -> com.bihe0832.getsignature.R.drawable.bu
com.bihe0832.getsignature.R.drawable.abc_text_select_handle_middle_mtrl_dark -> com.bihe0832.getsignature.R.drawable.bv
com.bihe0832.getsignature.R.drawable.abc_text_select_handle_middle_mtrl_light -> com.bihe0832.getsignature.R.drawable.bw
com.bihe0832.getsignature.R.drawable.abc_text_select_handle_right_mtrl_dark -> com.bihe0832.getsignature.R.drawable.bx
com.bihe0832.getsignature.R.drawable.abc_text_select_handle_right_mtrl_light -> com.bihe0832.getsignature.R.drawable.by
com.bihe0832.getsignature.R.drawable.abc_textfield_activated_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.bz
com.bihe0832.getsignature.R.drawable.abc_textfield_default_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.c0
com.bihe0832.getsignature.R.drawable.abc_textfield_search_activated_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.c1
com.bihe0832.getsignature.R.drawable.abc_textfield_search_default_mtrl_alpha -> com.bihe0832.getsignature.R.drawable.c2
com.bihe0832.getsignature.R.drawable.notification_bg_low_normal -> com.bihe0832.getsignature.R.drawable.c3
com.bihe0832.getsignature.R.drawable.notification_bg_low_pressed -> com.bihe0832.getsignature.R.drawable.c4
com.bihe0832.getsignature.R.drawable.notification_bg_normal -> com.bihe0832.getsignature.R.drawable.c5
com.bihe0832.getsignature.R.drawable.notification_bg_normal_pressed -> com.bihe0832.getsignature.R.drawable.c6
com.bihe0832.getsignature.R.drawable.notify_panel_notification_icon_bg -> com.bihe0832.getsignature.R.drawable.c7
com.bihe0832.getsignature.R.drawable.shadow_bottom -> com.bihe0832.getsignature.R.drawable.c8
com.bihe0832.getsignature.R.drawable.shadow_left -> com.bihe0832.getsignature.R.drawable.c9
com.bihe0832.getsignature.R.drawable.shadow_right -> com.bihe0832.getsignature.R.drawable.c_
com.bihe0832.getsignature.R.drawable.botton_bar_tab_red_dot -> com.bihe0832.getsignature.R.drawable.ca
com.bihe0832.getsignature.R.drawable.button_bg_shape -> com.bihe0832.getsignature.R.drawable.cb
com.bihe0832.getsignature.R.drawable.com_bihe0832_ui_red_dot -> com.bihe0832.getsignature.R.drawable.cc
com.bihe0832.getsignature.R.drawable.fragmentation_help -> com.bihe0832.getsignature.R.drawable.cd
com.bihe0832.getsignature.R.drawable.fragmentation_ic_expandable -> com.bihe0832.getsignature.R.drawable.ce
com.bihe0832.getsignature.R.drawable.fragmentation_ic_right -> com.bihe0832.getsignature.R.drawable.cf
com.bihe0832.getsignature.R.drawable.fragmentation_ic_stack -> com.bihe0832.getsignature.R.drawable.cg
com.bihe0832.getsignature.R.drawable.praise_btn_go_feedback -> com.bihe0832.getsignature.R.drawable.ch
com.bihe0832.getsignature.R.drawable.praise_btn_go_market -> com.bihe0832.getsignature.R.drawable.ci
com.bihe0832.getsignature.R.drawable.praise_dialog_bg -> com.bihe0832.getsignature.R.drawable.cj
com.bihe0832.getsignature.R.drawable.read_dot -> com.bihe0832.getsignature.R.drawable.ck
com.bihe0832.getsignature.R.id.ALT -> com.bihe0832.getsignature.R.id.a
com.bihe0832.getsignature.R.id.BLOCK -> com.bihe0832.getsignature.R.id.b
com.bihe0832.getsignature.R.id.BOTH -> com.bihe0832.getsignature.R.id.c
com.bihe0832.getsignature.R.id.BOTTOM -> com.bihe0832.getsignature.R.id.d
com.bihe0832.getsignature.R.id.BaseQuickAdapter_databinding_support -> com.bihe0832.getsignature.R.id.e
com.bihe0832.getsignature.R.id.BaseQuickAdapter_dragging_support -> com.bihe0832.getsignature.R.id.f
com.bihe0832.getsignature.R.id.BaseQuickAdapter_swiping_support -> com.bihe0832.getsignature.R.id.g
com.bihe0832.getsignature.R.id.BaseQuickAdapter_viewholder_support -> com.bihe0832.getsignature.R.id.h
com.bihe0832.getsignature.R.id.CTRL -> com.bihe0832.getsignature.R.id.i
com.bihe0832.getsignature.R.id.ChasingDots -> com.bihe0832.getsignature.R.id.j
com.bihe0832.getsignature.R.id.Circle -> com.bihe0832.getsignature.R.id.k
com.bihe0832.getsignature.R.id.CubeGrid -> com.bihe0832.getsignature.R.id.l
com.bihe0832.getsignature.R.id.DoubleBounce -> com.bihe0832.getsignature.R.id.m
com.bihe0832.getsignature.R.id.FUNCTION -> com.bihe0832.getsignature.R.id.n
com.bihe0832.getsignature.R.id.FadingCircle -> com.bihe0832.getsignature.R.id.o
com.bihe0832.getsignature.R.id.FoldingCube -> com.bihe0832.getsignature.R.id.p
com.bihe0832.getsignature.R.id.LEFT -> com.bihe0832.getsignature.R.id.q
com.bihe0832.getsignature.R.id.META -> com.bihe0832.getsignature.R.id.r
com.bihe0832.getsignature.R.id.NONE -> com.bihe0832.getsignature.R.id.s
com.bihe0832.getsignature.R.id.NORMAL -> com.bihe0832.getsignature.R.id.t
com.bihe0832.getsignature.R.id.Pulse -> com.bihe0832.getsignature.R.id.u
com.bihe0832.getsignature.R.id.RIGHT -> com.bihe0832.getsignature.R.id.v
com.bihe0832.getsignature.R.id.RotatingPlane -> com.bihe0832.getsignature.R.id.w
com.bihe0832.getsignature.R.id.SELECT -> com.bihe0832.getsignature.R.id.x
com.bihe0832.getsignature.R.id.SHIFT -> com.bihe0832.getsignature.R.id.y
com.bihe0832.getsignature.R.id.SYM -> com.bihe0832.getsignature.R.id.z
com.bihe0832.getsignature.R.id.TOP -> com.bihe0832.getsignature.R.id.a0
com.bihe0832.getsignature.R.id.TRIANGLE -> com.bihe0832.getsignature.R.id.a1
com.bihe0832.getsignature.R.id.ThreeBounce -> com.bihe0832.getsignature.R.id.a2
com.bihe0832.getsignature.R.id.WanderingCubes -> com.bihe0832.getsignature.R.id.a3
com.bihe0832.getsignature.R.id.Wave -> com.bihe0832.getsignature.R.id.a4
com.bihe0832.getsignature.R.id.about_app_icon -> com.bihe0832.getsignature.R.id.a5
com.bihe0832.getsignature.R.id.about_copy_layout -> com.bihe0832.getsignature.R.id.a6
com.bihe0832.getsignature.R.id.about_copyright -> com.bihe0832.getsignature.R.id.a7
com.bihe0832.getsignature.R.id.about_fragment_content -> com.bihe0832.getsignature.R.id.a8
com.bihe0832.getsignature.R.id.about_version_info -> com.bihe0832.getsignature.R.id.a9
com.bihe0832.getsignature.R.id.action0 -> com.bihe0832.getsignature.R.id.a_
com.bihe0832.getsignature.R.id.action_bar -> com.bihe0832.getsignature.R.id.aa
com.bihe0832.getsignature.R.id.action_bar_activity_content -> com.bihe0832.getsignature.R.id.ab
com.bihe0832.getsignature.R.id.action_bar_container -> com.bihe0832.getsignature.R.id.ac
com.bihe0832.getsignature.R.id.action_bar_root -> com.bihe0832.getsignature.R.id.ad
com.bihe0832.getsignature.R.id.action_bar_spinner -> com.bihe0832.getsignature.R.id.ae
com.bihe0832.getsignature.R.id.action_bar_subtitle -> com.bihe0832.getsignature.R.id.af
com.bihe0832.getsignature.R.id.action_bar_title -> com.bihe0832.getsignature.R.id.ag
com.bihe0832.getsignature.R.id.action_container -> com.bihe0832.getsignature.R.id.ah
com.bihe0832.getsignature.R.id.action_context_bar -> com.bihe0832.getsignature.R.id.ai
com.bihe0832.getsignature.R.id.action_divider -> com.bihe0832.getsignature.R.id.aj
com.bihe0832.getsignature.R.id.action_image -> com.bihe0832.getsignature.R.id.ak
com.bihe0832.getsignature.R.id.action_menu_divider -> com.bihe0832.getsignature.R.id.al
com.bihe0832.getsignature.R.id.action_menu_presenter -> com.bihe0832.getsignature.R.id.am
com.bihe0832.getsignature.R.id.action_mode_bar -> com.bihe0832.getsignature.R.id.an
com.bihe0832.getsignature.R.id.action_mode_bar_stub -> com.bihe0832.getsignature.R.id.ao
com.bihe0832.getsignature.R.id.action_mode_close_button -> com.bihe0832.getsignature.R.id.ap
com.bihe0832.getsignature.R.id.action_text -> com.bihe0832.getsignature.R.id.aq
com.bihe0832.getsignature.R.id.actions -> com.bihe0832.getsignature.R.id.ar
com.bihe0832.getsignature.R.id.activity_chooser_view_content -> com.bihe0832.getsignature.R.id.as
com.bihe0832.getsignature.R.id.activity_list_info_list -> com.bihe0832.getsignature.R.id.at
com.bihe0832.getsignature.R.id.activity_list_refresh -> com.bihe0832.getsignature.R.id.au
com.bihe0832.getsignature.R.id.add -> com.bihe0832.getsignature.R.id.av
com.bihe0832.getsignature.R.id.alertTitle -> com.bihe0832.getsignature.R.id.aw
com.bihe0832.getsignature.R.id.always -> com.bihe0832.getsignature.R.id.ax
com.bihe0832.getsignature.R.id.app_about_toolbar -> com.bihe0832.getsignature.R.id.ay
com.bihe0832.getsignature.R.id.app_icon -> com.bihe0832.getsignature.R.id.az
com.bihe0832.getsignature.R.id.app_install -> com.bihe0832.getsignature.R.id.b0
com.bihe0832.getsignature.R.id.app_md5 -> com.bihe0832.getsignature.R.id.b1
com.bihe0832.getsignature.R.id.app_name -> com.bihe0832.getsignature.R.id.b2
com.bihe0832.getsignature.R.id.app_package -> com.bihe0832.getsignature.R.id.b3
com.bihe0832.getsignature.R.id.app_update -> com.bihe0832.getsignature.R.id.b4
com.bihe0832.getsignature.R.id.app_version -> com.bihe0832.getsignature.R.id.b5
com.bihe0832.getsignature.R.id.app_webview_progressbar -> com.bihe0832.getsignature.R.id.b6
com.bihe0832.getsignature.R.id.app_webview_swipe_container -> com.bihe0832.getsignature.R.id.b7
com.bihe0832.getsignature.R.id.app_webview_x5webView -> com.bihe0832.getsignature.R.id.b8
com.bihe0832.getsignature.R.id.arrowIcon -> com.bihe0832.getsignature.R.id.b9
com.bihe0832.getsignature.R.id.async -> com.bihe0832.getsignature.R.id.b_
com.bihe0832.getsignature.R.id.barrier -> com.bihe0832.getsignature.R.id.ba
com.bihe0832.getsignature.R.id.beginning -> com.bihe0832.getsignature.R.id.bb
com.bihe0832.getsignature.R.id.bihe0832_common_custom_toast_layout_id -> com.bihe0832.getsignature.R.id.bc
com.bihe0832.getsignature.R.id.bihe0832_common_toastText -> com.bihe0832.getsignature.R.id.bd
com.bihe0832.getsignature.R.id.blocking -> com.bihe0832.getsignature.R.id.be
com.bihe0832.getsignature.R.id.bottom -> com.bihe0832.getsignature.R.id.bf
com.bihe0832.getsignature.R.id.btn_album -> com.bihe0832.getsignature.R.id.bg
com.bihe0832.getsignature.R.id.btn_back -> com.bihe0832.getsignature.R.id.bh
com.bihe0832.getsignature.R.id.btn_cancel -> com.bihe0832.getsignature.R.id.bi
com.bihe0832.getsignature.R.id.btn_flash -> com.bihe0832.getsignature.R.id.bj
com.bihe0832.getsignature.R.id.btn_list -> com.bihe0832.getsignature.R.id.bk
com.bihe0832.getsignature.R.id.btn_restart -> com.bihe0832.getsignature.R.id.bl
com.bihe0832.getsignature.R.id.buttonPanel -> com.bihe0832.getsignature.R.id.bm
com.bihe0832.getsignature.R.id.cancel_action -> com.bihe0832.getsignature.R.id.bn
com.bihe0832.getsignature.R.id.chains -> com.bihe0832.getsignature.R.id.bo
com.bihe0832.getsignature.R.id.checkbox -> com.bihe0832.getsignature.R.id.bp
com.bihe0832.getsignature.R.id.chronometer -> com.bihe0832.getsignature.R.id.bq
com.bihe0832.getsignature.R.id.collapseActionView -> com.bihe0832.getsignature.R.id.br
com.bihe0832.getsignature.R.id.column_line -> com.bihe0832.getsignature.R.id.bs
com.bihe0832.getsignature.R.id.common_activity_list_toolbar -> com.bihe0832.getsignature.R.id.bt
com.bihe0832.getsignature.R.id.common_fragment_content -> com.bihe0832.getsignature.R.id.bu
com.bihe0832.getsignature.R.id.common_toolbar -> com.bihe0832.getsignature.R.id.bv
com.bihe0832.getsignature.R.id.common_view_list_empty_content_tips -> com.bihe0832.getsignature.R.id.bw
com.bihe0832.getsignature.R.id.content -> com.bihe0832.getsignature.R.id.bx
com.bihe0832.getsignature.R.id.contentPanel -> com.bihe0832.getsignature.R.id.by
com.bihe0832.getsignature.R.id.content_img -> com.bihe0832.getsignature.R.id.bz
com.bihe0832.getsignature.R.id.content_layout -> com.bihe0832.getsignature.R.id.c0
com.bihe0832.getsignature.R.id.custom -> com.bihe0832.getsignature.R.id.c1
com.bihe0832.getsignature.R.id.customPanel -> com.bihe0832.getsignature.R.id.c2
com.bihe0832.getsignature.R.id.decor_content_parent -> com.bihe0832.getsignature.R.id.c3
com.bihe0832.getsignature.R.id.default_activity_button -> com.bihe0832.getsignature.R.id.c4
com.bihe0832.getsignature.R.id.dialog_layout -> com.bihe0832.getsignature.R.id.c5
com.bihe0832.getsignature.R.id.dimensions -> com.bihe0832.getsignature.R.id.c6
com.bihe0832.getsignature.R.id.direct -> com.bihe0832.getsignature.R.id.c7
com.bihe0832.getsignature.R.id.disableHome -> com.bihe0832.getsignature.R.id.c8
com.bihe0832.getsignature.R.id.edit_query -> com.bihe0832.getsignature.R.id.c9
com.bihe0832.getsignature.R.id.end -> com.bihe0832.getsignature.R.id.c_
com.bihe0832.getsignature.R.id.end_padder -> com.bihe0832.getsignature.R.id.ca
com.bihe0832.getsignature.R.id.error_page -> com.bihe0832.getsignature.R.id.cb
com.bihe0832.getsignature.R.id.expand_activities_button -> com.bihe0832.getsignature.R.id.cc
com.bihe0832.getsignature.R.id.expanded_menu -> com.bihe0832.getsignature.R.id.cd
com.bihe0832.getsignature.R.id.feedback -> com.bihe0832.getsignature.R.id.ce
com.bihe0832.getsignature.R.id.forever -> com.bihe0832.getsignature.R.id.cf
com.bihe0832.getsignature.R.id.fragment_list_info_list -> com.bihe0832.getsignature.R.id.cg
com.bihe0832.getsignature.R.id.fragment_list_refresh -> com.bihe0832.getsignature.R.id.ch
com.bihe0832.getsignature.R.id.gone -> com.bihe0832.getsignature.R.id.ci
com.bihe0832.getsignature.R.id.groups -> com.bihe0832.getsignature.R.id.cj
com.bihe0832.getsignature.R.id.hierarchy -> com.bihe0832.getsignature.R.id.ck
com.bihe0832.getsignature.R.id.home -> com.bihe0832.getsignature.R.id.cl
com.bihe0832.getsignature.R.id.homeAsUp -> com.bihe0832.getsignature.R.id.cm
com.bihe0832.getsignature.R.id.icon -> com.bihe0832.getsignature.R.id.cn
com.bihe0832.getsignature.R.id.icon_group -> com.bihe0832.getsignature.R.id.co
com.bihe0832.getsignature.R.id.ifRoom -> com.bihe0832.getsignature.R.id.cp
com.bihe0832.getsignature.R.id.image -> com.bihe0832.getsignature.R.id.cq
com.bihe0832.getsignature.R.id.info -> com.bihe0832.getsignature.R.id.cr
com.bihe0832.getsignature.R.id.invisible -> com.bihe0832.getsignature.R.id.cs
com.bihe0832.getsignature.R.id.isexpand -> com.bihe0832.getsignature.R.id.ct
com.bihe0832.getsignature.R.id.italic -> com.bihe0832.getsignature.R.id.cu
com.bihe0832.getsignature.R.id.item_red_dot -> com.bihe0832.getsignature.R.id.cv
com.bihe0832.getsignature.R.id.item_red_num -> com.bihe0832.getsignature.R.id.cw
com.bihe0832.getsignature.R.id.item_text -> com.bihe0832.getsignature.R.id.cx
com.bihe0832.getsignature.R.id.item_touch_helper_previous_elevation -> com.bihe0832.getsignature.R.id.cy
com.bihe0832.getsignature.R.id.iv_layout -> com.bihe0832.getsignature.R.id.cz
com.bihe0832.getsignature.R.id.iv_logo -> com.bihe0832.getsignature.R.id.d0
com.bihe0832.getsignature.R.id.iv_tab_icon -> com.bihe0832.getsignature.R.id.d1
com.bihe0832.getsignature.R.id.left -> com.bihe0832.getsignature.R.id.d2
com.bihe0832.getsignature.R.id.line -> com.bihe0832.getsignature.R.id.d3
com.bihe0832.getsignature.R.id.line1 -> com.bihe0832.getsignature.R.id.d4
com.bihe0832.getsignature.R.id.line3 -> com.bihe0832.getsignature.R.id.d5
com.bihe0832.getsignature.R.id.listMode -> com.bihe0832.getsignature.R.id.d6
com.bihe0832.getsignature.R.id.list_item -> com.bihe0832.getsignature.R.id.d7
com.bihe0832.getsignature.R.id.ll_tap -> com.bihe0832.getsignature.R.id.d8
com.bihe0832.getsignature.R.id.load_more_load_end_view -> com.bihe0832.getsignature.R.id.d9
com.bihe0832.getsignature.R.id.load_more_load_fail_view -> com.bihe0832.getsignature.R.id.d_
com.bihe0832.getsignature.R.id.load_more_loading_view -> com.bihe0832.getsignature.R.id.da
com.bihe0832.getsignature.R.id.loadingIcon -> com.bihe0832.getsignature.R.id.db
com.bihe0832.getsignature.R.id.loading_bar -> com.bihe0832.getsignature.R.id.dc
com.bihe0832.getsignature.R.id.loading_label -> com.bihe0832.getsignature.R.id.dd
com.bihe0832.getsignature.R.id.loading_main_layout -> com.bihe0832.getsignature.R.id.de
com.bihe0832.getsignature.R.id.loading_progress -> com.bihe0832.getsignature.R.id.df
com.bihe0832.getsignature.R.id.loading_text -> com.bihe0832.getsignature.R.id.dg
com.bihe0832.getsignature.R.id.main_fragment_bottomBar -> com.bihe0832.getsignature.R.id.dh
com.bihe0832.getsignature.R.id.main_fragment_content -> com.bihe0832.getsignature.R.id.di
com.bihe0832.getsignature.R.id.media_actions -> com.bihe0832.getsignature.R.id.dj
com.bihe0832.getsignature.R.id.message -> com.bihe0832.getsignature.R.id.dk
com.bihe0832.getsignature.R.id.middle -> com.bihe0832.getsignature.R.id.dl
com.bihe0832.getsignature.R.id.multiply -> com.bihe0832.getsignature.R.id.dm
com.bihe0832.getsignature.R.id.negtive -> com.bihe0832.getsignature.R.id.dn
com.bihe0832.getsignature.R.id.never -> com.bihe0832.getsignature.R.id.do
com.bihe0832.getsignature.R.id.nomore_cb -> com.bihe0832.getsignature.R.id.dp
com.bihe0832.getsignature.R.id.none -> com.bihe0832.getsignature.R.id.dq
com.bihe0832.getsignature.R.id.normal -> com.bihe0832.getsignature.R.id.dr
com.bihe0832.getsignature.R.id.notification_background -> com.bihe0832.getsignature.R.id.ds
com.bihe0832.getsignature.R.id.notification_main_column -> com.bihe0832.getsignature.R.id.dt
com.bihe0832.getsignature.R.id.notification_main_column_container -> com.bihe0832.getsignature.R.id.du
com.bihe0832.getsignature.R.id.packed -> com.bihe0832.getsignature.R.id.dv
com.bihe0832.getsignature.R.id.parent -> com.bihe0832.getsignature.R.id.dw
com.bihe0832.getsignature.R.id.parentPanel -> com.bihe0832.getsignature.R.id.dx
com.bihe0832.getsignature.R.id.percent -> com.bihe0832.getsignature.R.id.dy
com.bihe0832.getsignature.R.id.positive -> com.bihe0832.getsignature.R.id.dz
com.bihe0832.getsignature.R.id.progress_bar_download -> com.bihe0832.getsignature.R.id.e0