1.1
wxr
2022-12-09 88b0bfe8a27e15717395e643db5814f34e3fc22f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
 
[assembly: global::Android.Runtime.ResourceDesignerAttribute("com.hdl.on.Resource", IsApplication=true)]
 
namespace com.hdl.on
{
    
    
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
    public partial class Resource
    {
        
        static Resource()
        {
            global::Android.Runtime.ResourceIdManager.UpdateIdValues();
        }
        
        public static void UpdateIdValues()
        {
        }
        
        public partial class Animation
        {
            
            // aapt resource value: 0x7F010000
            public const int fingerprint_draw_off_animation_interpolator_0 = 2130771968;
            
            // aapt resource value: 0x7F010001
            public const int fingerprint_draw_off_animation_interpolator_1 = 2130771969;
            
            // aapt resource value: 0x7F010002
            public const int fingerprint_draw_off_ridge_1_path_animation = 2130771970;
            
            // aapt resource value: 0x7F010003
            public const int fingerprint_draw_off_ridge_2_path_animation = 2130771971;
            
            // aapt resource value: 0x7F010004
            public const int fingerprint_draw_off_ridge_5_path_animation = 2130771972;
            
            // aapt resource value: 0x7F010005
            public const int fingerprint_draw_off_ridge_6_path_animation = 2130771973;
            
            // aapt resource value: 0x7F010006
            public const int fingerprint_draw_off_ridge_7_path_animation = 2130771974;
            
            // aapt resource value: 0x7F010007
            public const int fingerprint_draw_on_animation_interpolator_0 = 2130771975;
            
            // aapt resource value: 0x7F010008
            public const int fingerprint_draw_on_animation_interpolator_1 = 2130771976;
            
            // aapt resource value: 0x7F010009
            public const int fingerprint_draw_on_ridge_1_path_animation = 2130771977;
            
            // aapt resource value: 0x7F01000A
            public const int fingerprint_draw_on_ridge_2_path_animation = 2130771978;
            
            // aapt resource value: 0x7F01000B
            public const int fingerprint_draw_on_ridge_5_path_animation = 2130771979;
            
            // aapt resource value: 0x7F01000C
            public const int fingerprint_draw_on_ridge_6_path_animation = 2130771980;
            
            // aapt resource value: 0x7F01000D
            public const int fingerprint_draw_on_ridge_7_path_animation = 2130771981;
            
            // aapt resource value: 0x7F01000E
            public const int fingerprint_error_state_to_fp_animation_interpolator_0 = 2130771982;
            
            // aapt resource value: 0x7F01000F
            public const int fingerprint_error_state_to_fp_animation_interpolator_1 = 2130771983;
            
            // aapt resource value: 0x7F010010
            public const int fingerprint_error_state_to_fp_animation_interpolator_2 = 2130771984;
            
            // aapt resource value: 0x7F010011
            public const int fingerprint_error_state_to_fp_animation_interpolator_3 = 2130771985;
            
            // aapt resource value: 0x7F010012
            public const int fingerprint_error_state_to_fp_animation_interpolator_4 = 2130771986;
            
            // aapt resource value: 0x7F010013
            public const int fingerprint_error_state_to_fp_animation_interpolator_5 = 2130771987;
            
            // aapt resource value: 0x7F010014
            public const int fingerprint_error_state_to_fp_group_1_animation = 2130771988;
            
            // aapt resource value: 0x7F010015
            public const int fingerprint_error_state_to_fp_group_2_animation = 2130771989;
            
            // aapt resource value: 0x7F010016
            public const int fingerprint_error_state_to_fp_path_1_animation = 2130771990;
            
            // aapt resource value: 0x7F010017
            public const int fingerprint_error_state_to_fp_path_2_animation = 2130771991;
            
            // aapt resource value: 0x7F010018
            public const int fingerprint_error_state_to_fp_path_3_animation = 2130771992;
            
            // aapt resource value: 0x7F010019
            public const int fingerprint_error_state_to_fp_ridge_1_path_animation = 2130771993;
            
            // aapt resource value: 0x7F01001A
            public const int fingerprint_error_state_to_fp_ridge_2_path_animation = 2130771994;
            
            // aapt resource value: 0x7F01001B
            public const int fingerprint_error_state_to_fp_ridge_5_path_animation = 2130771995;
            
            // aapt resource value: 0x7F01001C
            public const int fingerprint_error_state_to_fp_ridge_6_path_animation = 2130771996;
            
            // aapt resource value: 0x7F01001D
            public const int fingerprint_error_state_to_fp_ridge_7_path_animation = 2130771997;
            
            // aapt resource value: 0x7F01001E
            public const int fingerprint_error_state_to_fp_white_fingerprint_ridges_animation = 2130771998;
            
            // aapt resource value: 0x7F01001F
            public const int fingerprint_fp_to_error_state_animation_interpolator_0 = 2130771999;
            
            // aapt resource value: 0x7F010020
            public const int fingerprint_fp_to_error_state_animation_interpolator_1 = 2130772000;
            
            // aapt resource value: 0x7F010021
            public const int fingerprint_fp_to_error_state_animation_interpolator_2 = 2130772001;
            
            // aapt resource value: 0x7F010022
            public const int fingerprint_fp_to_error_state_animation_interpolator_3 = 2130772002;
            
            // aapt resource value: 0x7F010023
            public const int fingerprint_fp_to_error_state_animation_interpolator_4 = 2130772003;
            
            // aapt resource value: 0x7F010024
            public const int fingerprint_fp_to_error_state_animation_interpolator_5 = 2130772004;
            
            // aapt resource value: 0x7F010025
            public const int fingerprint_fp_to_error_state_fingerprint_ridges_animation = 2130772005;
            
            // aapt resource value: 0x7F010026
            public const int fingerprint_fp_to_error_state_group_1_animation = 2130772006;
            
            // aapt resource value: 0x7F010027
            public const int fingerprint_fp_to_error_state_group_2_animation = 2130772007;
            
            // aapt resource value: 0x7F010028
            public const int fingerprint_fp_to_error_state_path_1_animation = 2130772008;
            
            // aapt resource value: 0x7F010029
            public const int fingerprint_fp_to_error_state_path_2_animation = 2130772009;
            
            // aapt resource value: 0x7F01002A
            public const int fingerprint_fp_to_error_state_path_3_animation = 2130772010;
            
            // aapt resource value: 0x7F01002B
            public const int fingerprint_fp_to_error_state_ridge_1_path_0_animation = 2130772011;
            
            // aapt resource value: 0x7F01002C
            public const int fingerprint_fp_to_error_state_ridge_1_path_animation = 2130772012;
            
            // aapt resource value: 0x7F01002D
            public const int fingerprint_fp_to_error_state_ridge_2_path_0_animation = 2130772013;
            
            // aapt resource value: 0x7F01002E
            public const int fingerprint_fp_to_error_state_ridge_2_path_animation = 2130772014;
            
            // aapt resource value: 0x7F01002F
            public const int fingerprint_fp_to_error_state_ridge_5_path_0_animation = 2130772015;
            
            // aapt resource value: 0x7F010030
            public const int fingerprint_fp_to_error_state_ridge_5_path_animation = 2130772016;
            
            // aapt resource value: 0x7F010031
            public const int fingerprint_fp_to_error_state_ridge_6_path_0_animation = 2130772017;
            
            // aapt resource value: 0x7F010032
            public const int fingerprint_fp_to_error_state_ridge_6_path_animation = 2130772018;
            
            // aapt resource value: 0x7F010033
            public const int fingerprint_fp_to_error_state_ridge_7_path_0_animation = 2130772019;
            
            // aapt resource value: 0x7F010034
            public const int fingerprint_fp_to_error_state_ridge_7_path_animation = 2130772020;
            
            // aapt resource value: 0x7F010035
            public const int fingerprint_fp_to_error_state_white_fingerprint_ridges_animation = 2130772021;
            
            // aapt resource value: 0x7F010036
            public const int move_in = 2130772022;
            
            // aapt resource value: 0x7F010037
            public const int move_out = 2130772023;
            
            // aapt resource value: 0x7F010038
            public const int pickerview_dialog_scale_in = 2130772024;
            
            // aapt resource value: 0x7F010039
            public const int pickerview_dialog_scale_out = 2130772025;
            
            // aapt resource value: 0x7F01003A
            public const int pickerview_slide_in_bottom = 2130772026;
            
            // aapt resource value: 0x7F01003B
            public const int pickerview_slide_out_bottom = 2130772027;
            
            static Animation()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Animation()
            {
            }
        }
        
        public partial class Array
        {
            
            // aapt resource value: 0x7F020000
            public const int arc_colors_default = 2130837504;
            
            static Array()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Array()
            {
            }
        }
        
        public partial class Attribute
        {
            
            // aapt resource value: 0x7F030000
            public const int arc_border_color = 2130903040;
            
            // aapt resource value: 0x7F030001
            public const int arc_border_width = 2130903041;
            
            // aapt resource value: 0x7F030002
            public const int arc_colors = 2130903042;
            
            // aapt resource value: 0x7F030003
            public const int arc_max = 2130903043;
            
            // aapt resource value: 0x7F030004
            public const int arc_min = 2130903044;
            
            // aapt resource value: 0x7F030005
            public const int arc_open_angle = 2130903045;
            
            // aapt resource value: 0x7F030006
            public const int arc_progress = 2130903046;
            
            // aapt resource value: 0x7F030007
            public const int arc_progress_bar_color = 2130903047;
            
            // aapt resource value: 0x7F030008
            public const int arc_progress_bar_text_unit = 2130903048;
            
            // aapt resource value: 0x7F030009
            public const int arc_rotate_angle = 2130903049;
            
            // aapt resource value: 0x7F03000A
            public const int arc_shadow_radius = 2130903050;
            
            // aapt resource value: 0x7F03000B
            public const int arc_thumb_color = 2130903051;
            
            // aapt resource value: 0x7F03000C
            public const int arc_thumb_radius = 2130903052;
            
            // aapt resource value: 0x7F03000D
            public const int arc_thumb_shadow_color = 2130903053;
            
            // aapt resource value: 0x7F03000E
            public const int arc_thumb_shadow_radius = 2130903054;
            
            // aapt resource value: 0x7F03000F
            public const int arc_thumb_width = 2130903055;
            
            // aapt resource value: 0x7F030010
            public const int arc_width = 2130903056;
            
            // aapt resource value: 0x7F030011
            public const int biometricPromptDialogTheme = 2130903057;
            
            // aapt resource value: 0x7F030012
            public const int curtain_bar_bg_color = 2130903058;
            
            // aapt resource value: 0x7F030013
            public const int curtain_bar_border_color = 2130903059;
            
            // aapt resource value: 0x7F030014
            public const int curtain_bar_color = 2130903060;
            
            // aapt resource value: 0x7F030015
            public const int curtain_bar_height = 2130903061;
            
            // aapt resource value: 0x7F030016
            public const int curtain_bar_width = 2130903062;
            
            // aapt resource value: 0x7F030017
            public const int font = 2130903063;
            
            // aapt resource value: 0x7F030018
            public const int fontProviderAuthority = 2130903064;
            
            // aapt resource value: 0x7F030019
            public const int fontProviderCerts = 2130903065;
            
            // aapt resource value: 0x7F03001A
            public const int fontProviderFetchStrategy = 2130903066;
            
            // aapt resource value: 0x7F03001B
            public const int fontProviderFetchTimeout = 2130903067;
            
            // aapt resource value: 0x7F03001C
            public const int fontProviderPackage = 2130903068;
            
            // aapt resource value: 0x7F03001D
            public const int fontProviderQuery = 2130903069;
            
            // aapt resource value: 0x7F03001E
            public const int fontStyle = 2130903070;
            
            // aapt resource value: 0x7F03001F
            public const int fontWeight = 2130903071;
            
            // aapt resource value: 0x7F030020
            public const int hdl_arc_thumb_mode = 2130903072;
            
            // aapt resource value: 0x7F030021
            public const int layout_srlBackgroundColor = 2130903073;
            
            // aapt resource value: 0x7F030022
            public const int layout_srlSpinnerStyle = 2130903074;
            
            // aapt resource value: 0x7F030023
            public const int second_curtain_bar_color = 2130903075;
            
            // aapt resource value: 0x7F030024
            public const int second_wave_color = 2130903076;
            
            // aapt resource value: 0x7F030025
            public const int srlAccentColor = 2130903077;
            
            // aapt resource value: 0x7F030026
            public const int srlAnimatingColor = 2130903078;
            
            // aapt resource value: 0x7F030027
            public const int srlClassicsSpinnerStyle = 2130903079;
            
            // aapt resource value: 0x7F030028
            public const int srlDisableContentWhenLoading = 2130903080;
            
            // aapt resource value: 0x7F030029
            public const int srlDisableContentWhenRefresh = 2130903081;
            
            // aapt resource value: 0x7F03002A
            public const int srlDragRate = 2130903082;
            
            // aapt resource value: 0x7F03002B
            public const int srlDrawableArrow = 2130903083;
            
            // aapt resource value: 0x7F03002C
            public const int srlDrawableArrowSize = 2130903084;
            
            // aapt resource value: 0x7F03002D
            public const int srlDrawableMarginRight = 2130903085;
            
            // aapt resource value: 0x7F03002E
            public const int srlDrawableProgress = 2130903086;
            
            // aapt resource value: 0x7F03002F
            public const int srlDrawableProgressSize = 2130903087;
            
            // aapt resource value: 0x7F030030
            public const int srlDrawableSize = 2130903088;
            
            // aapt resource value: 0x7F030031
            public const int srlEnableAutoLoadMore = 2130903089;
            
            // aapt resource value: 0x7F030032
            public const int srlEnableClipFooterWhenFixedBehind = 2130903090;
            
            // aapt resource value: 0x7F030033
            public const int srlEnableClipHeaderWhenFixedBehind = 2130903091;
            
            // aapt resource value: 0x7F030034
            public const int srlEnableFooterFollowWhenLoadFinished = 2130903092;
            
            // aapt resource value: 0x7F030035
            public const int srlEnableFooterFollowWhenNoMoreData = 2130903093;
            
            // aapt resource value: 0x7F030036
            public const int srlEnableFooterTranslationContent = 2130903094;
            
            // aapt resource value: 0x7F030037
            public const int srlEnableHeaderTranslationContent = 2130903095;
            
            // aapt resource value: 0x7F030038
            public const int srlEnableHorizontalDrag = 2130903096;
            
            // aapt resource value: 0x7F030039
            public const int srlEnableLastTime = 2130903097;
            
            // aapt resource value: 0x7F03003A
            public const int srlEnableLoadMore = 2130903098;
            
            // aapt resource value: 0x7F03003B
            public const int srlEnableLoadMoreWhenContentNotFull = 2130903099;
            
            // aapt resource value: 0x7F03003C
            public const int srlEnableNestedScrolling = 2130903100;
            
            // aapt resource value: 0x7F03003D
            public const int srlEnableOverScrollBounce = 2130903101;
            
            // aapt resource value: 0x7F03003E
            public const int srlEnableOverScrollDrag = 2130903102;
            
            // aapt resource value: 0x7F03003F
            public const int srlEnablePreviewInEditMode = 2130903103;
            
            // aapt resource value: 0x7F030040
            public const int srlEnablePullToCloseTwoLevel = 2130903104;
            
            // aapt resource value: 0x7F030041
            public const int srlEnablePureScrollMode = 2130903105;
            
            // aapt resource value: 0x7F030042
            public const int srlEnableRefresh = 2130903106;
            
            // aapt resource value: 0x7F030043
            public const int srlEnableScrollContentWhenLoaded = 2130903107;
            
            // aapt resource value: 0x7F030044
            public const int srlEnableScrollContentWhenRefreshed = 2130903108;
            
            // aapt resource value: 0x7F030045
            public const int srlEnableTwoLevel = 2130903109;
            
            // aapt resource value: 0x7F030046
            public const int srlFinishDuration = 2130903110;
            
            // aapt resource value: 0x7F030047
            public const int srlFixedFooterViewId = 2130903111;
            
            // aapt resource value: 0x7F030048
            public const int srlFixedHeaderViewId = 2130903112;
            
            // aapt resource value: 0x7F030049
            public const int srlFloorDuration = 2130903113;
            
            // aapt resource value: 0x7F03004A
            public const int srlFloorRage = 2130903114;
            
            // aapt resource value: 0x7F03004B
            public const int srlFooterHeight = 2130903115;
            
            // aapt resource value: 0x7F03004C
            public const int srlFooterInsetStart = 2130903116;
            
            // aapt resource value: 0x7F03004D
            public const int srlFooterMaxDragRate = 2130903117;
            
            // aapt resource value: 0x7F03004E
            public const int srlFooterTranslationViewId = 2130903118;
            
            // aapt resource value: 0x7F03004F
            public const int srlFooterTriggerRate = 2130903119;
            
            // aapt resource value: 0x7F030050
            public const int srlHeaderHeight = 2130903120;
            
            // aapt resource value: 0x7F030051
            public const int srlHeaderInsetStart = 2130903121;
            
            // aapt resource value: 0x7F030052
            public const int srlHeaderMaxDragRate = 2130903122;
            
            // aapt resource value: 0x7F030053
            public const int srlHeaderTranslationViewId = 2130903123;
            
            // aapt resource value: 0x7F030054
            public const int srlHeaderTriggerRate = 2130903124;
            
            // aapt resource value: 0x7F030055
            public const int srlMaxRage = 2130903125;
            
            // aapt resource value: 0x7F030056
            public const int srlNormalColor = 2130903126;
            
            // aapt resource value: 0x7F030057
            public const int srlPrimaryColor = 2130903127;
            
            // aapt resource value: 0x7F030058
            public const int srlReboundDuration = 2130903128;
            
            // aapt resource value: 0x7F030059
            public const int srlRefreshRage = 2130903129;
            
            // aapt resource value: 0x7F03005A
            public const int srlTextFailed = 2130903130;
            
            // aapt resource value: 0x7F03005B
            public const int srlTextFinish = 2130903131;
            
            // aapt resource value: 0x7F03005C
            public const int srlTextLoading = 2130903132;
            
            // aapt resource value: 0x7F03005D
            public const int srlTextNothing = 2130903133;
            
            // aapt resource value: 0x7F03005E
            public const int srlTextPulling = 2130903134;
            
            // aapt resource value: 0x7F03005F
            public const int srlTextRefreshing = 2130903135;
            
            // aapt resource value: 0x7F030060
            public const int srlTextRelease = 2130903136;
            
            // aapt resource value: 0x7F030061
            public const int srlTextSecondary = 2130903137;
            
            // aapt resource value: 0x7F030062
            public const int srlTextSizeTime = 2130903138;
            
            // aapt resource value: 0x7F030063
            public const int srlTextSizeTitle = 2130903139;
            
            // aapt resource value: 0x7F030064
            public const int srlTextTimeMarginTop = 2130903140;
            
            // aapt resource value: 0x7F030065
            public const int srlTextUpdate = 2130903141;
            
            // aapt resource value: 0x7F030066
            public const int wave_bg_color = 2130903142;
            
            // aapt resource value: 0x7F030067
            public const int wave_border_color = 2130903143;
            
            // aapt resource value: 0x7F030068
            public const int wave_color = 2130903144;
            
            // aapt resource value: 0x7F030069
            public const int wave_height = 2130903145;
            
            // aapt resource value: 0x7F03006A
            public const int wave_width = 2130903146;
            
            // aapt resource value: 0x7F03006B
            public const int wheelview_dividerColor = 2130903147;
            
            // aapt resource value: 0x7F03006C
            public const int wheelview_gravity = 2130903148;
            
            // aapt resource value: 0x7F03006D
            public const int wheelview_lineSpacingMultiplier = 2130903149;
            
            // aapt resource value: 0x7F03006E
            public const int wheelview_textColorCenter = 2130903150;
            
            // aapt resource value: 0x7F03006F
            public const int wheelview_textColorOut = 2130903151;
            
            // aapt resource value: 0x7F030070
            public const int wheelview_textSize = 2130903152;
            
            static Attribute()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Attribute()
            {
            }
        }
        
        public partial class Boolean
        {
            
            // aapt resource value: 0x7F040000
            public const int abc_action_bar_embed_tabs = 2130968576;
            
            static Boolean()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Boolean()
            {
            }
        }
        
        public partial class Color
        {
            
            // aapt resource value: 0x7F050000
            public const int gd_top_view = 2131034112;
            
            // aapt resource value: 0x7F050001
            public const int material_grey_100 = 2131034113;
            
            // aapt resource value: 0x7F050002
            public const int material_grey_300 = 2131034114;
            
            // aapt resource value: 0x7F050003
            public const int material_grey_50 = 2131034115;
            
            // aapt resource value: 0x7F050004
            public const int material_red_500 = 2131034116;
            
            // aapt resource value: 0x7F050005
            public const int notification_action_color_filter = 2131034117;
            
            // aapt resource value: 0x7F050006
            public const int notification_icon_bg_color = 2131034118;
            
            // aapt resource value: 0x7F050007
            public const int notification_material_background_media_default_color = 2131034119;
            
            // aapt resource value: 0x7F050008
            public const int pickerview_bgColor_default = 2131034120;
            
            // aapt resource value: 0x7F050009
            public const int pickerview_bgColor_overlay = 2131034121;
            
            // aapt resource value: 0x7F05000A
            public const int pickerview_bg_topbar = 2131034122;
            
            // aapt resource value: 0x7F05000B
            public const int pickerview_timebtn_nor = 2131034123;
            
            // aapt resource value: 0x7F05000C
            public const int pickerview_timebtn_pre = 2131034124;
            
            // aapt resource value: 0x7F05000D
            public const int pickerview_topbar_title = 2131034125;
            
            // aapt resource value: 0x7F05000E
            public const int pickerview_wheelview_textcolor_center = 2131034126;
            
            // aapt resource value: 0x7F05000F
            public const int pickerview_wheelview_textcolor_divider = 2131034127;
            
            // aapt resource value: 0x7F050010
            public const int pickerview_wheelview_textcolor_out = 2131034128;
            
            // aapt resource value: 0x7F050011
            public const int primary_text_default_material_dark = 2131034129;
            
            // aapt resource value: 0x7F050012
            public const int ripple_material_light = 2131034130;
            
            // aapt resource value: 0x7F050013
            public const int secondary_text_default_material_dark = 2131034131;
            
            // aapt resource value: 0x7F050014
            public const int secondary_text_default_material_light = 2131034132;
            
            static Color()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Color()
            {
            }
        }
        
        public partial class Dimension
        {
            
            // aapt resource value: 0x7F060000
            public const int compat_button_inset_horizontal_material = 2131099648;
            
            // aapt resource value: 0x7F060001
            public const int compat_button_inset_vertical_material = 2131099649;
            
            // aapt resource value: 0x7F060002
            public const int compat_button_padding_horizontal_material = 2131099650;
            
            // aapt resource value: 0x7F060003
            public const int compat_button_padding_vertical_material = 2131099651;
            
            // aapt resource value: 0x7F060004
            public const int compat_control_corner_material = 2131099652;
            
            // aapt resource value: 0x7F060005
            public const int fingerprint_icon_size = 2131099653;
            
            // aapt resource value: 0x7F060006
            public const int fingerprint_status_layout_margin_vertical = 2131099654;
            
            // aapt resource value: 0x7F060007
            public const int notification_action_icon_size = 2131099655;
            
            // aapt resource value: 0x7F060008
            public const int notification_action_text_size = 2131099656;
            
            // aapt resource value: 0x7F060009
            public const int notification_big_circle_margin = 2131099657;
            
            // aapt resource value: 0x7F06000A
            public const int notification_content_margin_start = 2131099658;
            
            // aapt resource value: 0x7F06000B
            public const int notification_large_icon_height = 2131099659;
            
            // aapt resource value: 0x7F06000C
            public const int notification_large_icon_width = 2131099660;
            
            // aapt resource value: 0x7F06000D
            public const int notification_main_column_padding_top = 2131099661;
            
            // aapt resource value: 0x7F06000E
            public const int notification_media_narrow_margin = 2131099662;
            
            // aapt resource value: 0x7F06000F
            public const int notification_right_icon_size = 2131099663;
            
            // aapt resource value: 0x7F060010
            public const int notification_right_side_padding_top = 2131099664;
            
            // aapt resource value: 0x7F060011
            public const int notification_small_icon_background_padding = 2131099665;
            
            // aapt resource value: 0x7F060012
            public const int notification_small_icon_size_as_large = 2131099666;
            
            // aapt resource value: 0x7F060013
            public const int notification_subtext_size = 2131099667;
            
            // aapt resource value: 0x7F060014
            public const int notification_top_pad = 2131099668;
            
            // aapt resource value: 0x7F060015
            public const int notification_top_pad_large_text = 2131099669;
            
            // aapt resource value: 0x7F060016
            public const int pickerview_textsize = 2131099670;
            
            // aapt resource value: 0x7F060017
            public const int pickerview_topbar_btn_textsize = 2131099671;
            
            // aapt resource value: 0x7F060018
            public const int pickerview_topbar_height = 2131099672;
            
            // aapt resource value: 0x7F060019
            public const int pickerview_topbar_padding = 2131099673;
            
            // aapt resource value: 0x7F06001A
            public const int pickerview_topbar_title_textsize = 2131099674;
            
            static Dimension()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Dimension()
            {
            }
        }
        
        public partial class Drawable
        {
            
            // aapt resource value: 0x7F070000
            public const int fingerprint_draw_off = 2131165184;
            
            // aapt resource value: 0x7F070001
            public const int fingerprint_draw_off_animation = 2131165185;
            
            // aapt resource value: 0x7F070002
            public const int fingerprint_draw_on = 2131165186;
            
            // aapt resource value: 0x7F070003
            public const int fingerprint_draw_on_animation = 2131165187;
            
            // aapt resource value: 0x7F070004
            public const int fingerprint_error = 2131165188;
            
            // aapt resource value: 0x7F070005
            public const int fingerprint_error_off = 2131165189;
            
            // aapt resource value: 0x7F070006
            public const int fingerprint_error_off_animation = 2131165190;
            
            // aapt resource value: 0x7F070007
            public const int fingerprint_error_on = 2131165191;
            
            // aapt resource value: 0x7F070008
            public const int fingerprint_error_on_animation = 2131165192;
            
            // aapt resource value: 0x7F070009
            public const int fingerprint_error_state_to_fp = 2131165193;
            
            // aapt resource value: 0x7F07000A
            public const int fingerprint_error_state_to_fp_animation = 2131165194;
            
            // aapt resource value: 0x7F07000B
            public const int fingerprint_fingerprint = 2131165195;
            
            // aapt resource value: 0x7F07000C
            public const int fingerprint_fp_to_error_state = 2131165196;
            
            // aapt resource value: 0x7F07000D
            public const int fingerprint_fp_to_error_state_animation = 2131165197;
            
            // aapt resource value: 0x7F07000E
            public const int gd_btn_shape_app_b = 2131165198;
            
            // aapt resource value: 0x7F07000F
            public const int gd_btn_shape_app_g = 2131165199;
            
            // aapt resource value: 0x7F070010
            public const int gd_btn_shape_app_w = 2131165200;
            
            // aapt resource value: 0x7F070011
            public const int gd_btn_shape_shadow_w = 2131165201;
            
            // aapt resource value: 0x7F070012
            public const int gd_click_effect_select = 2131165202;
            
            // aapt resource value: 0x7F070025
            public const int Icon = 2131165221;
            
            // aapt resource value: 0x7F070013
            public const int ic_gdmap_add = 2131165203;
            
            // aapt resource value: 0x7F070014
            public const int ic_gdmap_back = 2131165204;
            
            // aapt resource value: 0x7F070015
            public const int ic_gdmap_delete = 2131165205;
            
            // aapt resource value: 0x7F070016
            public const int ic_gdmap_home = 2131165206;
            
            // aapt resource value: 0x7F070017
            public const int ic_gdmap_mylocation = 2131165207;
            
            // aapt resource value: 0x7F070018
            public const int ic_gdmap_now = 2131165208;
            
            // aapt resource value: 0x7F070019
            public const int ic_gdmap_search = 2131165209;
            
            // aapt resource value: 0x7F07001A
            public const int ic_gdmap_zoom_out = 2131165210;
            
            // aapt resource value: 0x7F07001B
            public const int ic_gps_point = 2131165211;
            
            // aapt resource value: 0x7F07001C
            public const int ic_wd_arc_scale_bg = 2131165212;
            
            // aapt resource value: 0x7F07001D
            public const int ic_wd_curtain_bg_top = 2131165213;
            
            // aapt resource value: 0x7F07001E
            public const int ic_wd_curtain_h_bg = 2131165214;
            
            // aapt resource value: 0x7F07001F
            public const int ic_wd_curtain_h_open = 2131165215;
            
            // aapt resource value: 0x7F070020
            public const int ic_wd_curtain_h_progress = 2131165216;
            
            // aapt resource value: 0x7F070021
            public const int ic_wd_curtain_h_top = 2131165217;
            
            // aapt resource value: 0x7F070022
            public const int ic_wd_curtain_open = 2131165218;
            
            // aapt resource value: 0x7F070023
            public const int ic_wd_curtain_roll_bg = 2131165219;
            
            // aapt resource value: 0x7F070024
            public const int ic_wd_curtain_roll_progress = 2131165220;
            
            // aapt resource value: 0x7F070026
            public const int Loading = 2131165222;
            
            // aapt resource value: 0x7F070027
            public const int notification_action_background = 2131165223;
            
            // aapt resource value: 0x7F070028
            public const int notification_bg = 2131165224;
            
            // aapt resource value: 0x7F070029
            public const int notification_bg_low = 2131165225;
            
            // aapt resource value: 0x7F07002A
            public const int notification_bg_low_normal = 2131165226;
            
            // aapt resource value: 0x7F07002B
            public const int notification_bg_low_pressed = 2131165227;
            
            // aapt resource value: 0x7F07002C
            public const int notification_bg_normal = 2131165228;
            
            // aapt resource value: 0x7F07002D
            public const int notification_bg_normal_pressed = 2131165229;
            
            // aapt resource value: 0x7F07002E
            public const int notification_icon_background = 2131165230;
            
            // aapt resource value: 0x7F07002F
            public const int notification_template_icon_bg = 2131165231;
            
            // aapt resource value: 0x7F070030
            public const int notification_template_icon_low_bg = 2131165232;
            
            // aapt resource value: 0x7F070031
            public const int notification_tile_bg = 2131165233;
            
            // aapt resource value: 0x7F070032
            public const int notify_panel_notification_icon_bg = 2131165234;
            
            // aapt resource value: 0x7F070033
            public const int PadLoading = 2131165235;
            
            // aapt resource value: 0x7F070034
            public const int selector_pickerview_btn = 2131165236;
            
            static Drawable()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Drawable()
            {
            }
        }
        
        public partial class Id
        {
            
            // aapt resource value: 0x7F080008
            public const int action0 = 2131230728;
            
            // aapt resource value: 0x7F08000D
            public const int actions = 2131230733;
            
            // aapt resource value: 0x7F080009
            public const int action_container = 2131230729;
            
            // aapt resource value: 0x7F08000A
            public const int action_divider = 2131230730;
            
            // aapt resource value: 0x7F08000B
            public const int action_image = 2131230731;
            
            // aapt resource value: 0x7F08000C
            public const int action_text = 2131230732;
            
            // aapt resource value: 0x7F08000E
            public const int app_upgrate_progressbar = 2131230734;
            
            // aapt resource value: 0x7F08000F
            public const int app_upgrate_text = 2131230735;
            
            // aapt resource value: 0x7F080010
            public const int async = 2131230736;
            
            // aapt resource value: 0x7F080011
            public const int blocking = 2131230737;
            
            // aapt resource value: 0x7F080012
            public const int btnCancel = 2131230738;
            
            // aapt resource value: 0x7F080013
            public const int btnSubmit = 2131230739;
            
            // aapt resource value: 0x7F080014
            public const int cancel_action = 2131230740;
            
            // aapt resource value: 0x7F080015
            public const int center = 2131230741;
            
            // aapt resource value: 0x7F080016
            public const int chronometer = 2131230742;
            
            // aapt resource value: 0x7F080017
            public const int content_container = 2131230743;
            
            // aapt resource value: 0x7F080018
            public const int day = 2131230744;
            
            // aapt resource value: 0x7F080019
            public const int description = 2131230745;
            
            // aapt resource value: 0x7F08001A
            public const int end_padder = 2131230746;
            
            // aapt resource value: 0x7F080000
            public const int FILL = 2131230720;
            
            // aapt resource value: 0x7F080001
            public const int FILL_STROKE = 2131230721;
            
            // aapt resource value: 0x7F08001B
            public const int fingerprint_icon = 2131230747;
            
            // aapt resource value: 0x7F080002
            public const int FixedBehind = 2131230722;
            
            // aapt resource value: 0x7F080003
            public const int FixedFront = 2131230723;
            
            // aapt resource value: 0x7F08001C
            public const int forever = 2131230748;
            
            // aapt resource value: 0x7F08001D
            public const int gd_btn_back = 2131230749;
            
            // aapt resource value: 0x7F08001E
            public const int gd_btn_myLocation = 2131230750;
            
            // aapt resource value: 0x7F08001F
            public const int gd_btn_save = 2131230751;
            
            // aapt resource value: 0x7F080020
            public const int gd_img_search_delete = 2131230752;
            
            // aapt resource value: 0x7F080021
            public const int gd_ll_myhome = 2131230753;
            
            // aapt resource value: 0x7F080022
            public const int gd_ll_search = 2131230754;
            
            // aapt resource value: 0x7F080023
            public const int gd_mapView = 2131230755;
            
            // aapt resource value: 0x7F080024
            public const int gd_rl_topview = 2131230756;
            
            // aapt resource value: 0x7F080025
            public const int gd_tv_activity_title = 2131230757;
            
            // aapt resource value: 0x7F080026
            public const int gd_tv_radius = 2131230758;
            
            // aapt resource value: 0x7F080027
            public const int gd_tv_search_title = 2131230759;
            
            // aapt resource value: 0x7F080028
            public const int hdl_gallery_rootView = 2131230760;
            
            // aapt resource value: 0x7F080029
            public const int hdl_gallery_viewPager = 2131230761;
            
            // aapt resource value: 0x7F08002A
            public const int hdl_options1 = 2131230762;
            
            // aapt resource value: 0x7F08002B
            public const int hdl_options2 = 2131230763;
            
            // aapt resource value: 0x7F08002C
            public const int hdl_options3 = 2131230764;
            
            // aapt resource value: 0x7F08002D
            public const int hdl_pickerview_ll = 2131230765;
            
            // aapt resource value: 0x7F08002E
            public const int hour = 2131230766;
            
            // aapt resource value: 0x7F08002F
            public const int icon = 2131230767;
            
            // aapt resource value: 0x7F080030
            public const int icon_group = 2131230768;
            
            // aapt resource value: 0x7F080031
            public const int info = 2131230769;
            
            // aapt resource value: 0x7F080032
            public const int italic = 2131230770;
            
            // aapt resource value: 0x7F080033
            public const int left = 2131230771;
            
            // aapt resource value: 0x7F080034
            public const int line1 = 2131230772;
            
            // aapt resource value: 0x7F080035
            public const int line3 = 2131230773;
            
            // aapt resource value: 0x7F080036
            public const int linearLayout1 = 2131230774;
            
            // aapt resource value: 0x7F080037
            public const int linearLayout3 = 2131230775;
            
            // aapt resource value: 0x7F080004
            public const int MatchLayout = 2131230724;
            
            // aapt resource value: 0x7F080038
            public const int media_actions = 2131230776;
            
            // aapt resource value: 0x7F080039
            public const int min = 2131230777;
            
            // aapt resource value: 0x7F08003A
            public const int month = 2131230778;
            
            // aapt resource value: 0x7F08003B
            public const int myButton = 2131230779;
            
            // aapt resource value: 0x7F08003C
            public const int normal = 2131230780;
            
            // aapt resource value: 0x7F08003D
            public const int notification_background = 2131230781;
            
            // aapt resource value: 0x7F08003E
            public const int notification_main_column = 2131230782;
            
            // aapt resource value: 0x7F08003F
            public const int notification_main_column_container = 2131230783;
            
            // aapt resource value: 0x7F080040
            public const int options1 = 2131230784;
            
            // aapt resource value: 0x7F080041
            public const int options2 = 2131230785;
            
            // aapt resource value: 0x7F080042
            public const int options3 = 2131230786;
            
            // aapt resource value: 0x7F080043
            public const int optionspicker = 2131230787;
            
            // aapt resource value: 0x7F080044
            public const int outmost_container = 2131230788;
            
            // aapt resource value: 0x7F080045
            public const int right = 2131230789;
            
            // aapt resource value: 0x7F080046
            public const int right_icon = 2131230790;
            
            // aapt resource value: 0x7F080047
            public const int right_side = 2131230791;
            
            // aapt resource value: 0x7F080048
            public const int rv_topbar = 2131230792;
            
            // aapt resource value: 0x7F080006
            public const int Scale = 2131230726;
            
            // aapt resource value: 0x7F080049
            public const int second = 2131230793;
            
            // aapt resource value: 0x7F08004A
            public const int srl_classics_arrow = 2131230794;
            
            // aapt resource value: 0x7F08004B
            public const int srl_classics_center = 2131230795;
            
            // aapt resource value: 0x7F08004C
            public const int srl_classics_progress = 2131230796;
            
            // aapt resource value: 0x7F08004D
            public const int srl_classics_title = 2131230797;
            
            // aapt resource value: 0x7F08004E
            public const int srl_classics_update = 2131230798;
            
            // aapt resource value: 0x7F08004F
            public const int status = 2131230799;
            
            // aapt resource value: 0x7F080050
            public const int status_bar_latest_event_content = 2131230800;
            
            // aapt resource value: 0x7F080005
            public const int STROKE = 2131230725;
            
            // aapt resource value: 0x7F080051
            public const int subtitle = 2131230801;
            
            // aapt resource value: 0x7F080052
            public const int text = 2131230802;
            
            // aapt resource value: 0x7F080053
            public const int text2 = 2131230803;
            
            // aapt resource value: 0x7F080054
            public const int time = 2131230804;
            
            // aapt resource value: 0x7F080055
            public const int timepicker = 2131230805;
            
            // aapt resource value: 0x7F080056
            public const int title = 2131230806;
            
            // aapt resource value: 0x7F080007
            public const int Translate = 2131230727;
            
            // aapt resource value: 0x7F080057
            public const int tvTitle = 2131230807;
            
            // aapt resource value: 0x7F080058
            public const int year = 2131230808;
            
            static Id()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Id()
            {
            }
        }
        
        public partial class Integer
        {
            
            // aapt resource value: 0x7F090000
            public const int animation_default_duration = 2131296256;
            
            // aapt resource value: 0x7F090001
            public const int cancel_button_image_alpha = 2131296257;
            
            // aapt resource value: 0x7F090002
            public const int status_bar_notification_info_maxnum = 2131296258;
            
            static Integer()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Integer()
            {
            }
        }
        
        public partial class Layout
        {
            
            // aapt resource value: 0x7F0A0000
            public const int AppUpgrate = 2131361792;
            
            // aapt resource value: 0x7F0A0001
            public const int biometric_prompt_dialog_content = 2131361793;
            
            // aapt resource value: 0x7F0A0002
            public const int hdl_gallery_banner_view_layout = 2131361794;
            
            // aapt resource value: 0x7F0A0003
            public const int hdl_widget_activity_crop_image = 2131361795;
            
            // aapt resource value: 0x7F0A0004
            public const int hdl_widget_activity_geofence_round = 2131361796;
            
            // aapt resource value: 0x7F0A0005
            public const int hdl_widget_air_button = 2131361797;
            
            // aapt resource value: 0x7F0A0006
            public const int hdl_widget_include_pickerview_topbar = 2131361798;
            
            // aapt resource value: 0x7F0A0007
            public const int hdl_widget_layout_basepickerview = 2131361799;
            
            // aapt resource value: 0x7F0A0008
            public const int hdl_widget_pickerview = 2131361800;
            
            // aapt resource value: 0x7F0A0009
            public const int hdl_widget_pickerview_options = 2131361801;
            
            // aapt resource value: 0x7F0A000A
            public const int hdl_widget_pickerview_time = 2131361802;
            
            // aapt resource value: 0x7F0A000B
            public const int Main = 2131361803;
            
            // aapt resource value: 0x7F0A000C
            public const int notification_action = 2131361804;
            
            // aapt resource value: 0x7F0A000D
            public const int notification_action_tombstone = 2131361805;
            
            // aapt resource value: 0x7F0A000E
            public const int notification_media_action = 2131361806;
            
            // aapt resource value: 0x7F0A000F
            public const int notification_media_cancel_action = 2131361807;
            
            // aapt resource value: 0x7F0A0010
            public const int notification_template_big_media = 2131361808;
            
            // aapt resource value: 0x7F0A0011
            public const int notification_template_big_media_custom = 2131361809;
            
            // aapt resource value: 0x7F0A0012
            public const int notification_template_big_media_narrow = 2131361810;
            
            // aapt resource value: 0x7F0A0013
            public const int notification_template_big_media_narrow_custom = 2131361811;
            
            // aapt resource value: 0x7F0A0014
            public const int notification_template_custom_big = 2131361812;
            
            // aapt resource value: 0x7F0A0015
            public const int notification_template_icon_group = 2131361813;
            
            // aapt resource value: 0x7F0A0016
            public const int notification_template_lines_media = 2131361814;
            
            // aapt resource value: 0x7F0A0017
            public const int notification_template_media = 2131361815;
            
            // aapt resource value: 0x7F0A0018
            public const int notification_template_media_custom = 2131361816;
            
            // aapt resource value: 0x7F0A0019
            public const int notification_template_part_chronometer = 2131361817;
            
            // aapt resource value: 0x7F0A001A
            public const int notification_template_part_time = 2131361818;
            
            // aapt resource value: 0x7F0A001B
            public const int srl_classics_footer = 2131361819;
            
            // aapt resource value: 0x7F0A001C
            public const int srl_classics_header = 2131361820;
            
            static Layout()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Layout()
            {
            }
        }
        
        public partial class Mipmap
        {
            
            // aapt resource value: 0x7F0B0000
            public const int Icon = 2131427328;
            
            static Mipmap()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Mipmap()
            {
            }
        }
        
        public partial class String
        {
            
            // aapt resource value: 0x7F0C0000
            public const int app_name = 2131492864;
            
            // aapt resource value: 0x7F0C0001
            public const int gd_activity_title = 2131492865;
            
            // aapt resource value: 0x7F0C0002
            public const int gd_cancel = 2131492866;
            
            // aapt resource value: 0x7F0C0003
            public const int gd_myhome = 2131492867;
            
            // aapt resource value: 0x7F0C0004
            public const int gd_notifyMsg = 2131492868;
            
            // aapt resource value: 0x7F0C0005
            public const int gd_notifyTitle = 2131492869;
            
            // aapt resource value: 0x7F0C0006
            public const int gd_save = 2131492870;
            
            // aapt resource value: 0x7F0C0007
            public const int gd_search_tip = 2131492871;
            
            // aapt resource value: 0x7F0C0008
            public const int gd_select_distance = 2131492872;
            
            // aapt resource value: 0x7F0C0009
            public const int gd_setting = 2131492873;
            
            // aapt resource value: 0x7F0C000A
            public const int hello = 2131492874;
            
            // aapt resource value: 0x7F0C000B
            public const int not_recognized_fingerprint_hint = 2131492875;
            
            // aapt resource value: 0x7F0C000C
            public const int pickerview_cancel = 2131492876;
            
            // aapt resource value: 0x7F0C000D
            public const int pickerview_day = 2131492877;
            
            // aapt resource value: 0x7F0C000E
            public const int pickerview_hours = 2131492878;
            
            // aapt resource value: 0x7F0C000F
            public const int pickerview_minutes = 2131492879;
            
            // aapt resource value: 0x7F0C0010
            public const int pickerview_month = 2131492880;
            
            // aapt resource value: 0x7F0C0011
            public const int pickerview_seconds = 2131492881;
            
            // aapt resource value: 0x7F0C0012
            public const int pickerview_submit = 2131492882;
            
            // aapt resource value: 0x7F0C0013
            public const int pickerview_year = 2131492883;
            
            // aapt resource value: 0x7F0C0014
            public const int srl_component_falsify = 2131492884;
            
            // aapt resource value: 0x7F0C0015
            public const int srl_content_empty = 2131492885;
            
            // aapt resource value: 0x7F0C0016
            public const int srl_footer_failed = 2131492886;
            
            // aapt resource value: 0x7F0C0017
            public const int srl_footer_finish = 2131492887;
            
            // aapt resource value: 0x7F0C0018
            public const int srl_footer_loading = 2131492888;
            
            // aapt resource value: 0x7F0C0019
            public const int srl_footer_nothing = 2131492889;
            
            // aapt resource value: 0x7F0C001A
            public const int srl_footer_pulling = 2131492890;
            
            // aapt resource value: 0x7F0C001B
            public const int srl_footer_refreshing = 2131492891;
            
            // aapt resource value: 0x7F0C001C
            public const int srl_footer_release = 2131492892;
            
            // aapt resource value: 0x7F0C001D
            public const int srl_header_failed = 2131492893;
            
            // aapt resource value: 0x7F0C001E
            public const int srl_header_finish = 2131492894;
            
            // aapt resource value: 0x7F0C001F
            public const int srl_header_loading = 2131492895;
            
            // aapt resource value: 0x7F0C0020
            public const int srl_header_pulling = 2131492896;
            
            // aapt resource value: 0x7F0C0021
            public const int srl_header_refreshing = 2131492897;
            
            // aapt resource value: 0x7F0C0022
            public const int srl_header_release = 2131492898;
            
            // aapt resource value: 0x7F0C0023
            public const int srl_header_secondary = 2131492899;
            
            // aapt resource value: 0x7F0C0024
            public const int srl_header_update = 2131492900;
            
            // aapt resource value: 0x7F0C0025
            public const int status_bar_notification_info_overflow = 2131492901;
            
            // aapt resource value: 0x7F0C0026
            public const int touch_fingerprint_sensor_hint = 2131492902;
            
            static String()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private String()
            {
            }
        }
        
        public partial class Style
        {
            
            // aapt resource value: 0x7F0D0000
            public const int BottomSheetDialogAnimation = 2131558400;
            
            // aapt resource value: 0x7F0D000F
            public const int custom_dialog2 = 2131558415;
            
            // aapt resource value: 0x7F0D0001
            public const int MyTheme = 2131558401;
            
            // aapt resource value: 0x7F0D0010
            public const int picker_view_scale_anim = 2131558416;
            
            // aapt resource value: 0x7F0D0011
            public const int picker_view_slide_anim = 2131558417;
            
            // aapt resource value: 0x7F0D0002
            public const int TextAppearance_Compat_Notification = 2131558402;
            
            // aapt resource value: 0x7F0D0003
            public const int TextAppearance_Compat_Notification_Info = 2131558403;
            
            // aapt resource value: 0x7F0D0004
            public const int TextAppearance_Compat_Notification_Info_Media = 2131558404;
            
            // aapt resource value: 0x7F0D0005
            public const int TextAppearance_Compat_Notification_Line2 = 2131558405;
            
            // aapt resource value: 0x7F0D0006
            public const int TextAppearance_Compat_Notification_Line2_Media = 2131558406;
            
            // aapt resource value: 0x7F0D0007
            public const int TextAppearance_Compat_Notification_Media = 2131558407;
            
            // aapt resource value: 0x7F0D0008
            public const int TextAppearance_Compat_Notification_Time = 2131558408;
            
            // aapt resource value: 0x7F0D0009
            public const int TextAppearance_Compat_Notification_Time_Media = 2131558409;
            
            // aapt resource value: 0x7F0D000A
            public const int TextAppearance_Compat_Notification_Title = 2131558410;
            
            // aapt resource value: 0x7F0D000B
            public const int TextAppearance_Compat_Notification_Title_Media = 2131558411;
            
            // aapt resource value: 0x7F0D000C
            public const int Theme_BiometricPromptDialog = 2131558412;
            
            // aapt resource value: 0x7F0D000D
            public const int Widget_Compat_NotificationActionContainer = 2131558413;
            
            // aapt resource value: 0x7F0D000E
            public const int Widget_Compat_NotificationActionText = 2131558414;
            
            static Style()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Style()
            {
            }
        }
        
        public partial class Styleable
        {
            
            // aapt resource value: { 0x7F030026,0x7F030027,0x7F030056 }
            public static int[] BallPulseFooter = new int[] {
                    2130903078,
                    2130903079,
                    2130903126};
            
            // aapt resource value: 0
            public const int BallPulseFooter_srlAnimatingColor = 0;
            
            // aapt resource value: 1
            public const int BallPulseFooter_srlClassicsSpinnerStyle = 1;
            
            // aapt resource value: 2
            public const int BallPulseFooter_srlNormalColor = 2;
            
            // aapt resource value: { 0x7F030025,0x7F030038,0x7F030057 }
            public static int[] BezierRadarHeader = new int[] {
                    2130903077,
                    2130903096,
                    2130903127};
            
            // aapt resource value: 0
            public const int BezierRadarHeader_srlAccentColor = 0;
            
            // aapt resource value: 1
            public const int BezierRadarHeader_srlEnableHorizontalDrag = 1;
            
            // aapt resource value: 2
            public const int BezierRadarHeader_srlPrimaryColor = 2;
            
            // aapt resource value: { 0x7F030025,0x7F030027,0x7F03002B,0x7F03002C,0x7F03002D,0x7F03002E,0x7F03002F,0x7F030030,0x7F030046,0x7F030057,0x7F03005A,0x7F03005B,0x7F03005C,0x7F03005D,0x7F03005E,0x7F03005F,0x7F030060,0x7F030063 }
            public static int[] ClassicsFooter = new int[] {
                    2130903077,
                    2130903079,
                    2130903083,
                    2130903084,
                    2130903085,
                    2130903086,
                    2130903087,
                    2130903088,
                    2130903110,
                    2130903127,
                    2130903130,
                    2130903131,
                    2130903132,
                    2130903133,
                    2130903134,
                    2130903135,
                    2130903136,
                    2130903139};
            
            // aapt resource value: 0
            public const int ClassicsFooter_srlAccentColor = 0;
            
            // aapt resource value: 1
            public const int ClassicsFooter_srlClassicsSpinnerStyle = 1;
            
            // aapt resource value: 2
            public const int ClassicsFooter_srlDrawableArrow = 2;
            
            // aapt resource value: 3
            public const int ClassicsFooter_srlDrawableArrowSize = 3;
            
            // aapt resource value: 4
            public const int ClassicsFooter_srlDrawableMarginRight = 4;
            
            // aapt resource value: 5
            public const int ClassicsFooter_srlDrawableProgress = 5;
            
            // aapt resource value: 6
            public const int ClassicsFooter_srlDrawableProgressSize = 6;
            
            // aapt resource value: 7
            public const int ClassicsFooter_srlDrawableSize = 7;
            
            // aapt resource value: 8
            public const int ClassicsFooter_srlFinishDuration = 8;
            
            // aapt resource value: 9
            public const int ClassicsFooter_srlPrimaryColor = 9;
            
            // aapt resource value: 10
            public const int ClassicsFooter_srlTextFailed = 10;
            
            // aapt resource value: 11
            public const int ClassicsFooter_srlTextFinish = 11;
            
            // aapt resource value: 12
            public const int ClassicsFooter_srlTextLoading = 12;
            
            // aapt resource value: 13
            public const int ClassicsFooter_srlTextNothing = 13;
            
            // aapt resource value: 14
            public const int ClassicsFooter_srlTextPulling = 14;
            
            // aapt resource value: 15
            public const int ClassicsFooter_srlTextRefreshing = 15;
            
            // aapt resource value: 16
            public const int ClassicsFooter_srlTextRelease = 16;
            
            // aapt resource value: 17
            public const int ClassicsFooter_srlTextSizeTitle = 17;
            
            // aapt resource value: { 0x7F030025,0x7F030027,0x7F03002B,0x7F03002C,0x7F03002D,0x7F03002E,0x7F03002F,0x7F030030,0x7F030039,0x7F030046,0x7F030057,0x7F03005A,0x7F03005B,0x7F03005C,0x7F03005E,0x7F03005F,0x7F030060,0x7F030061,0x7F030062,0x7F030063,0x7F030064,0x7F030065 }
            public static int[] ClassicsHeader = new int[] {
                    2130903077,
                    2130903079,
                    2130903083,
                    2130903084,
                    2130903085,
                    2130903086,
                    2130903087,
                    2130903088,
                    2130903097,
                    2130903110,
                    2130903127,
                    2130903130,
                    2130903131,
                    2130903132,
                    2130903134,
                    2130903135,
                    2130903136,
                    2130903137,
                    2130903138,
                    2130903139,
                    2130903140,
                    2130903141};
            
            // aapt resource value: 0
            public const int ClassicsHeader_srlAccentColor = 0;
            
            // aapt resource value: 1
            public const int ClassicsHeader_srlClassicsSpinnerStyle = 1;
            
            // aapt resource value: 2
            public const int ClassicsHeader_srlDrawableArrow = 2;
            
            // aapt resource value: 3
            public const int ClassicsHeader_srlDrawableArrowSize = 3;
            
            // aapt resource value: 4
            public const int ClassicsHeader_srlDrawableMarginRight = 4;
            
            // aapt resource value: 5
            public const int ClassicsHeader_srlDrawableProgress = 5;
            
            // aapt resource value: 6
            public const int ClassicsHeader_srlDrawableProgressSize = 6;
            
            // aapt resource value: 7
            public const int ClassicsHeader_srlDrawableSize = 7;
            
            // aapt resource value: 8
            public const int ClassicsHeader_srlEnableLastTime = 8;
            
            // aapt resource value: 9
            public const int ClassicsHeader_srlFinishDuration = 9;
            
            // aapt resource value: 10
            public const int ClassicsHeader_srlPrimaryColor = 10;
            
            // aapt resource value: 11
            public const int ClassicsHeader_srlTextFailed = 11;
            
            // aapt resource value: 12
            public const int ClassicsHeader_srlTextFinish = 12;
            
            // aapt resource value: 13
            public const int ClassicsHeader_srlTextLoading = 13;
            
            // aapt resource value: 14
            public const int ClassicsHeader_srlTextPulling = 14;
            
            // aapt resource value: 15
            public const int ClassicsHeader_srlTextRefreshing = 15;
            
            // aapt resource value: 16
            public const int ClassicsHeader_srlTextRelease = 16;
            
            // aapt resource value: 17
            public const int ClassicsHeader_srlTextSecondary = 17;
            
            // aapt resource value: 18
            public const int ClassicsHeader_srlTextSizeTime = 18;
            
            // aapt resource value: 19
            public const int ClassicsHeader_srlTextSizeTitle = 19;
            
            // aapt resource value: 20
            public const int ClassicsHeader_srlTextTimeMarginTop = 20;
            
            // aapt resource value: 21
            public const int ClassicsHeader_srlTextUpdate = 21;
            
            // aapt resource value: { 0x7F030018,0x7F030019,0x7F03001A,0x7F03001B,0x7F03001C,0x7F03001D }
            public static int[] FontFamily = new int[] {
                    2130903064,
                    2130903065,
                    2130903066,
                    2130903067,
                    2130903068,
                    2130903069};
            
            // aapt resource value: { 0x7F030017,0x7F03001E,0x7F03001F }
            public static int[] FontFamilyFont = new int[] {
                    2130903063,
                    2130903070,
                    2130903071};
            
            // aapt resource value: 0
            public const int FontFamilyFont_font = 0;
            
            // aapt resource value: 1
            public const int FontFamilyFont_fontStyle = 1;
            
            // aapt resource value: 2
            public const int FontFamilyFont_fontWeight = 2;
            
            // aapt resource value: 0
            public const int FontFamily_fontProviderAuthority = 0;
            
            // aapt resource value: 1
            public const int FontFamily_fontProviderCerts = 1;
            
            // aapt resource value: 2
            public const int FontFamily_fontProviderFetchStrategy = 2;
            
            // aapt resource value: 3
            public const int FontFamily_fontProviderFetchTimeout = 3;
            
            // aapt resource value: 4
            public const int FontFamily_fontProviderPackage = 4;
            
            // aapt resource value: 5
            public const int FontFamily_fontProviderQuery = 5;
            
            // aapt resource value: { 0x7F030000,0x7F030001,0x7F030002,0x7F030003,0x7F030004,0x7F030005,0x7F030006,0x7F030007,0x7F030008,0x7F030009,0x7F03000A,0x7F03000B,0x7F03000C,0x7F03000D,0x7F03000E,0x7F03000F,0x7F030010,0x7F030020 }
            public static int[] HDLArcSeekBar = new int[] {
                    2130903040,
                    2130903041,
                    2130903042,
                    2130903043,
                    2130903044,
                    2130903045,
                    2130903046,
                    2130903047,
                    2130903048,
                    2130903049,
                    2130903050,
                    2130903051,
                    2130903052,
                    2130903053,
                    2130903054,
                    2130903055,
                    2130903056,
                    2130903072};
            
            // aapt resource value: 0
            public const int HDLArcSeekBar_arc_border_color = 0;
            
            // aapt resource value: 1
            public const int HDLArcSeekBar_arc_border_width = 1;
            
            // aapt resource value: 2
            public const int HDLArcSeekBar_arc_colors = 2;
            
            // aapt resource value: 3
            public const int HDLArcSeekBar_arc_max = 3;
            
            // aapt resource value: 4
            public const int HDLArcSeekBar_arc_min = 4;
            
            // aapt resource value: 5
            public const int HDLArcSeekBar_arc_open_angle = 5;
            
            // aapt resource value: 6
            public const int HDLArcSeekBar_arc_progress = 6;
            
            // aapt resource value: 7
            public const int HDLArcSeekBar_arc_progress_bar_color = 7;
            
            // aapt resource value: 8
            public const int HDLArcSeekBar_arc_progress_bar_text_unit = 8;
            
            // aapt resource value: 9
            public const int HDLArcSeekBar_arc_rotate_angle = 9;
            
            // aapt resource value: 10
            public const int HDLArcSeekBar_arc_shadow_radius = 10;
            
            // aapt resource value: 11
            public const int HDLArcSeekBar_arc_thumb_color = 11;
            
            // aapt resource value: 12
            public const int HDLArcSeekBar_arc_thumb_radius = 12;
            
            // aapt resource value: 13
            public const int HDLArcSeekBar_arc_thumb_shadow_color = 13;
            
            // aapt resource value: 14
            public const int HDLArcSeekBar_arc_thumb_shadow_radius = 14;
            
            // aapt resource value: 15
            public const int HDLArcSeekBar_arc_thumb_width = 15;
            
            // aapt resource value: 16
            public const int HDLArcSeekBar_arc_width = 16;
            
            // aapt resource value: 17
            public const int HDLArcSeekBar_hdl_arc_thumb_mode = 17;
            
            // aapt resource value: { 0x7F030012,0x7F030013,0x7F030014,0x7F030015,0x7F030016,0x7F030023 }
            public static int[] HDLCurtainSeekBar = new int[] {
                    2130903058,
                    2130903059,
                    2130903060,
                    2130903061,
                    2130903062,
                    2130903075};
            
            // aapt resource value: 0
            public const int HDLCurtainSeekBar_curtain_bar_bg_color = 0;
            
            // aapt resource value: 1
            public const int HDLCurtainSeekBar_curtain_bar_border_color = 1;
            
            // aapt resource value: 2
            public const int HDLCurtainSeekBar_curtain_bar_color = 2;
            
            // aapt resource value: 3
            public const int HDLCurtainSeekBar_curtain_bar_height = 3;
            
            // aapt resource value: 4
            public const int HDLCurtainSeekBar_curtain_bar_width = 4;
            
            // aapt resource value: 5
            public const int HDLCurtainSeekBar_second_curtain_bar_color = 5;
            
            // aapt resource value: { 0x7F030024,0x7F030066,0x7F030067,0x7F030068,0x7F030069,0x7F03006A }
            public static int[] HDLWaveSeekBar = new int[] {
                    2130903076,
                    2130903142,
                    2130903143,
                    2130903144,
                    2130903145,
                    2130903146};
            
            // aapt resource value: 0
            public const int HDLWaveSeekBar_second_wave_color = 0;
            
            // aapt resource value: 1
            public const int HDLWaveSeekBar_wave_bg_color = 1;
            
            // aapt resource value: 2
            public const int HDLWaveSeekBar_wave_border_color = 2;
            
            // aapt resource value: 3
            public const int HDLWaveSeekBar_wave_color = 3;
            
            // aapt resource value: 4
            public const int HDLWaveSeekBar_wave_height = 4;
            
            // aapt resource value: 5
            public const int HDLWaveSeekBar_wave_width = 5;
            
            // aapt resource value: { 0x7F03006B,0x7F03006C,0x7F03006D,0x7F03006E,0x7F03006F,0x7F030070 }
            public static int[] pickerview = new int[] {
                    2130903147,
                    2130903148,
                    2130903149,
                    2130903150,
                    2130903151,
                    2130903152};
            
            // aapt resource value: 0
            public const int pickerview_wheelview_dividerColor = 0;
            
            // aapt resource value: 1
            public const int pickerview_wheelview_gravity = 1;
            
            // aapt resource value: 2
            public const int pickerview_wheelview_lineSpacingMultiplier = 2;
            
            // aapt resource value: 3
            public const int pickerview_wheelview_textColorCenter = 3;
            
            // aapt resource value: 4
            public const int pickerview_wheelview_textColorOut = 4;
            
            // aapt resource value: 5
            public const int pickerview_wheelview_textSize = 5;
            
            // aapt resource value: { 0x10100EA,0x10100EB,0x7F030025,0x7F030028,0x7F030029,0x7F03002A,0x7F030031,0x7F030032,0x7F030033,0x7F030034,0x7F030035,0x7F030036,0x7F030037,0x7F03003A,0x7F03003B,0x7F03003C,0x7F03003D,0x7F03003E,0x7F03003F,0x7F030041,0x7F030042,0x7F030043,0x7F030044,0x7F030047,0x7F030048,0x7F03004B,0x7F03004C,0x7F03004D,0x7F03004E,0x7F03004F,0x7F030050,0x7F030051,0x7F030052,0x7F030053,0x7F030054,0x7F030057,0x7F030058 }
            public static int[] SmartRefreshLayout = new int[] {
                    16842986,
                    16842987,
                    2130903077,
                    2130903080,
                    2130903081,
                    2130903082,
                    2130903089,
                    2130903090,
                    2130903091,
                    2130903092,
                    2130903093,
                    2130903094,
                    2130903095,
                    2130903098,
                    2130903099,
                    2130903100,
                    2130903101,
                    2130903102,
                    2130903103,
                    2130903105,
                    2130903106,
                    2130903107,
                    2130903108,
                    2130903111,
                    2130903112,
                    2130903115,
                    2130903116,
                    2130903117,
                    2130903118,
                    2130903119,
                    2130903120,
                    2130903121,
                    2130903122,
                    2130903123,
                    2130903124,
                    2130903127,
                    2130903128};
            
            // aapt resource value: 0
            public const int SmartRefreshLayout_android_clipChildren = 0;
            
            // aapt resource value: 1
            public const int SmartRefreshLayout_android_clipToPadding = 1;
            
            // aapt resource value: { 0x7F030021,0x7F030022 }
            public static int[] SmartRefreshLayout_Layout = new int[] {
                    2130903073,
                    2130903074};
            
            // aapt resource value: 0
            public const int SmartRefreshLayout_Layout_layout_srlBackgroundColor = 0;
            
            // aapt resource value: 1
            public const int SmartRefreshLayout_Layout_layout_srlSpinnerStyle = 1;
            
            // aapt resource value: 2
            public const int SmartRefreshLayout_srlAccentColor = 2;
            
            // aapt resource value: 3
            public const int SmartRefreshLayout_srlDisableContentWhenLoading = 3;
            
            // aapt resource value: 4
            public const int SmartRefreshLayout_srlDisableContentWhenRefresh = 4;
            
            // aapt resource value: 5
            public const int SmartRefreshLayout_srlDragRate = 5;
            
            // aapt resource value: 6
            public const int SmartRefreshLayout_srlEnableAutoLoadMore = 6;
            
            // aapt resource value: 7
            public const int SmartRefreshLayout_srlEnableClipFooterWhenFixedBehind = 7;
            
            // aapt resource value: 8
            public const int SmartRefreshLayout_srlEnableClipHeaderWhenFixedBehind = 8;
            
            // aapt resource value: 9
            public const int SmartRefreshLayout_srlEnableFooterFollowWhenLoadFinished = 9;
            
            // aapt resource value: 10
            public const int SmartRefreshLayout_srlEnableFooterFollowWhenNoMoreData = 10;
            
            // aapt resource value: 11
            public const int SmartRefreshLayout_srlEnableFooterTranslationContent = 11;
            
            // aapt resource value: 12
            public const int SmartRefreshLayout_srlEnableHeaderTranslationContent = 12;
            
            // aapt resource value: 13
            public const int SmartRefreshLayout_srlEnableLoadMore = 13;
            
            // aapt resource value: 14
            public const int SmartRefreshLayout_srlEnableLoadMoreWhenContentNotFull = 14;
            
            // aapt resource value: 15
            public const int SmartRefreshLayout_srlEnableNestedScrolling = 15;
            
            // aapt resource value: 16
            public const int SmartRefreshLayout_srlEnableOverScrollBounce = 16;
            
            // aapt resource value: 17
            public const int SmartRefreshLayout_srlEnableOverScrollDrag = 17;
            
            // aapt resource value: 18
            public const int SmartRefreshLayout_srlEnablePreviewInEditMode = 18;
            
            // aapt resource value: 19
            public const int SmartRefreshLayout_srlEnablePureScrollMode = 19;
            
            // aapt resource value: 20
            public const int SmartRefreshLayout_srlEnableRefresh = 20;
            
            // aapt resource value: 21
            public const int SmartRefreshLayout_srlEnableScrollContentWhenLoaded = 21;
            
            // aapt resource value: 22
            public const int SmartRefreshLayout_srlEnableScrollContentWhenRefreshed = 22;
            
            // aapt resource value: 23
            public const int SmartRefreshLayout_srlFixedFooterViewId = 23;
            
            // aapt resource value: 24
            public const int SmartRefreshLayout_srlFixedHeaderViewId = 24;
            
            // aapt resource value: 25
            public const int SmartRefreshLayout_srlFooterHeight = 25;
            
            // aapt resource value: 26
            public const int SmartRefreshLayout_srlFooterInsetStart = 26;
            
            // aapt resource value: 27
            public const int SmartRefreshLayout_srlFooterMaxDragRate = 27;
            
            // aapt resource value: 28
            public const int SmartRefreshLayout_srlFooterTranslationViewId = 28;
            
            // aapt resource value: 29
            public const int SmartRefreshLayout_srlFooterTriggerRate = 29;
            
            // aapt resource value: 30
            public const int SmartRefreshLayout_srlHeaderHeight = 30;
            
            // aapt resource value: 31
            public const int SmartRefreshLayout_srlHeaderInsetStart = 31;
            
            // aapt resource value: 32
            public const int SmartRefreshLayout_srlHeaderMaxDragRate = 32;
            
            // aapt resource value: 33
            public const int SmartRefreshLayout_srlHeaderTranslationViewId = 33;
            
            // aapt resource value: 34
            public const int SmartRefreshLayout_srlHeaderTriggerRate = 34;
            
            // aapt resource value: 35
            public const int SmartRefreshLayout_srlPrimaryColor = 35;
            
            // aapt resource value: 36
            public const int SmartRefreshLayout_srlReboundDuration = 36;
            
            // aapt resource value: { 0x7F030040,0x7F030045,0x7F030049,0x7F03004A,0x7F030055,0x7F030059 }
            public static int[] TwoLevelHeader = new int[] {
                    2130903104,
                    2130903109,
                    2130903113,
                    2130903114,
                    2130903125,
                    2130903129};
            
            // aapt resource value: 0
            public const int TwoLevelHeader_srlEnablePullToCloseTwoLevel = 0;
            
            // aapt resource value: 1
            public const int TwoLevelHeader_srlEnableTwoLevel = 1;
            
            // aapt resource value: 2
            public const int TwoLevelHeader_srlFloorDuration = 2;
            
            // aapt resource value: 3
            public const int TwoLevelHeader_srlFloorRage = 3;
            
            // aapt resource value: 4
            public const int TwoLevelHeader_srlMaxRage = 4;
            
            // aapt resource value: 5
            public const int TwoLevelHeader_srlRefreshRage = 5;
            
            static Styleable()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Styleable()
            {
            }
        }
        
        public partial class Xml
        {
            
            // aapt resource value: 0x7F0F0000
            public const int file_paths = 2131689472;
            
            // aapt resource value: 0x7F0F0001
            public const int hdl_filepaths = 2131689473;
            
            // aapt resource value: 0x7F0F0002
            public const int network_security_config = 2131689474;
            
            static Xml()
            {
                global::Android.Runtime.ResourceIdManager.UpdateIdValues();
            }
            
            private Xml()
            {
            }
        }
    }
}
#pragma warning restore 1591