summaryrefslogtreecommitdiff
path: root/src/data/graphics/pokemon.h
blob: ea68afa2f9779accf132f0579bc9a906026a731b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
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
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
const u8 gMonFrontPic_Bulbasaur[] = INCBIN_U8("graphics/pokemon/bulbasaur/front.4bpp.lz");
const u8 gMonPalette_Bulbasaur[] = INCBIN_U8("graphics/pokemon/bulbasaur/normal.gbapal.lz");
const u8 gMonBackPic_Bulbasaur[] = INCBIN_U8("graphics/pokemon/bulbasaur/back.4bpp.lz");
const u8 gMonShinyPalette_Bulbasaur[] = INCBIN_U8("graphics/pokemon/bulbasaur/shiny.gbapal.lz");
const u8 gMonIcon_Bulbasaur[] = INCBIN_U8("graphics/pokemon/bulbasaur/icon.4bpp");
const u8 gMonFootprint_Bulbasaur[] = INCBIN_U8("graphics/pokemon/bulbasaur/footprint.1bpp");
const u8 gMonFrontPic_Ivysaur[] = INCBIN_U8("graphics/pokemon/ivysaur/front.4bpp.lz");
const u8 gMonPalette_Ivysaur[] = INCBIN_U8("graphics/pokemon/ivysaur/normal.gbapal.lz");
const u8 gMonBackPic_Ivysaur[] = INCBIN_U8("graphics/pokemon/ivysaur/back.4bpp.lz");
const u8 gMonShinyPalette_Ivysaur[] = INCBIN_U8("graphics/pokemon/ivysaur/shiny.gbapal.lz");
const u8 gMonIcon_Ivysaur[] = INCBIN_U8("graphics/pokemon/ivysaur/icon.4bpp");
const u8 gMonFootprint_Ivysaur[] = INCBIN_U8("graphics/pokemon/ivysaur/footprint.1bpp");
const u8 gMonFrontPic_Venusaur[] = INCBIN_U8("graphics/pokemon/venusaur/front.4bpp.lz");
const u8 gMonPalette_Venusaur[] = INCBIN_U8("graphics/pokemon/venusaur/normal.gbapal.lz");
const u8 gMonBackPic_Venusaur[] = INCBIN_U8("graphics/pokemon/venusaur/back.4bpp.lz");
const u8 gMonShinyPalette_Venusaur[] = INCBIN_U8("graphics/pokemon/venusaur/shiny.gbapal.lz");
const u8 gMonIcon_Venusaur[] = INCBIN_U8("graphics/pokemon/venusaur/icon.4bpp");
const u8 gMonFootprint_Venusaur[] = INCBIN_U8("graphics/pokemon/venusaur/footprint.1bpp");
const u8 gMonFrontPic_Charmander[] = INCBIN_U8("graphics/pokemon/charmander/front.4bpp.lz");
const u8 gMonPalette_Charmander[] = INCBIN_U8("graphics/pokemon/charmander/normal.gbapal.lz");
const u8 gMonBackPic_Charmander[] = INCBIN_U8("graphics/pokemon/charmander/back.4bpp.lz");
const u8 gMonShinyPalette_Charmander[] = INCBIN_U8("graphics/pokemon/charmander/shiny.gbapal.lz");
const u8 gMonIcon_Charmander[] = INCBIN_U8("graphics/pokemon/charmander/icon.4bpp");
const u8 gMonFootprint_Charmander[] = INCBIN_U8("graphics/pokemon/charmander/footprint.1bpp");
const u8 gMonFrontPic_Charmeleon[] = INCBIN_U8("graphics/pokemon/charmeleon/front.4bpp.lz");
const u8 gMonPalette_Charmeleon[] = INCBIN_U8("graphics/pokemon/charmeleon/normal.gbapal.lz");
const u8 gMonBackPic_Charmeleon[] = INCBIN_U8("graphics/pokemon/charmeleon/back.4bpp.lz");
const u8 gMonShinyPalette_Charmeleon[] = INCBIN_U8("graphics/pokemon/charmeleon/shiny.gbapal.lz");
const u8 gMonIcon_Charmeleon[] = INCBIN_U8("graphics/pokemon/charmeleon/icon.4bpp");
const u8 gMonFootprint_Charmeleon[] = INCBIN_U8("graphics/pokemon/charmeleon/footprint.1bpp");
const u8 gMonFrontPic_Charizard[] = INCBIN_U8("graphics/pokemon/charizard/front.4bpp.lz");
const u8 gMonPalette_Charizard[] = INCBIN_U8("graphics/pokemon/charizard/normal.gbapal.lz");
const u8 gMonBackPic_Charizard[] = INCBIN_U8("graphics/pokemon/charizard/back.4bpp.lz");
const u8 gMonShinyPalette_Charizard[] = INCBIN_U8("graphics/pokemon/charizard/shiny.gbapal.lz");
const u8 gMonIcon_Charizard[] = INCBIN_U8("graphics/pokemon/charizard/icon.4bpp");
const u8 gMonFootprint_Charizard[] = INCBIN_U8("graphics/pokemon/charizard/footprint.1bpp");
const u8 gMonFrontPic_Squirtle[] = INCBIN_U8("graphics/pokemon/squirtle/front.4bpp.lz");
const u8 gMonPalette_Squirtle[] = INCBIN_U8("graphics/pokemon/squirtle/normal.gbapal.lz");
const u8 gMonBackPic_Squirtle[] = INCBIN_U8("graphics/pokemon/squirtle/back.4bpp.lz");
const u8 gMonShinyPalette_Squirtle[] = INCBIN_U8("graphics/pokemon/squirtle/shiny.gbapal.lz");
const u8 gMonIcon_Squirtle[] = INCBIN_U8("graphics/pokemon/squirtle/icon.4bpp");
const u8 gMonFootprint_Squirtle[] = INCBIN_U8("graphics/pokemon/squirtle/footprint.1bpp");
const u8 gMonFrontPic_Wartortle[] = INCBIN_U8("graphics/pokemon/wartortle/front.4bpp.lz");
const u8 gMonPalette_Wartortle[] = INCBIN_U8("graphics/pokemon/wartortle/normal.gbapal.lz");
const u8 gMonBackPic_Wartortle[] = INCBIN_U8("graphics/pokemon/wartortle/back.4bpp.lz");
const u8 gMonShinyPalette_Wartortle[] = INCBIN_U8("graphics/pokemon/wartortle/shiny.gbapal.lz");
const u8 gMonIcon_Wartortle[] = INCBIN_U8("graphics/pokemon/wartortle/icon.4bpp");
const u8 gMonFootprint_Wartortle[] = INCBIN_U8("graphics/pokemon/wartortle/footprint.1bpp");
const u8 gMonFrontPic_Blastoise[] = INCBIN_U8("graphics/pokemon/blastoise/front.4bpp.lz");
const u8 gMonPalette_Blastoise[] = INCBIN_U8("graphics/pokemon/blastoise/normal.gbapal.lz");
const u8 gMonBackPic_Blastoise[] = INCBIN_U8("graphics/pokemon/blastoise/back.4bpp.lz");
const u8 gMonShinyPalette_Blastoise[] = INCBIN_U8("graphics/pokemon/blastoise/shiny.gbapal.lz");
const u8 gMonIcon_Blastoise[] = INCBIN_U8("graphics/pokemon/blastoise/icon.4bpp");
const u8 gMonFootprint_Blastoise[] = INCBIN_U8("graphics/pokemon/blastoise/footprint.1bpp");
const u8 gMonFrontPic_Caterpie[] = INCBIN_U8("graphics/pokemon/caterpie/front.4bpp.lz");
const u8 gMonPalette_Caterpie[] = INCBIN_U8("graphics/pokemon/caterpie/normal.gbapal.lz");
const u8 gMonBackPic_Caterpie[] = INCBIN_U8("graphics/pokemon/caterpie/back.4bpp.lz");
const u8 gMonShinyPalette_Caterpie[] = INCBIN_U8("graphics/pokemon/caterpie/shiny.gbapal.lz");
const u8 gMonIcon_Caterpie[] = INCBIN_U8("graphics/pokemon/caterpie/icon.4bpp");
const u8 gMonFootprint_Caterpie[] = INCBIN_U8("graphics/pokemon/caterpie/footprint.1bpp");
const u8 gMonFrontPic_Metapod[] = INCBIN_U8("graphics/pokemon/metapod/front.4bpp.lz");
const u8 gMonPalette_Metapod[] = INCBIN_U8("graphics/pokemon/metapod/normal.gbapal.lz");
const u8 gMonBackPic_Metapod[] = INCBIN_U8("graphics/pokemon/metapod/back.4bpp.lz");
const u8 gMonShinyPalette_Metapod[] = INCBIN_U8("graphics/pokemon/metapod/shiny.gbapal.lz");
const u8 gMonIcon_Metapod[] = INCBIN_U8("graphics/pokemon/metapod/icon.4bpp");
const u8 gMonFootprint_Metapod[] = INCBIN_U8("graphics/pokemon/metapod/footprint.1bpp");
const u8 gMonFrontPic_Butterfree[] = INCBIN_U8("graphics/pokemon/butterfree/front.4bpp.lz");
const u8 gMonPalette_Butterfree[] = INCBIN_U8("graphics/pokemon/butterfree/normal.gbapal.lz");
const u8 gMonBackPic_Butterfree[] = INCBIN_U8("graphics/pokemon/butterfree/back.4bpp.lz");
const u8 gMonShinyPalette_Butterfree[] = INCBIN_U8("graphics/pokemon/butterfree/shiny.gbapal.lz");
const u8 gMonIcon_Butterfree[] = INCBIN_U8("graphics/pokemon/butterfree/icon.4bpp");
const u8 gMonFootprint_Butterfree[] = INCBIN_U8("graphics/pokemon/butterfree/footprint.1bpp");
const u8 gMonFrontPic_Weedle[] = INCBIN_U8("graphics/pokemon/weedle/front.4bpp.lz");
const u8 gMonPalette_Weedle[] = INCBIN_U8("graphics/pokemon/weedle/normal.gbapal.lz");
const u8 gMonBackPic_Weedle[] = INCBIN_U8("graphics/pokemon/weedle/back.4bpp.lz");
const u8 gMonShinyPalette_Weedle[] = INCBIN_U8("graphics/pokemon/weedle/shiny.gbapal.lz");
const u8 gMonIcon_Weedle[] = INCBIN_U8("graphics/pokemon/weedle/icon.4bpp");
const u8 gMonFootprint_Weedle[] = INCBIN_U8("graphics/pokemon/weedle/footprint.1bpp");
const u8 gMonFrontPic_Kakuna[] = INCBIN_U8("graphics/pokemon/kakuna/front.4bpp.lz");
const u8 gMonPalette_Kakuna[] = INCBIN_U8("graphics/pokemon/kakuna/normal.gbapal.lz");
const u8 gMonBackPic_Kakuna[] = INCBIN_U8("graphics/pokemon/kakuna/back.4bpp.lz");
const u8 gMonShinyPalette_Kakuna[] = INCBIN_U8("graphics/pokemon/kakuna/shiny.gbapal.lz");
const u8 gMonIcon_Kakuna[] = INCBIN_U8("graphics/pokemon/kakuna/icon.4bpp");
const u8 gMonFootprint_Kakuna[] = INCBIN_U8("graphics/pokemon/kakuna/footprint.1bpp");
const u8 gMonFrontPic_Beedrill[] = INCBIN_U8("graphics/pokemon/beedrill/front.4bpp.lz");
const u8 gMonPalette_Beedrill[] = INCBIN_U8("graphics/pokemon/beedrill/normal.gbapal.lz");
const u8 gMonBackPic_Beedrill[] = INCBIN_U8("graphics/pokemon/beedrill/back.4bpp.lz");
const u8 gMonShinyPalette_Beedrill[] = INCBIN_U8("graphics/pokemon/beedrill/shiny.gbapal.lz");
const u8 gMonIcon_Beedrill[] = INCBIN_U8("graphics/pokemon/beedrill/icon.4bpp");
const u8 gMonFootprint_Beedrill[] = INCBIN_U8("graphics/pokemon/beedrill/footprint.1bpp");
const u8 gMonFrontPic_Pidgey[] = INCBIN_U8("graphics/pokemon/pidgey/front.4bpp.lz");
const u8 gMonPalette_Pidgey[] = INCBIN_U8("graphics/pokemon/pidgey/normal.gbapal.lz");
const u8 gMonBackPic_Pidgey[] = INCBIN_U8("graphics/pokemon/pidgey/back.4bpp.lz");
const u8 gMonShinyPalette_Pidgey[] = INCBIN_U8("graphics/pokemon/pidgey/shiny.gbapal.lz");
const u8 gMonIcon_Pidgey[] = INCBIN_U8("graphics/pokemon/pidgey/icon.4bpp");
const u8 gMonFootprint_Pidgey[] = INCBIN_U8("graphics/pokemon/pidgey/footprint.1bpp");
const u8 gMonFrontPic_Pidgeotto[] = INCBIN_U8("graphics/pokemon/pidgeotto/front.4bpp.lz");
const u8 gMonPalette_Pidgeotto[] = INCBIN_U8("graphics/pokemon/pidgeotto/normal.gbapal.lz");
const u8 gMonBackPic_Pidgeotto[] = INCBIN_U8("graphics/pokemon/pidgeotto/back.4bpp.lz");
const u8 gMonShinyPalette_Pidgeotto[] = INCBIN_U8("graphics/pokemon/pidgeotto/shiny.gbapal.lz");
const u8 gMonIcon_Pidgeotto[] = INCBIN_U8("graphics/pokemon/pidgeotto/icon.4bpp");
const u8 gMonFootprint_Pidgeotto[] = INCBIN_U8("graphics/pokemon/pidgeotto/footprint.1bpp");
const u8 gMonFrontPic_Pidgeot[] = INCBIN_U8("graphics/pokemon/pidgeot/front.4bpp.lz");
const u8 gMonPalette_Pidgeot[] = INCBIN_U8("graphics/pokemon/pidgeot/normal.gbapal.lz");
const u8 gMonBackPic_Pidgeot[] = INCBIN_U8("graphics/pokemon/pidgeot/back.4bpp.lz");
const u8 gMonShinyPalette_Pidgeot[] = INCBIN_U8("graphics/pokemon/pidgeot/shiny.gbapal.lz");
const u8 gMonIcon_Pidgeot[] = INCBIN_U8("graphics/pokemon/pidgeot/icon.4bpp");
const u8 gMonFootprint_Pidgeot[] = INCBIN_U8("graphics/pokemon/pidgeot/footprint.1bpp");
const u8 gMonFrontPic_Rattata[] = INCBIN_U8("graphics/pokemon/rattata/front.4bpp.lz");
const u8 gMonPalette_Rattata[] = INCBIN_U8("graphics/pokemon/rattata/normal.gbapal.lz");
const u8 gMonBackPic_Rattata[] = INCBIN_U8("graphics/pokemon/rattata/back.4bpp.lz");
const u8 gMonShinyPalette_Rattata[] = INCBIN_U8("graphics/pokemon/rattata/shiny.gbapal.lz");
const u8 gMonIcon_Rattata[] = INCBIN_U8("graphics/pokemon/rattata/icon.4bpp");
const u8 gMonFootprint_Rattata[] = INCBIN_U8("graphics/pokemon/rattata/footprint.1bpp");
const u8 gMonFrontPic_Raticate[] = INCBIN_U8("graphics/pokemon/raticate/front.4bpp.lz");
const u8 gMonPalette_Raticate[] = INCBIN_U8("graphics/pokemon/raticate/normal.gbapal.lz");
const u8 gMonBackPic_Raticate[] = INCBIN_U8("graphics/pokemon/raticate/back.4bpp.lz");
const u8 gMonShinyPalette_Raticate[] = INCBIN_U8("graphics/pokemon/raticate/shiny.gbapal.lz");
const u8 gMonIcon_Raticate[] = INCBIN_U8("graphics/pokemon/raticate/icon.4bpp");
const u8 gMonFootprint_Raticate[] = INCBIN_U8("graphics/pokemon/raticate/footprint.1bpp");
const u8 gMonFrontPic_Spearow[] = INCBIN_U8("graphics/pokemon/spearow/front.4bpp.lz");
const u8 gMonPalette_Spearow[] = INCBIN_U8("graphics/pokemon/spearow/normal.gbapal.lz");
const u8 gMonBackPic_Spearow[] = INCBIN_U8("graphics/pokemon/spearow/back.4bpp.lz");
const u8 gMonShinyPalette_Spearow[] = INCBIN_U8("graphics/pokemon/spearow/shiny.gbapal.lz");
const u8 gMonIcon_Spearow[] = INCBIN_U8("graphics/pokemon/spearow/icon.4bpp");
const u8 gMonFootprint_Spearow[] = INCBIN_U8("graphics/pokemon/spearow/footprint.1bpp");
const u8 gMonFrontPic_Fearow[] = INCBIN_U8("graphics/pokemon/fearow/front.4bpp.lz");
const u8 gMonPalette_Fearow[] = INCBIN_U8("graphics/pokemon/fearow/normal.gbapal.lz");
const u8 gMonBackPic_Fearow[] = INCBIN_U8("graphics/pokemon/fearow/back.4bpp.lz");
const u8 gMonShinyPalette_Fearow[] = INCBIN_U8("graphics/pokemon/fearow/shiny.gbapal.lz");
const u8 gMonIcon_Fearow[] = INCBIN_U8("graphics/pokemon/fearow/icon.4bpp");
const u8 gMonFootprint_Fearow[] = INCBIN_U8("graphics/pokemon/fearow/footprint.1bpp");
const u8 gMonFrontPic_Ekans[] = INCBIN_U8("graphics/pokemon/ekans/front.4bpp.lz");
const u8 gMonPalette_Ekans[] = INCBIN_U8("graphics/pokemon/ekans/normal.gbapal.lz");
const u8 gMonBackPic_Ekans[] = INCBIN_U8("graphics/pokemon/ekans/back.4bpp.lz");
const u8 gMonShinyPalette_Ekans[] = INCBIN_U8("graphics/pokemon/ekans/shiny.gbapal.lz");
const u8 gMonIcon_Ekans[] = INCBIN_U8("graphics/pokemon/ekans/icon.4bpp");
const u8 gMonFootprint_Ekans[] = INCBIN_U8("graphics/pokemon/ekans/footprint.1bpp");
const u8 gMonFrontPic_Arbok[] = INCBIN_U8("graphics/pokemon/arbok/front.4bpp.lz");
const u8 gMonPalette_Arbok[] = INCBIN_U8("graphics/pokemon/arbok/normal.gbapal.lz");
const u8 gMonBackPic_Arbok[] = INCBIN_U8("graphics/pokemon/arbok/back.4bpp.lz");
const u8 gMonShinyPalette_Arbok[] = INCBIN_U8("graphics/pokemon/arbok/shiny.gbapal.lz");
const u8 gMonIcon_Arbok[] = INCBIN_U8("graphics/pokemon/arbok/icon.4bpp");
const u8 gMonFootprint_Arbok[] = INCBIN_U8("graphics/pokemon/arbok/footprint.1bpp");
const u8 gMonFrontPic_Pikachu[] = INCBIN_U8("graphics/pokemon/pikachu/front.4bpp.lz");
const u8 gMonPalette_Pikachu[] = INCBIN_U8("graphics/pokemon/pikachu/normal.gbapal.lz");
const u8 gMonBackPic_Pikachu[] = INCBIN_U8("graphics/pokemon/pikachu/back.4bpp.lz");
const u8 gMonShinyPalette_Pikachu[] = INCBIN_U8("graphics/pokemon/pikachu/shiny.gbapal.lz");
const u8 gMonIcon_Pikachu[] = INCBIN_U8("graphics/pokemon/pikachu/icon.4bpp");
const u8 gMonFootprint_Pikachu[] = INCBIN_U8("graphics/pokemon/pikachu/footprint.1bpp");
const u8 gMonFrontPic_Raichu[] = INCBIN_U8("graphics/pokemon/raichu/front.4bpp.lz");
const u8 gMonPalette_Raichu[] = INCBIN_U8("graphics/pokemon/raichu/normal.gbapal.lz");
const u8 gMonBackPic_Raichu[] = INCBIN_U8("graphics/pokemon/raichu/back.4bpp.lz");
const u8 gMonShinyPalette_Raichu[] = INCBIN_U8("graphics/pokemon/raichu/shiny.gbapal.lz");
const u8 gMonIcon_Raichu[] = INCBIN_U8("graphics/pokemon/raichu/icon.4bpp");
const u8 gMonFootprint_Raichu[] = INCBIN_U8("graphics/pokemon/raichu/footprint.1bpp");
const u8 gMonFrontPic_Sandshrew[] = INCBIN_U8("graphics/pokemon/sandshrew/front.4bpp.lz");
const u8 gMonPalette_Sandshrew[] = INCBIN_U8("graphics/pokemon/sandshrew/normal.gbapal.lz");
const u8 gMonBackPic_Sandshrew[] = INCBIN_U8("graphics/pokemon/sandshrew/back.4bpp.lz");
const u8 gMonShinyPalette_Sandshrew[] = INCBIN_U8("graphics/pokemon/sandshrew/shiny.gbapal.lz");
const u8 gMonIcon_Sandshrew[] = INCBIN_U8("graphics/pokemon/sandshrew/icon.4bpp");
const u8 gMonFootprint_Sandshrew[] = INCBIN_U8("graphics/pokemon/sandshrew/footprint.1bpp");
const u8 gMonFrontPic_Sandslash[] = INCBIN_U8("graphics/pokemon/sandslash/front.4bpp.lz");
const u8 gMonPalette_Sandslash[] = INCBIN_U8("graphics/pokemon/sandslash/normal.gbapal.lz");
const u8 gMonBackPic_Sandslash[] = INCBIN_U8("graphics/pokemon/sandslash/back.4bpp.lz");
const u8 gMonShinyPalette_Sandslash[] = INCBIN_U8("graphics/pokemon/sandslash/shiny.gbapal.lz");
const u8 gMonIcon_Sandslash[] = INCBIN_U8("graphics/pokemon/sandslash/icon.4bpp");
const u8 gMonFootprint_Sandslash[] = INCBIN_U8("graphics/pokemon/sandslash/footprint.1bpp");
const u8 gMonFrontPic_NidoranF[] = INCBIN_U8("graphics/pokemon/nidoran_f/front.4bpp.lz");
const u8 gMonPalette_NidoranF[] = INCBIN_U8("graphics/pokemon/nidoran_f/normal.gbapal.lz");
const u8 gMonBackPic_NidoranF[] = INCBIN_U8("graphics/pokemon/nidoran_f/back.4bpp.lz");
const u8 gMonShinyPalette_NidoranF[] = INCBIN_U8("graphics/pokemon/nidoran_f/shiny.gbapal.lz");
const u8 gMonIcon_NidoranF[] = INCBIN_U8("graphics/pokemon/nidoran_f/icon.4bpp");
const u8 gMonFootprint_NidoranF[] = INCBIN_U8("graphics/pokemon/nidoran_f/footprint.1bpp");
const u8 gMonFrontPic_Nidorina[] = INCBIN_U8("graphics/pokemon/nidorina/front.4bpp.lz");
const u8 gMonPalette_Nidorina[] = INCBIN_U8("graphics/pokemon/nidorina/normal.gbapal.lz");
const u8 gMonBackPic_Nidorina[] = INCBIN_U8("graphics/pokemon/nidorina/back.4bpp.lz");
const u8 gMonShinyPalette_Nidorina[] = INCBIN_U8("graphics/pokemon/nidorina/shiny.gbapal.lz");
const u8 gMonIcon_Nidorina[] = INCBIN_U8("graphics/pokemon/nidorina/icon.4bpp");
const u8 gMonFootprint_Nidorina[] = INCBIN_U8("graphics/pokemon/nidorina/footprint.1bpp");
const u8 gMonFrontPic_Nidoqueen[] = INCBIN_U8("graphics/pokemon/nidoqueen/front.4bpp.lz");
const u8 gMonPalette_Nidoqueen[] = INCBIN_U8("graphics/pokemon/nidoqueen/normal.gbapal.lz");
const u8 gMonBackPic_Nidoqueen[] = INCBIN_U8("graphics/pokemon/nidoqueen/back.4bpp.lz");
const u8 gMonShinyPalette_Nidoqueen[] = INCBIN_U8("graphics/pokemon/nidoqueen/shiny.gbapal.lz");
const u8 gMonIcon_Nidoqueen[] = INCBIN_U8("graphics/pokemon/nidoqueen/icon.4bpp");
const u8 gMonFootprint_Nidoqueen[] = INCBIN_U8("graphics/pokemon/nidoqueen/footprint.1bpp");
const u8 gMonFrontPic_NidoranM[] = INCBIN_U8("graphics/pokemon/nidoran_m/front.4bpp.lz");
const u8 gMonPalette_NidoranM[] = INCBIN_U8("graphics/pokemon/nidoran_m/normal.gbapal.lz");
const u8 gMonBackPic_NidoranM[] = INCBIN_U8("graphics/pokemon/nidoran_m/back.4bpp.lz");
const u8 gMonShinyPalette_NidoranM[] = INCBIN_U8("graphics/pokemon/nidoran_m/shiny.gbapal.lz");
const u8 gMonIcon_NidoranM[] = INCBIN_U8("graphics/pokemon/nidoran_m/icon.4bpp");
const u8 gMonFootprint_NidoranM[] = INCBIN_U8("graphics/pokemon/nidoran_m/footprint.1bpp");
const u8 gMonFrontPic_Nidorino[] = INCBIN_U8("graphics/pokemon/nidorino/front.4bpp.lz");
const u8 gMonPalette_Nidorino[] = INCBIN_U8("graphics/pokemon/nidorino/normal.gbapal.lz");
const u8 gMonBackPic_Nidorino[] = INCBIN_U8("graphics/pokemon/nidorino/back.4bpp.lz");
const u8 gMonShinyPalette_Nidorino[] = INCBIN_U8("graphics/pokemon/nidorino/shiny.gbapal.lz");
const u8 gMonIcon_Nidorino[] = INCBIN_U8("graphics/pokemon/nidorino/icon.4bpp");
const u8 gMonFootprint_Nidorino[] = INCBIN_U8("graphics/pokemon/nidorino/footprint.1bpp");
const u8 gMonFrontPic_Nidoking[] = INCBIN_U8("graphics/pokemon/nidoking/front.4bpp.lz");
const u8 gMonPalette_Nidoking[] = INCBIN_U8("graphics/pokemon/nidoking/normal.gbapal.lz");
const u8 gMonBackPic_Nidoking[] = INCBIN_U8("graphics/pokemon/nidoking/back.4bpp.lz");
const u8 gMonShinyPalette_Nidoking[] = INCBIN_U8("graphics/pokemon/nidoking/shiny.gbapal.lz");
const u8 gMonIcon_Nidoking[] = INCBIN_U8("graphics/pokemon/nidoking/icon.4bpp");
const u8 gMonFootprint_Nidoking[] = INCBIN_U8("graphics/pokemon/nidoking/footprint.1bpp");
const u8 gMonFrontPic_Clefairy[] = INCBIN_U8("graphics/pokemon/clefairy/front.4bpp.lz");
const u8 gMonPalette_Clefairy[] = INCBIN_U8("graphics/pokemon/clefairy/normal.gbapal.lz");
const u8 gMonBackPic_Clefairy[] = INCBIN_U8("graphics/pokemon/clefairy/back.4bpp.lz");
const u8 gMonShinyPalette_Clefairy[] = INCBIN_U8("graphics/pokemon/clefairy/shiny.gbapal.lz");
const u8 gMonIcon_Clefairy[] = INCBIN_U8("graphics/pokemon/clefairy/icon.4bpp");
const u8 gMonFootprint_Clefairy[] = INCBIN_U8("graphics/pokemon/clefairy/footprint.1bpp");
const u8 gMonFrontPic_Clefable[] = INCBIN_U8("graphics/pokemon/clefable/front.4bpp.lz");
const u8 gMonPalette_Clefable[] = INCBIN_U8("graphics/pokemon/clefable/normal.gbapal.lz");
const u8 gMonBackPic_Clefable[] = INCBIN_U8("graphics/pokemon/clefable/back.4bpp.lz");
const u8 gMonShinyPalette_Clefable[] = INCBIN_U8("graphics/pokemon/clefable/shiny.gbapal.lz");
const u8 gMonIcon_Clefable[] = INCBIN_U8("graphics/pokemon/clefable/icon.4bpp");
const u8 gMonFootprint_Clefable[] = INCBIN_U8("graphics/pokemon/clefable/footprint.1bpp");
const u8 gMonFrontPic_Vulpix[] = INCBIN_U8("graphics/pokemon/vulpix/front.4bpp.lz");
const u8 gMonPalette_Vulpix[] = INCBIN_U8("graphics/pokemon/vulpix/normal.gbapal.lz");
const u8 gMonBackPic_Vulpix[] = INCBIN_U8("graphics/pokemon/vulpix/back.4bpp.lz");
const u8 gMonShinyPalette_Vulpix[] = INCBIN_U8("graphics/pokemon/vulpix/shiny.gbapal.lz");
const u8 gMonIcon_Vulpix[] = INCBIN_U8("graphics/pokemon/vulpix/icon.4bpp");
const u8 gMonFootprint_Vulpix[] = INCBIN_U8("graphics/pokemon/vulpix/footprint.1bpp");
const u8 gMonFrontPic_Ninetales[] = INCBIN_U8("graphics/pokemon/ninetales/front.4bpp.lz");
const u8 gMonPalette_Ninetales[] = INCBIN_U8("graphics/pokemon/ninetales/normal.gbapal.lz");
const u8 gMonBackPic_Ninetales[] = INCBIN_U8("graphics/pokemon/ninetales/back.4bpp.lz");
const u8 gMonShinyPalette_Ninetales[] = INCBIN_U8("graphics/pokemon/ninetales/shiny.gbapal.lz");
const u8 gMonIcon_Ninetales[] = INCBIN_U8("graphics/pokemon/ninetales/icon.4bpp");
const u8 gMonFootprint_Ninetales[] = INCBIN_U8("graphics/pokemon/ninetales/footprint.1bpp");
const u8 gMonFrontPic_Jigglypuff[] = INCBIN_U8("graphics/pokemon/jigglypuff/front.4bpp.lz");
const u8 gMonPalette_Jigglypuff[] = INCBIN_U8("graphics/pokemon/jigglypuff/normal.gbapal.lz");
const u8 gMonBackPic_Jigglypuff[] = INCBIN_U8("graphics/pokemon/jigglypuff/back.4bpp.lz");
const u8 gMonShinyPalette_Jigglypuff[] = INCBIN_U8("graphics/pokemon/jigglypuff/shiny.gbapal.lz");
const u8 gMonIcon_Jigglypuff[] = INCBIN_U8("graphics/pokemon/jigglypuff/icon.4bpp");
const u8 gMonFootprint_Jigglypuff[] = INCBIN_U8("graphics/pokemon/jigglypuff/footprint.1bpp");
const u8 gMonFrontPic_Wigglytuff[] = INCBIN_U8("graphics/pokemon/wigglytuff/front.4bpp.lz");
const u8 gMonPalette_Wigglytuff[] = INCBIN_U8("graphics/pokemon/wigglytuff/normal.gbapal.lz");
const u8 gMonBackPic_Wigglytuff[] = INCBIN_U8("graphics/pokemon/wigglytuff/back.4bpp.lz");
const u8 gMonShinyPalette_Wigglytuff[] = INCBIN_U8("graphics/pokemon/wigglytuff/shiny.gbapal.lz");
const u8 gMonIcon_Wigglytuff[] = INCBIN_U8("graphics/pokemon/wigglytuff/icon.4bpp");
const u8 gMonFootprint_Wigglytuff[] = INCBIN_U8("graphics/pokemon/wigglytuff/footprint.1bpp");
const u8 gMonFrontPic_Zubat[] = INCBIN_U8("graphics/pokemon/zubat/front.4bpp.lz");
const u8 gMonPalette_Zubat[] = INCBIN_U8("graphics/pokemon/zubat/normal.gbapal.lz");
const u8 gMonBackPic_Zubat[] = INCBIN_U8("graphics/pokemon/zubat/back.4bpp.lz");
const u8 gMonShinyPalette_Zubat[] = INCBIN_U8("graphics/pokemon/zubat/shiny.gbapal.lz");
const u8 gMonIcon_Zubat[] = INCBIN_U8("graphics/pokemon/zubat/icon.4bpp");
const u8 gMonFootprint_Zubat[] = INCBIN_U8("graphics/pokemon/zubat/footprint.1bpp");
const u8 gMonFrontPic_Golbat[] = INCBIN_U8("graphics/pokemon/golbat/front.4bpp.lz");
const u8 gMonPalette_Golbat[] = INCBIN_U8("graphics/pokemon/golbat/normal.gbapal.lz");
const u8 gMonBackPic_Golbat[] = INCBIN_U8("graphics/pokemon/golbat/back.4bpp.lz");
const u8 gMonShinyPalette_Golbat[] = INCBIN_U8("graphics/pokemon/golbat/shiny.gbapal.lz");
const u8 gMonIcon_Golbat[] = INCBIN_U8("graphics/pokemon/golbat/icon.4bpp");
const u8 gMonFootprint_Golbat[] = INCBIN_U8("graphics/pokemon/golbat/footprint.1bpp");
const u8 gMonFrontPic_Oddish[] = INCBIN_U8("graphics/pokemon/oddish/front.4bpp.lz");
const u8 gMonPalette_Oddish[] = INCBIN_U8("graphics/pokemon/oddish/normal.gbapal.lz");
const u8 gMonBackPic_Oddish[] = INCBIN_U8("graphics/pokemon/oddish/back.4bpp.lz");
const u8 gMonShinyPalette_Oddish[] = INCBIN_U8("graphics/pokemon/oddish/shiny.gbapal.lz");
const u8 gMonIcon_Oddish[] = INCBIN_U8("graphics/pokemon/oddish/icon.4bpp");
const u8 gMonFootprint_Oddish[] = INCBIN_U8("graphics/pokemon/oddish/footprint.1bpp");
const u8 gMonFrontPic_Gloom[] = INCBIN_U8("graphics/pokemon/gloom/front.4bpp.lz");
const u8 gMonPalette_Gloom[] = INCBIN_U8("graphics/pokemon/gloom/normal.gbapal.lz");
const u8 gMonBackPic_Gloom[] = INCBIN_U8("graphics/pokemon/gloom/back.4bpp.lz");
const u8 gMonShinyPalette_Gloom[] = INCBIN_U8("graphics/pokemon/gloom/shiny.gbapal.lz");
const u8 gMonIcon_Gloom[] = INCBIN_U8("graphics/pokemon/gloom/icon.4bpp");
const u8 gMonFootprint_Gloom[] = INCBIN_U8("graphics/pokemon/gloom/footprint.1bpp");
const u8 gMonFrontPic_Vileplume[] = INCBIN_U8("graphics/pokemon/vileplume/front.4bpp.lz");
const u8 gMonPalette_Vileplume[] = INCBIN_U8("graphics/pokemon/vileplume/normal.gbapal.lz");
const u8 gMonBackPic_Vileplume[] = INCBIN_U8("graphics/pokemon/vileplume/back.4bpp.lz");
const u8 gMonShinyPalette_Vileplume[] = INCBIN_U8("graphics/pokemon/vileplume/shiny.gbapal.lz");
const u8 gMonIcon_Vileplume[] = INCBIN_U8("graphics/pokemon/vileplume/icon.4bpp");
const u8 gMonFootprint_Vileplume[] = INCBIN_U8("graphics/pokemon/vileplume/footprint.1bpp");
const u8 gMonFrontPic_Paras[] = INCBIN_U8("graphics/pokemon/paras/front.4bpp.lz");
const u8 gMonPalette_Paras[] = INCBIN_U8("graphics/pokemon/paras/normal.gbapal.lz");
const u8 gMonBackPic_Paras[] = INCBIN_U8("graphics/pokemon/paras/back.4bpp.lz");
const u8 gMonShinyPalette_Paras[] = INCBIN_U8("graphics/pokemon/paras/shiny.gbapal.lz");
const u8 gMonIcon_Paras[] = INCBIN_U8("graphics/pokemon/paras/icon.4bpp");
const u8 gMonFootprint_Paras[] = INCBIN_U8("graphics/pokemon/paras/footprint.1bpp");
const u8 gMonFrontPic_Parasect[] = INCBIN_U8("graphics/pokemon/parasect/front.4bpp.lz");
const u8 gMonPalette_Parasect[] = INCBIN_U8("graphics/pokemon/parasect/normal.gbapal.lz");
const u8 gMonBackPic_Parasect[] = INCBIN_U8("graphics/pokemon/parasect/back.4bpp.lz");
const u8 gMonShinyPalette_Parasect[] = INCBIN_U8("graphics/pokemon/parasect/shiny.gbapal.lz");
const u8 gMonIcon_Parasect[] = INCBIN_U8("graphics/pokemon/parasect/icon.4bpp");
const u8 gMonFootprint_Parasect[] = INCBIN_U8("graphics/pokemon/parasect/footprint.1bpp");
const u8 gMonFrontPic_Venonat[] = INCBIN_U8("graphics/pokemon/venonat/front.4bpp.lz");
const u8 gMonPalette_Venonat[] = INCBIN_U8("graphics/pokemon/venonat/normal.gbapal.lz");
const u8 gMonBackPic_Venonat[] = INCBIN_U8("graphics/pokemon/venonat/back.4bpp.lz");
const u8 gMonShinyPalette_Venonat[] = INCBIN_U8("graphics/pokemon/venonat/shiny.gbapal.lz");
const u8 gMonIcon_Venonat[] = INCBIN_U8("graphics/pokemon/venonat/icon.4bpp");
const u8 gMonFootprint_Venonat[] = INCBIN_U8("graphics/pokemon/venonat/footprint.1bpp");
const u8 gMonFrontPic_Venomoth[] = INCBIN_U8("graphics/pokemon/venomoth/front.4bpp.lz");
const u8 gMonPalette_Venomoth[] = INCBIN_U8("graphics/pokemon/venomoth/normal.gbapal.lz");
const u8 gMonBackPic_Venomoth[] = INCBIN_U8("graphics/pokemon/venomoth/back.4bpp.lz");
const u8 gMonShinyPalette_Venomoth[] = INCBIN_U8("graphics/pokemon/venomoth/shiny.gbapal.lz");
const u8 gMonIcon_Venomoth[] = INCBIN_U8("graphics/pokemon/venomoth/icon.4bpp");
const u8 gMonFootprint_Venomoth[] = INCBIN_U8("graphics/pokemon/venomoth/footprint.1bpp");
const u8 gMonFrontPic_Diglett[] = INCBIN_U8("graphics/pokemon/diglett/front.4bpp.lz");
const u8 gMonPalette_Diglett[] = INCBIN_U8("graphics/pokemon/diglett/normal.gbapal.lz");
const u8 gMonBackPic_Diglett[] = INCBIN_U8("graphics/pokemon/diglett/back.4bpp.lz");
const u8 gMonShinyPalette_Diglett[] = INCBIN_U8("graphics/pokemon/diglett/shiny.gbapal.lz");
const u8 gMonIcon_Diglett[] = INCBIN_U8("graphics/pokemon/diglett/icon.4bpp");
const u8 gMonFootprint_Diglett[] = INCBIN_U8("graphics/pokemon/diglett/footprint.1bpp");
const u8 gMonFrontPic_Dugtrio[] = INCBIN_U8("graphics/pokemon/dugtrio/front.4bpp.lz");
const u8 gMonPalette_Dugtrio[] = INCBIN_U8("graphics/pokemon/dugtrio/normal.gbapal.lz");
const u8 gMonBackPic_Dugtrio[] = INCBIN_U8("graphics/pokemon/dugtrio/back.4bpp.lz");
const u8 gMonShinyPalette_Dugtrio[] = INCBIN_U8("graphics/pokemon/dugtrio/shiny.gbapal.lz");
const u8 gMonIcon_Dugtrio[] = INCBIN_U8("graphics/pokemon/dugtrio/icon.4bpp");
const u8 gMonFootprint_Dugtrio[] = INCBIN_U8("graphics/pokemon/dugtrio/footprint.1bpp");
const u8 gMonFrontPic_Meowth[] = INCBIN_U8("graphics/pokemon/meowth/front.4bpp.lz");
const u8 gMonPalette_Meowth[] = INCBIN_U8("graphics/pokemon/meowth/normal.gbapal.lz");
const u8 gMonBackPic_Meowth[] = INCBIN_U8("graphics/pokemon/meowth/back.4bpp.lz");
const u8 gMonShinyPalette_Meowth[] = INCBIN_U8("graphics/pokemon/meowth/shiny.gbapal.lz");
const u8 gMonIcon_Meowth[] = INCBIN_U8("graphics/pokemon/meowth/icon.4bpp");
const u8 gMonFootprint_Meowth[] = INCBIN_U8("graphics/pokemon/meowth/footprint.1bpp");
const u8 gMonFrontPic_Persian[] = INCBIN_U8("graphics/pokemon/persian/front.4bpp.lz");
const u8 gMonPalette_Persian[] = INCBIN_U8("graphics/pokemon/persian/normal.gbapal.lz");
const u8 gMonBackPic_Persian[] = INCBIN_U8("graphics/pokemon/persian/back.4bpp.lz");
const u8 gMonShinyPalette_Persian[] = INCBIN_U8("graphics/pokemon/persian/shiny.gbapal.lz");
const u8 gMonIcon_Persian[] = INCBIN_U8("graphics/pokemon/persian/icon.4bpp");
const u8 gMonFootprint_Persian[] = INCBIN_U8("graphics/pokemon/persian/footprint.1bpp");
const u8 gMonFrontPic_Psyduck[] = INCBIN_U8("graphics/pokemon/psyduck/front.4bpp.lz");
const u8 gMonPalette_Psyduck[] = INCBIN_U8("graphics/pokemon/psyduck/normal.gbapal.lz");
const u8 gMonBackPic_Psyduck[] = INCBIN_U8("graphics/pokemon/psyduck/back.4bpp.lz");
const u8 gMonShinyPalette_Psyduck[] = INCBIN_U8("graphics/pokemon/psyduck/shiny.gbapal.lz");
const u8 gMonIcon_Psyduck[] = INCBIN_U8("graphics/pokemon/psyduck/icon.4bpp");
const u8 gMonFootprint_Psyduck[] = INCBIN_U8("graphics/pokemon/psyduck/footprint.1bpp");
const u8 gMonFrontPic_Golduck[] = INCBIN_U8("graphics/pokemon/golduck/front.4bpp.lz");
const u8 gMonPalette_Golduck[] = INCBIN_U8("graphics/pokemon/golduck/normal.gbapal.lz");
const u8 gMonBackPic_Golduck[] = INCBIN_U8("graphics/pokemon/golduck/back.4bpp.lz");
const u8 gMonShinyPalette_Golduck[] = INCBIN_U8("graphics/pokemon/golduck/shiny.gbapal.lz");
const u8 gMonIcon_Golduck[] = INCBIN_U8("graphics/pokemon/golduck/icon.4bpp");
const u8 gMonFootprint_Golduck[] = INCBIN_U8("graphics/pokemon/golduck/footprint.1bpp");
const u8 gMonFrontPic_Mankey[] = INCBIN_U8("graphics/pokemon/mankey/front.4bpp.lz");
const u8 gMonPalette_Mankey[] = INCBIN_U8("graphics/pokemon/mankey/normal.gbapal.lz");
const u8 gMonBackPic_Mankey[] = INCBIN_U8("graphics/pokemon/mankey/back.4bpp.lz");
const u8 gMonShinyPalette_Mankey[] = INCBIN_U8("graphics/pokemon/mankey/shiny.gbapal.lz");
const u8 gMonIcon_Mankey[] = INCBIN_U8("graphics/pokemon/mankey/icon.4bpp");
const u8 gMonFootprint_Mankey[] = INCBIN_U8("graphics/pokemon/mankey/footprint.1bpp");
const u8 gMonFrontPic_Primeape[] = INCBIN_U8("graphics/pokemon/primeape/front.4bpp.lz");
const u8 gMonPalette_Primeape[] = INCBIN_U8("graphics/pokemon/primeape/normal.gbapal.lz");
const u8 gMonBackPic_Primeape[] = INCBIN_U8("graphics/pokemon/primeape/back.4bpp.lz");
const u8 gMonShinyPalette_Primeape[] = INCBIN_U8("graphics/pokemon/primeape/shiny.gbapal.lz");
const u8 gMonIcon_Primeape[] = INCBIN_U8("graphics/pokemon/primeape/icon.4bpp");
const u8 gMonFootprint_Primeape[] = INCBIN_U8("graphics/pokemon/primeape/footprint.1bpp");
const u8 gMonFrontPic_Growlithe[] = INCBIN_U8("graphics/pokemon/growlithe/front.4bpp.lz");
const u8 gMonPalette_Growlithe[] = INCBIN_U8("graphics/pokemon/growlithe/normal.gbapal.lz");
const u8 gMonBackPic_Growlithe[] = INCBIN_U8("graphics/pokemon/growlithe/back.4bpp.lz");
const u8 gMonShinyPalette_Growlithe[] = INCBIN_U8("graphics/pokemon/growlithe/shiny.gbapal.lz");
const u8 gMonIcon_Growlithe[] = INCBIN_U8("graphics/pokemon/growlithe/icon.4bpp");
const u8 gMonFootprint_Growlithe[] = INCBIN_U8("graphics/pokemon/growlithe/footprint.1bpp");
const u8 gMonFrontPic_Arcanine[] = INCBIN_U8("graphics/pokemon/arcanine/front.4bpp.lz");
const u8 gMonPalette_Arcanine[] = INCBIN_U8("graphics/pokemon/arcanine/normal.gbapal.lz");
const u8 gMonBackPic_Arcanine[] = INCBIN_U8("graphics/pokemon/arcanine/back.4bpp.lz");
const u8 gMonShinyPalette_Arcanine[] = INCBIN_U8("graphics/pokemon/arcanine/shiny.gbapal.lz");
const u8 gMonIcon_Arcanine[] = INCBIN_U8("graphics/pokemon/arcanine/icon.4bpp");
const u8 gMonFootprint_Arcanine[] = INCBIN_U8("graphics/pokemon/arcanine/footprint.1bpp");
const u8 gMonFrontPic_Poliwag[] = INCBIN_U8("graphics/pokemon/poliwag/front.4bpp.lz");
const u8 gMonPalette_Poliwag[] = INCBIN_U8("graphics/pokemon/poliwag/normal.gbapal.lz");
const u8 gMonBackPic_Poliwag[] = INCBIN_U8("graphics/pokemon/poliwag/back.4bpp.lz");
const u8 gMonShinyPalette_Poliwag[] = INCBIN_U8("graphics/pokemon/poliwag/shiny.gbapal.lz");
const u8 gMonIcon_Poliwag[] = INCBIN_U8("graphics/pokemon/poliwag/icon.4bpp");
const u8 gMonFootprint_Poliwag[] = INCBIN_U8("graphics/pokemon/poliwag/footprint.1bpp");
const u8 gMonFrontPic_Poliwhirl[] = INCBIN_U8("graphics/pokemon/poliwhirl/front.4bpp.lz");
const u8 gMonPalette_Poliwhirl[] = INCBIN_U8("graphics/pokemon/poliwhirl/normal.gbapal.lz");
const u8 gMonBackPic_Poliwhirl[] = INCBIN_U8("graphics/pokemon/poliwhirl/back.4bpp.lz");
const u8 gMonShinyPalette_Poliwhirl[] = INCBIN_U8("graphics/pokemon/poliwhirl/shiny.gbapal.lz");
const u8 gMonIcon_Poliwhirl[] = INCBIN_U8("graphics/pokemon/poliwhirl/icon.4bpp");
const u8 gMonFootprint_Poliwhirl[] = INCBIN_U8("graphics/pokemon/poliwhirl/footprint.1bpp");
const u8 gMonFrontPic_Poliwrath[] = INCBIN_U8("graphics/pokemon/poliwrath/front.4bpp.lz");
const u8 gMonPalette_Poliwrath[] = INCBIN_U8("graphics/pokemon/poliwrath/normal.gbapal.lz");
const u8 gMonBackPic_Poliwrath[] = INCBIN_U8("graphics/pokemon/poliwrath/back.4bpp.lz");
const u8 gMonShinyPalette_Poliwrath[] = INCBIN_U8("graphics/pokemon/poliwrath/shiny.gbapal.lz");
const u8 gMonIcon_Poliwrath[] = INCBIN_U8("graphics/pokemon/poliwrath/icon.4bpp");
const u8 gMonFootprint_Poliwrath[] = INCBIN_U8("graphics/pokemon/poliwrath/footprint.1bpp");
const u8 gMonFrontPic_Abra[] = INCBIN_U8("graphics/pokemon/abra/front.4bpp.lz");
const u8 gMonPalette_Abra[] = INCBIN_U8("graphics/pokemon/abra/normal.gbapal.lz");
const u8 gMonBackPic_Abra[] = INCBIN_U8("graphics/pokemon/abra/back.4bpp.lz");
const u8 gMonShinyPalette_Abra[] = INCBIN_U8("graphics/pokemon/abra/shiny.gbapal.lz");
const u8 gMonIcon_Abra[] = INCBIN_U8("graphics/pokemon/abra/icon.4bpp");
const u8 gMonFootprint_Abra[] = INCBIN_U8("graphics/pokemon/abra/footprint.1bpp");
const u8 gMonFrontPic_Kadabra[] = INCBIN_U8("graphics/pokemon/kadabra/front.4bpp.lz");
const u8 gMonPalette_Kadabra[] = INCBIN_U8("graphics/pokemon/kadabra/normal.gbapal.lz");
const u8 gMonBackPic_Kadabra[] = INCBIN_U8("graphics/pokemon/kadabra/back.4bpp.lz");
const u8 gMonShinyPalette_Kadabra[] = INCBIN_U8("graphics/pokemon/kadabra/shiny.gbapal.lz");
const u8 gMonIcon_Kadabra[] = INCBIN_U8("graphics/pokemon/kadabra/icon.4bpp");
const u8 gMonFootprint_Kadabra[] = INCBIN_U8("graphics/pokemon/kadabra/footprint.1bpp");
const u8 gMonFrontPic_Alakazam[] = INCBIN_U8("graphics/pokemon/alakazam/front.4bpp.lz");
const u8 gMonPalette_Alakazam[] = INCBIN_U8("graphics/pokemon/alakazam/normal.gbapal.lz");
const u8 gMonBackPic_Alakazam[] = INCBIN_U8("graphics/pokemon/alakazam/back.4bpp.lz");
const u8 gMonShinyPalette_Alakazam[] = INCBIN_U8("graphics/pokemon/alakazam/shiny.gbapal.lz");
const u8 gMonIcon_Alakazam[] = INCBIN_U8("graphics/pokemon/alakazam/icon.4bpp");
const u8 gMonFootprint_Alakazam[] = INCBIN_U8("graphics/pokemon/alakazam/footprint.1bpp");
const u8 gMonFrontPic_Machop[] = INCBIN_U8("graphics/pokemon/machop/front.4bpp.lz");
const u8 gMonPalette_Machop[] = INCBIN_U8("graphics/pokemon/machop/normal.gbapal.lz");
const u8 gMonBackPic_Machop[] = INCBIN_U8("graphics/pokemon/machop/back.4bpp.lz");
const u8 gMonShinyPalette_Machop[] = INCBIN_U8("graphics/pokemon/machop/shiny.gbapal.lz");
const u8 gMonIcon_Machop[] = INCBIN_U8("graphics/pokemon/machop/icon.4bpp");
const u8 gMonFootprint_Machop[] = INCBIN_U8("graphics/pokemon/machop/footprint.1bpp");
const u8 gMonFrontPic_Machoke[] = INCBIN_U8("graphics/pokemon/machoke/front.4bpp.lz");
const u8 gMonPalette_Machoke[] = INCBIN_U8("graphics/pokemon/machoke/normal.gbapal.lz");
const u8 gMonBackPic_Machoke[] = INCBIN_U8("graphics/pokemon/machoke/back.4bpp.lz");
const u8 gMonShinyPalette_Machoke[] = INCBIN_U8("graphics/pokemon/machoke/shiny.gbapal.lz");
const u8 gMonIcon_Machoke[] = INCBIN_U8("graphics/pokemon/machoke/icon.4bpp");
const u8 gMonFootprint_Machoke[] = INCBIN_U8("graphics/pokemon/machoke/footprint.1bpp");
const u8 gMonFrontPic_Machamp[] = INCBIN_U8("graphics/pokemon/machamp/front.4bpp.lz");
const u8 gMonPalette_Machamp[] = INCBIN_U8("graphics/pokemon/machamp/normal.gbapal.lz");
const u8 gMonBackPic_Machamp[] = INCBIN_U8("graphics/pokemon/machamp/back.4bpp.lz");
const u8 gMonShinyPalette_Machamp[] = INCBIN_U8("graphics/pokemon/machamp/shiny.gbapal.lz");
const u8 gMonIcon_Machamp[] = INCBIN_U8("graphics/pokemon/machamp/icon.4bpp");
const u8 gMonFootprint_Machamp[] = INCBIN_U8("graphics/pokemon/machamp/footprint.1bpp");
const u8 gMonFrontPic_Bellsprout[] = INCBIN_U8("graphics/pokemon/bellsprout/front.4bpp.lz");
const u8 gMonPalette_Bellsprout[] = INCBIN_U8("graphics/pokemon/bellsprout/normal.gbapal.lz");
const u8 gMonBackPic_Bellsprout[] = INCBIN_U8("graphics/pokemon/bellsprout/back.4bpp.lz");
const u8 gMonShinyPalette_Bellsprout[] = INCBIN_U8("graphics/pokemon/bellsprout/shiny.gbapal.lz");
const u8 gMonIcon_Bellsprout[] = INCBIN_U8("graphics/pokemon/bellsprout/icon.4bpp");
const u8 gMonFootprint_Bellsprout[] = INCBIN_U8("graphics/pokemon/bellsprout/footprint.1bpp");
const u8 gMonFrontPic_Weepinbell[] = INCBIN_U8("graphics/pokemon/weepinbell/front.4bpp.lz");
const u8 gMonPalette_Weepinbell[] = INCBIN_U8("graphics/pokemon/weepinbell/normal.gbapal.lz");
const u8 gMonBackPic_Weepinbell[] = INCBIN_U8("graphics/pokemon/weepinbell/back.4bpp.lz");
const u8 gMonShinyPalette_Weepinbell[] = INCBIN_U8("graphics/pokemon/weepinbell/shiny.gbapal.lz");
const u8 gMonIcon_Weepinbell[] = INCBIN_U8("graphics/pokemon/weepinbell/icon.4bpp");
const u8 gMonFootprint_Weepinbell[] = INCBIN_U8("graphics/pokemon/weepinbell/footprint.1bpp");
const u8 gMonFrontPic_Victreebel[] = INCBIN_U8("graphics/pokemon/victreebel/front.4bpp.lz");
const u8 gMonPalette_Victreebel[] = INCBIN_U8("graphics/pokemon/victreebel/normal.gbapal.lz");
const u8 gMonBackPic_Victreebel[] = INCBIN_U8("graphics/pokemon/victreebel/back.4bpp.lz");
const u8 gMonShinyPalette_Victreebel[] = INCBIN_U8("graphics/pokemon/victreebel/shiny.gbapal.lz");
const u8 gMonIcon_Victreebel[] = INCBIN_U8("graphics/pokemon/victreebel/icon.4bpp");
const u8 gMonFootprint_Victreebel[] = INCBIN_U8("graphics/pokemon/victreebel/footprint.1bpp");
const u8 gMonFrontPic_Tentacool[] = INCBIN_U8("graphics/pokemon/tentacool/front.4bpp.lz");
const u8 gMonPalette_Tentacool[] = INCBIN_U8("graphics/pokemon/tentacool/normal.gbapal.lz");
const u8 gMonBackPic_Tentacool[] = INCBIN_U8("graphics/pokemon/tentacool/back.4bpp.lz");
const u8 gMonShinyPalette_Tentacool[] = INCBIN_U8("graphics/pokemon/tentacool/shiny.gbapal.lz");
const u8 gMonIcon_Tentacool[] = INCBIN_U8("graphics/pokemon/tentacool/icon.4bpp");
const u8 gMonFootprint_Tentacool[] = INCBIN_U8("graphics/pokemon/tentacool/footprint.1bpp");
const u8 gMonFrontPic_Tentacruel[] = INCBIN_U8("graphics/pokemon/tentacruel/front.4bpp.lz");
const u8 gMonPalette_Tentacruel[] = INCBIN_U8("graphics/pokemon/tentacruel/normal.gbapal.lz");
const u8 gMonBackPic_Tentacruel[] = INCBIN_U8("graphics/pokemon/tentacruel/back.4bpp.lz");
const u8 gMonShinyPalette_Tentacruel[] = INCBIN_U8("graphics/pokemon/tentacruel/shiny.gbapal.lz");
const u8 gMonIcon_Tentacruel[] = INCBIN_U8("graphics/pokemon/tentacruel/icon.4bpp");
const u8 gMonFootprint_Tentacruel[] = INCBIN_U8("graphics/pokemon/tentacruel/footprint.1bpp");
const u8 gMonFrontPic_Geodude[] = INCBIN_U8("graphics/pokemon/geodude/front.4bpp.lz");
const u8 gMonPalette_Geodude[] = INCBIN_U8("graphics/pokemon/geodude/normal.gbapal.lz");
const u8 gMonBackPic_Geodude[] = INCBIN_U8("graphics/pokemon/geodude/back.4bpp.lz");
const u8 gMonShinyPalette_Geodude[] = INCBIN_U8("graphics/pokemon/geodude/shiny.gbapal.lz");
const u8 gMonIcon_Geodude[] = INCBIN_U8("graphics/pokemon/geodude/icon.4bpp");
const u8 gMonFootprint_Geodude[] = INCBIN_U8("graphics/pokemon/geodude/footprint.1bpp");
const u8 gMonFrontPic_Graveler[] = INCBIN_U8("graphics/pokemon/graveler/front.4bpp.lz");
const u8 gMonPalette_Graveler[] = INCBIN_U8("graphics/pokemon/graveler/normal.gbapal.lz");
const u8 gMonBackPic_Graveler[] = INCBIN_U8("graphics/pokemon/graveler/back.4bpp.lz");
const u8 gMonShinyPalette_Graveler[] = INCBIN_U8("graphics/pokemon/graveler/shiny.gbapal.lz");
const u8 gMonIcon_Graveler[] = INCBIN_U8("graphics/pokemon/graveler/icon.4bpp");
const u8 gMonFootprint_Graveler[] = INCBIN_U8("graphics/pokemon/graveler/footprint.1bpp");
const u8 gMonFrontPic_Golem[] = INCBIN_U8("graphics/pokemon/golem/front.4bpp.lz");
const u8 gMonPalette_Golem[] = INCBIN_U8("graphics/pokemon/golem/normal.gbapal.lz");
const u8 gMonBackPic_Golem[] = INCBIN_U8("graphics/pokemon/golem/back.4bpp.lz");
const u8 gMonShinyPalette_Golem[] = INCBIN_U8("graphics/pokemon/golem/shiny.gbapal.lz");
const u8 gMonIcon_Golem[] = INCBIN_U8("graphics/pokemon/golem/icon.4bpp");
const u8 gMonFootprint_Golem[] = INCBIN_U8("graphics/pokemon/golem/footprint.1bpp");
const u8 gMonFrontPic_Ponyta[] = INCBIN_U8("graphics/pokemon/ponyta/front.4bpp.lz");
const u8 gMonPalette_Ponyta[] = INCBIN_U8("graphics/pokemon/ponyta/normal.gbapal.lz");
const u8 gMonBackPic_Ponyta[] = INCBIN_U8("graphics/pokemon/ponyta/back.4bpp.lz");
const u8 gMonShinyPalette_Ponyta[] = INCBIN_U8("graphics/pokemon/ponyta/shiny.gbapal.lz");
const u8 gMonIcon_Ponyta[] = INCBIN_U8("graphics/pokemon/ponyta/icon.4bpp");
const u8 gMonFootprint_Ponyta[] = INCBIN_U8("graphics/pokemon/ponyta/footprint.1bpp");
const u8 gMonFrontPic_Rapidash[] = INCBIN_U8("graphics/pokemon/rapidash/front.4bpp.lz");
const u8 gMonPalette_Rapidash[] = INCBIN_U8("graphics/pokemon/rapidash/normal.gbapal.lz");
const u8 gMonBackPic_Rapidash[] = INCBIN_U8("graphics/pokemon/rapidash/back.4bpp.lz");
const u8 gMonShinyPalette_Rapidash[] = INCBIN_U8("graphics/pokemon/rapidash/shiny.gbapal.lz");
const u8 gMonIcon_Rapidash[] = INCBIN_U8("graphics/pokemon/rapidash/icon.4bpp");
const u8 gMonFootprint_Rapidash[] = INCBIN_U8("graphics/pokemon/rapidash/footprint.1bpp");
const u8 gMonFrontPic_Slowpoke[] = INCBIN_U8("graphics/pokemon/slowpoke/front.4bpp.lz");
const u8 gMonPalette_Slowpoke[] = INCBIN_U8("graphics/pokemon/slowpoke/normal.gbapal.lz");
const u8 gMonBackPic_Slowpoke[] = INCBIN_U8("graphics/pokemon/slowpoke/back.4bpp.lz");
const u8 gMonShinyPalette_Slowpoke[] = INCBIN_U8("graphics/pokemon/slowpoke/shiny.gbapal.lz");
const u8 gMonIcon_Slowpoke[] = INCBIN_U8("graphics/pokemon/slowpoke/icon.4bpp");
const u8 gMonFootprint_Slowpoke[] = INCBIN_U8("graphics/pokemon/slowpoke/footprint.1bpp");
const u8 gMonFrontPic_Slowbro[] = INCBIN_U8("graphics/pokemon/slowbro/front.4bpp.lz");
const u8 gMonPalette_Slowbro[] = INCBIN_U8("graphics/pokemon/slowbro/normal.gbapal.lz");
const u8 gMonBackPic_Slowbro[] = INCBIN_U8("graphics/pokemon/slowbro/back.4bpp.lz");
const u8 gMonShinyPalette_Slowbro[] = INCBIN_U8("graphics/pokemon/slowbro/shiny.gbapal.lz");
const u8 gMonIcon_Slowbro[] = INCBIN_U8("graphics/pokemon/slowbro/icon.4bpp");
const u8 gMonFootprint_Slowbro[] = INCBIN_U8("graphics/pokemon/slowbro/footprint.1bpp");
const u8 gMonFrontPic_Magnemite[] = INCBIN_U8("graphics/pokemon/magnemite/front.4bpp.lz");
const u8 gMonPalette_Magnemite[] = INCBIN_U8("graphics/pokemon/magnemite/normal.gbapal.lz");
const u8 gMonBackPic_Magnemite[] = INCBIN_U8("graphics/pokemon/magnemite/back.4bpp.lz");
const u8 gMonShinyPalette_Magnemite[] = INCBIN_U8("graphics/pokemon/magnemite/shiny.gbapal.lz");
const u8 gMonIcon_Magnemite[] = INCBIN_U8("graphics/pokemon/magnemite/icon.4bpp");
const u8 gMonFootprint_Magnemite[] = INCBIN_U8("graphics/pokemon/magnemite/footprint.1bpp");
const u8 gMonFrontPic_Magneton[] = INCBIN_U8("graphics/pokemon/magneton/front.4bpp.lz");
const u8 gMonPalette_Magneton[] = INCBIN_U8("graphics/pokemon/magneton/normal.gbapal.lz");
const u8 gMonBackPic_Magneton[] = INCBIN_U8("graphics/pokemon/magneton/back.4bpp.lz");
const u8 gMonShinyPalette_Magneton[] = INCBIN_U8("graphics/pokemon/magneton/shiny.gbapal.lz");
const u8 gMonIcon_Magneton[] = INCBIN_U8("graphics/pokemon/magneton/icon.4bpp");
const u8 gMonFootprint_Magneton[] = INCBIN_U8("graphics/pokemon/magneton/footprint.1bpp");
const u8 gMonFrontPic_Farfetchd[] = INCBIN_U8("graphics/pokemon/farfetchd/front.4bpp.lz");
const u8 gMonPalette_Farfetchd[] = INCBIN_U8("graphics/pokemon/farfetchd/normal.gbapal.lz");
const u8 gMonBackPic_Farfetchd[] = INCBIN_U8("graphics/pokemon/farfetchd/back.4bpp.lz");
const u8 gMonShinyPalette_Farfetchd[] = INCBIN_U8("graphics/pokemon/farfetchd/shiny.gbapal.lz");
const u8 gMonIcon_Farfetchd[] = INCBIN_U8("graphics/pokemon/farfetchd/icon.4bpp");
const u8 gMonFootprint_Farfetchd[] = INCBIN_U8("graphics/pokemon/farfetchd/footprint.1bpp");
const u8 gMonFrontPic_Doduo[] = INCBIN_U8("graphics/pokemon/doduo/front.4bpp.lz");
const u8 gMonPalette_Doduo[] = INCBIN_U8("graphics/pokemon/doduo/normal.gbapal.lz");
const u8 gMonBackPic_Doduo[] = INCBIN_U8("graphics/pokemon/doduo/back.4bpp.lz");
const u8 gMonShinyPalette_Doduo[] = INCBIN_U8("graphics/pokemon/doduo/shiny.gbapal.lz");
const u8 gMonIcon_Doduo[] = INCBIN_U8("graphics/pokemon/doduo/icon.4bpp");
const u8 gMonFootprint_Doduo[] = INCBIN_U8("graphics/pokemon/doduo/footprint.1bpp");
const u8 gMonFrontPic_Dodrio[] = INCBIN_U8("graphics/pokemon/dodrio/front.4bpp.lz");
const u8 gMonPalette_Dodrio[] = INCBIN_U8("graphics/pokemon/dodrio/normal.gbapal.lz");
const u8 gMonBackPic_Dodrio[] = INCBIN_U8("graphics/pokemon/dodrio/back.4bpp.lz");
const u8 gMonShinyPalette_Dodrio[] = INCBIN_U8("graphics/pokemon/dodrio/shiny.gbapal.lz");
const u8 gMonIcon_Dodrio[] = INCBIN_U8("graphics/pokemon/dodrio/icon.4bpp");
const u8 gMonFootprint_Dodrio[] = INCBIN_U8("graphics/pokemon/dodrio/footprint.1bpp");
const u8 gMonFrontPic_Seel[] = INCBIN_U8("graphics/pokemon/seel/front.4bpp.lz");
const u8 gMonPalette_Seel[] = INCBIN_U8("graphics/pokemon/seel/normal.gbapal.lz");
const u8 gMonBackPic_Seel[] = INCBIN_U8("graphics/pokemon/seel/back.4bpp.lz");
const u8 gMonShinyPalette_Seel[] = INCBIN_U8("graphics/pokemon/seel/shiny.gbapal.lz");
const u8 gMonIcon_Seel[] = INCBIN_U8("graphics/pokemon/seel/icon.4bpp");
const u8 gMonFootprint_Seel[] = INCBIN_U8("graphics/pokemon/seel/footprint.1bpp");
const u8 gMonFrontPic_Dewgong[] = INCBIN_U8("graphics/pokemon/dewgong/front.4bpp.lz");
const u8 gMonPalette_Dewgong[] = INCBIN_U8("graphics/pokemon/dewgong/normal.gbapal.lz");
const u8 gMonBackPic_Dewgong[] = INCBIN_U8("graphics/pokemon/dewgong/back.4bpp.lz");
const u8 gMonShinyPalette_Dewgong[] = INCBIN_U8("graphics/pokemon/dewgong/shiny.gbapal.lz");
const u8 gMonIcon_Dewgong[] = INCBIN_U8("graphics/pokemon/dewgong/icon.4bpp");
const u8 gMonFootprint_Dewgong[] = INCBIN_U8("graphics/pokemon/dewgong/footprint.1bpp");
const u8 gMonFrontPic_Grimer[] = INCBIN_U8("graphics/pokemon/grimer/front.4bpp.lz");
const u8 gMonPalette_Grimer[] = INCBIN_U8("graphics/pokemon/grimer/normal.gbapal.lz");
const u8 gMonBackPic_Grimer[] = INCBIN_U8("graphics/pokemon/grimer/back.4bpp.lz");
const u8 gMonShinyPalette_Grimer[] = INCBIN_U8("graphics/pokemon/grimer/shiny.gbapal.lz");
const u8 gMonIcon_Grimer[] = INCBIN_U8("graphics/pokemon/grimer/icon.4bpp");
const u8 gMonFootprint_Grimer[] = INCBIN_U8("graphics/pokemon/grimer/footprint.1bpp");
const u8 gMonFrontPic_Muk[] = INCBIN_U8("graphics/pokemon/muk/front.4bpp.lz");
const u8 gMonPalette_Muk[] = INCBIN_U8("graphics/pokemon/muk/normal.gbapal.lz");
const u8 gMonBackPic_Muk[] = INCBIN_U8("graphics/pokemon/muk/back.4bpp.lz");
const u8 gMonShinyPalette_Muk[] = INCBIN_U8("graphics/pokemon/muk/shiny.gbapal.lz");
const u8 gMonIcon_Muk[] = INCBIN_U8("graphics/pokemon/muk/icon.4bpp");
const u8 gMonFootprint_Muk[] = INCBIN_U8("graphics/pokemon/muk/footprint.1bpp");
const u8 gMonFrontPic_Shellder[] = INCBIN_U8("graphics/pokemon/shellder/front.4bpp.lz");
const u8 gMonPalette_Shellder[] = INCBIN_U8("graphics/pokemon/shellder/normal.gbapal.lz");
const u8 gMonBackPic_Shellder[] = INCBIN_U8("graphics/pokemon/shellder/back.4bpp.lz");
const u8 gMonShinyPalette_Shellder[] = INCBIN_U8("graphics/pokemon/shellder/shiny.gbapal.lz");
const u8 gMonIcon_Shellder[] = INCBIN_U8("graphics/pokemon/shellder/icon.4bpp");
const u8 gMonFootprint_Shellder[] = INCBIN_U8("graphics/pokemon/shellder/footprint.1bpp");
const u8 gMonFrontPic_Cloyster[] = INCBIN_U8("graphics/pokemon/cloyster/front.4bpp.lz");
const u8 gMonPalette_Cloyster[] = INCBIN_U8("graphics/pokemon/cloyster/normal.gbapal.lz");
const u8 gMonBackPic_Cloyster[] = INCBIN_U8("graphics/pokemon/cloyster/back.4bpp.lz");
const u8 gMonShinyPalette_Cloyster[] = INCBIN_U8("graphics/pokemon/cloyster/shiny.gbapal.lz");
const u8 gMonIcon_Cloyster[] = INCBIN_U8("graphics/pokemon/cloyster/icon.4bpp");
const u8 gMonFootprint_Cloyster[] = INCBIN_U8("graphics/pokemon/cloyster/footprint.1bpp");
const u8 gMonFrontPic_Gastly[] = INCBIN_U8("graphics/pokemon/gastly/front.4bpp.lz");
const u8 gMonPalette_Gastly[] = INCBIN_U8("graphics/pokemon/gastly/normal.gbapal.lz");
const u8 gMonBackPic_Gastly[] = INCBIN_U8("graphics/pokemon/gastly/back.4bpp.lz");
const u8 gMonShinyPalette_Gastly[] = INCBIN_U8("graphics/pokemon/gastly/shiny.gbapal.lz");
const u8 gMonIcon_Gastly[] = INCBIN_U8("graphics/pokemon/gastly/icon.4bpp");
const u8 gMonFootprint_Gastly[] = INCBIN_U8("graphics/pokemon/gastly/footprint.1bpp");
const u8 gMonFrontPic_Haunter[] = INCBIN_U8("graphics/pokemon/haunter/front.4bpp.lz");
const u8 gMonPalette_Haunter[] = INCBIN_U8("graphics/pokemon/haunter/normal.gbapal.lz");
const u8 gMonBackPic_Haunter[] = INCBIN_U8("graphics/pokemon/haunter/back.4bpp.lz");
const u8 gMonShinyPalette_Haunter[] = INCBIN_U8("graphics/pokemon/haunter/shiny.gbapal.lz");
const u8 gMonIcon_Haunter[] = INCBIN_U8("graphics/pokemon/haunter/icon.4bpp");
const u8 gMonFootprint_Haunter[] = INCBIN_U8("graphics/pokemon/haunter/footprint.1bpp");
const u8 gMonFrontPic_Gengar[] = INCBIN_U8("graphics/pokemon/gengar/front.4bpp.lz");
const u8 gMonPalette_Gengar[] = INCBIN_U8("graphics/pokemon/gengar/normal.gbapal.lz");
const u8 gMonBackPic_Gengar[] = INCBIN_U8("graphics/pokemon/gengar/back.4bpp.lz");
const u8 gMonShinyPalette_Gengar[] = INCBIN_U8("graphics/pokemon/gengar/shiny.gbapal.lz");
const u8 gMonIcon_Gengar[] = INCBIN_U8("graphics/pokemon/gengar/icon.4bpp");
const u8 gMonFootprint_Gengar[] = INCBIN_U8("graphics/pokemon/gengar/footprint.1bpp");
const u8 gMonFrontPic_Onix[] = INCBIN_U8("graphics/pokemon/onix/front.4bpp.lz");
const u8 gMonPalette_Onix[] = INCBIN_U8("graphics/pokemon/onix/normal.gbapal.lz");
const u8 gMonBackPic_Onix[] = INCBIN_U8("graphics/pokemon/onix/back.4bpp.lz");
const u8 gMonShinyPalette_Onix[] = INCBIN_U8("graphics/pokemon/onix/shiny.gbapal.lz");
const u8 gMonIcon_Onix[] = INCBIN_U8("graphics/pokemon/onix/icon.4bpp");
const u8 gMonFootprint_Onix[] = INCBIN_U8("graphics/pokemon/onix/footprint.1bpp");
const u8 gMonFrontPic_Drowzee[] = INCBIN_U8("graphics/pokemon/drowzee/front.4bpp.lz");
const u8 gMonPalette_Drowzee[] = INCBIN_U8("graphics/pokemon/drowzee/normal.gbapal.lz");
const u8 gMonBackPic_Drowzee[] = INCBIN_U8("graphics/pokemon/drowzee/back.4bpp.lz");
const u8 gMonShinyPalette_Drowzee[] = INCBIN_U8("graphics/pokemon/drowzee/shiny.gbapal.lz");
const u8 gMonIcon_Drowzee[] = INCBIN_U8("graphics/pokemon/drowzee/icon.4bpp");
const u8 gMonFootprint_Drowzee[] = INCBIN_U8("graphics/pokemon/drowzee/footprint.1bpp");
const u8 gMonFrontPic_Hypno[] = INCBIN_U8("graphics/pokemon/hypno/front.4bpp.lz");
const u8 gMonPalette_Hypno[] = INCBIN_U8("graphics/pokemon/hypno/normal.gbapal.lz");
const u8 gMonBackPic_Hypno[] = INCBIN_U8("graphics/pokemon/hypno/back.4bpp.lz");
const u8 gMonShinyPalette_Hypno[] = INCBIN_U8("graphics/pokemon/hypno/shiny.gbapal.lz");
const u8 gMonIcon_Hypno[] = INCBIN_U8("graphics/pokemon/hypno/icon.4bpp");
const u8 gMonFootprint_Hypno[] = INCBIN_U8("graphics/pokemon/hypno/footprint.1bpp");
const u8 gMonFrontPic_Krabby[] = INCBIN_U8("graphics/pokemon/krabby/front.4bpp.lz");
const u8 gMonPalette_Krabby[] = INCBIN_U8("graphics/pokemon/krabby/normal.gbapal.lz");
const u8 gMonBackPic_Krabby[] = INCBIN_U8("graphics/pokemon/krabby/back.4bpp.lz");
const u8 gMonShinyPalette_Krabby[] = INCBIN_U8("graphics/pokemon/krabby/shiny.gbapal.lz");
const u8 gMonIcon_Krabby[] = INCBIN_U8("graphics/pokemon/krabby/icon.4bpp");
const u8 gMonFootprint_Krabby[] = INCBIN_U8("graphics/pokemon/krabby/footprint.1bpp");
const u8 gMonFrontPic_Kingler[] = INCBIN_U8("graphics/pokemon/kingler/front.4bpp.lz");
const u8 gMonPalette_Kingler[] = INCBIN_U8("graphics/pokemon/kingler/normal.gbapal.lz");
const u8 gMonBackPic_Kingler[] = INCBIN_U8("graphics/pokemon/kingler/back.4bpp.lz");
const u8 gMonShinyPalette_Kingler[] = INCBIN_U8("graphics/pokemon/kingler/shiny.gbapal.lz");
const u8 gMonIcon_Kingler[] = INCBIN_U8("graphics/pokemon/kingler/icon.4bpp");
const u8 gMonFootprint_Kingler[] = INCBIN_U8("graphics/pokemon/kingler/footprint.1bpp");
const u8 gMonFrontPic_Voltorb[] = INCBIN_U8("graphics/pokemon/voltorb/front.4bpp.lz");
const u8 gMonPalette_Voltorb[] = INCBIN_U8("graphics/pokemon/voltorb/normal.gbapal.lz");
const u8 gMonBackPic_Voltorb[] = INCBIN_U8("graphics/pokemon/voltorb/back.4bpp.lz");
const u8 gMonShinyPalette_Voltorb[] = INCBIN_U8("graphics/pokemon/voltorb/shiny.gbapal.lz");
const u8 gMonIcon_Voltorb[] = INCBIN_U8("graphics/pokemon/voltorb/icon.4bpp");
const u8 gMonFootprint_Voltorb[] = INCBIN_U8("graphics/pokemon/voltorb/footprint.1bpp");
const u8 gMonFrontPic_Electrode[] = INCBIN_U8("graphics/pokemon/electrode/front.4bpp.lz");
const u8 gMonPalette_Electrode[] = INCBIN_U8("graphics/pokemon/electrode/normal.gbapal.lz");
const u8 gMonBackPic_Electrode[] = INCBIN_U8("graphics/pokemon/electrode/back.4bpp.lz");
const u8 gMonShinyPalette_Electrode[] = INCBIN_U8("graphics/pokemon/electrode/shiny.gbapal.lz");
const u8 gMonIcon_Electrode[] = INCBIN_U8("graphics/pokemon/electrode/icon.4bpp");
const u8 gMonFootprint_Electrode[] = INCBIN_U8("graphics/pokemon/electrode/footprint.1bpp");
const u8 gMonFrontPic_Exeggcute[] = INCBIN_U8("graphics/pokemon/exeggcute/front.4bpp.lz");
const u8 gMonPalette_Exeggcute[] = INCBIN_U8("graphics/pokemon/exeggcute/normal.gbapal.lz");
const u8 gMonBackPic_Exeggcute[] = INCBIN_U8("graphics/pokemon/exeggcute/back.4bpp.lz");
const u8 gMonShinyPalette_Exeggcute[] = INCBIN_U8("graphics/pokemon/exeggcute/shiny.gbapal.lz");
const u8 gMonIcon_Exeggcute[] = INCBIN_U8("graphics/pokemon/exeggcute/icon.4bpp");
const u8 gMonFootprint_Exeggcute[] = INCBIN_U8("graphics/pokemon/exeggcute/footprint.1bpp");
const u8 gMonFrontPic_Exeggutor[] = INCBIN_U8("graphics/pokemon/exeggutor/front.4bpp.lz");
const u8 gMonPalette_Exeggutor[] = INCBIN_U8("graphics/pokemon/exeggutor/normal.gbapal.lz");
const u8 gMonBackPic_Exeggutor[] = INCBIN_U8("graphics/pokemon/exeggutor/back.4bpp.lz");
const u8 gMonShinyPalette_Exeggutor[] = INCBIN_U8("graphics/pokemon/exeggutor/shiny.gbapal.lz");
const u8 gMonIcon_Exeggutor[] = INCBIN_U8("graphics/pokemon/exeggutor/icon.4bpp");
const u8 gMonFootprint_Exeggutor[] = INCBIN_U8("graphics/pokemon/exeggutor/footprint.1bpp");
const u8 gMonFrontPic_Cubone[] = INCBIN_U8("graphics/pokemon/cubone/front.4bpp.lz");
const u8 gMonPalette_Cubone[] = INCBIN_U8("graphics/pokemon/cubone/normal.gbapal.lz");
const u8 gMonBackPic_Cubone[] = INCBIN_U8("graphics/pokemon/cubone/back.4bpp.lz");
const u8 gMonShinyPalette_Cubone[] = INCBIN_U8("graphics/pokemon/cubone/shiny.gbapal.lz");
const u8 gMonIcon_Cubone[] = INCBIN_U8("graphics/pokemon/cubone/icon.4bpp");
const u8 gMonFootprint_Cubone[] = INCBIN_U8("graphics/pokemon/cubone/footprint.1bpp");
const u8 gMonFrontPic_Marowak[] = INCBIN_U8("graphics/pokemon/marowak/front.4bpp.lz");
const u8 gMonPalette_Marowak[] = INCBIN_U8("graphics/pokemon/marowak/normal.gbapal.lz");
const u8 gMonBackPic_Marowak[] = INCBIN_U8("graphics/pokemon/marowak/back.4bpp.lz");
const u8 gMonShinyPalette_Marowak[] = INCBIN_U8("graphics/pokemon/marowak/shiny.gbapal.lz");
const u8 gMonIcon_Marowak[] = INCBIN_U8("graphics/pokemon/marowak/icon.4bpp");
const u8 gMonFootprint_Marowak[] = INCBIN_U8("graphics/pokemon/marowak/footprint.1bpp");
const u8 gMonFrontPic_Hitmonlee[] = INCBIN_U8("graphics/pokemon/hitmonlee/front.4bpp.lz");
const u8 gMonPalette_Hitmonlee[] = INCBIN_U8("graphics/pokemon/hitmonlee/normal.gbapal.lz");
const u8 gMonBackPic_Hitmonlee[] = INCBIN_U8("graphics/pokemon/hitmonlee/back.4bpp.lz");
const u8 gMonShinyPalette_Hitmonlee[] = INCBIN_U8("graphics/pokemon/hitmonlee/shiny.gbapal.lz");
const u8 gMonIcon_Hitmonlee[] = INCBIN_U8("graphics/pokemon/hitmonlee/icon.4bpp");
const u8 gMonFootprint_Hitmonlee[] = INCBIN_U8("graphics/pokemon/hitmonlee/footprint.1bpp");
const u8 gMonFrontPic_Hitmonchan[] = INCBIN_U8("graphics/pokemon/hitmonchan/front.4bpp.lz");
const u8 gMonPalette_Hitmonchan[] = INCBIN_U8("graphics/pokemon/hitmonchan/normal.gbapal.lz");
const u8 gMonBackPic_Hitmonchan[] = INCBIN_U8("graphics/pokemon/hitmonchan/back.4bpp.lz");
const u8 gMonShinyPalette_Hitmonchan[] = INCBIN_U8("graphics/pokemon/hitmonchan/shiny.gbapal.lz");
const u8 gMonIcon_Hitmonchan[] = INCBIN_U8("graphics/pokemon/hitmonchan/icon.4bpp");
const u8 gMonFootprint_Hitmonchan[] = INCBIN_U8("graphics/pokemon/hitmonchan/footprint.1bpp");
const u8 gMonFrontPic_Lickitung[] = INCBIN_U8("graphics/pokemon/lickitung/front.4bpp.lz");
const u8 gMonPalette_Lickitung[] = INCBIN_U8("graphics/pokemon/lickitung/normal.gbapal.lz");
const u8 gMonBackPic_Lickitung[] = INCBIN_U8("graphics/pokemon/lickitung/back.4bpp.lz");
const u8 gMonShinyPalette_Lickitung[] = INCBIN_U8("graphics/pokemon/lickitung/shiny.gbapal.lz");
const u8 gMonIcon_Lickitung[] = INCBIN_U8("graphics/pokemon/lickitung/icon.4bpp");
const u8 gMonFootprint_Lickitung[] = INCBIN_U8("graphics/pokemon/lickitung/footprint.1bpp");
const u8 gMonFrontPic_Koffing[] = INCBIN_U8("graphics/pokemon/koffing/front.4bpp.lz");
const u8 gMonPalette_Koffing[] = INCBIN_U8("graphics/pokemon/koffing/normal.gbapal.lz");
const u8 gMonBackPic_Koffing[] = INCBIN_U8("graphics/pokemon/koffing/back.4bpp.lz");
const u8 gMonShinyPalette_Koffing[] = INCBIN_U8("graphics/pokemon/koffing/shiny.gbapal.lz");
const u8 gMonIcon_Koffing[] = INCBIN_U8("graphics/pokemon/koffing/icon.4bpp");
const u8 gMonFootprint_Koffing[] = INCBIN_U8("graphics/pokemon/koffing/footprint.1bpp");
const u8 gMonFrontPic_Weezing[] = INCBIN_U8("graphics/pokemon/weezing/front.4bpp.lz");
const u8 gMonPalette_Weezing[] = INCBIN_U8("graphics/pokemon/weezing/normal.gbapal.lz");
const u8 gMonBackPic_Weezing[] = INCBIN_U8("graphics/pokemon/weezing/back.4bpp.lz");
const u8 gMonShinyPalette_Weezing[] = INCBIN_U8("graphics/pokemon/weezing/shiny.gbapal.lz");
const u8 gMonIcon_Weezing[] = INCBIN_U8("graphics/pokemon/weezing/icon.4bpp");
const u8 gMonFootprint_Weezing[] = INCBIN_U8("graphics/pokemon/weezing/footprint.1bpp");
const u8 gMonFrontPic_Rhyhorn[] = INCBIN_U8("graphics/pokemon/rhyhorn/front.4bpp.lz");
const u8 gMonPalette_Rhyhorn[] = INCBIN_U8("graphics/pokemon/rhyhorn/normal.gbapal.lz");
const u8 gMonBackPic_Rhyhorn[] = INCBIN_U8("graphics/pokemon/rhyhorn/back.4bpp.lz");
const u8 gMonShinyPalette_Rhyhorn[] = INCBIN_U8("graphics/pokemon/rhyhorn/shiny.gbapal.lz");
const u8 gMonIcon_Rhyhorn[] = INCBIN_U8("graphics/pokemon/rhyhorn/icon.4bpp");
const u8 gMonFootprint_Rhyhorn[] = INCBIN_U8("graphics/pokemon/rhyhorn/footprint.1bpp");
const u8 gMonFrontPic_Rhydon[] = INCBIN_U8("graphics/pokemon/rhydon/front.4bpp.lz");
const u8 gMonPalette_Rhydon[] = INCBIN_U8("graphics/pokemon/rhydon/normal.gbapal.lz");
const u8 gMonBackPic_Rhydon[] = INCBIN_U8("graphics/pokemon/rhydon/back.4bpp.lz");
const u8 gMonShinyPalette_Rhydon[] = INCBIN_U8("graphics/pokemon/rhydon/shiny.gbapal.lz");
const u8 gMonIcon_Rhydon[] = INCBIN_U8("graphics/pokemon/rhydon/icon.4bpp");
const u8 gMonFootprint_Rhydon[] = INCBIN_U8("graphics/pokemon/rhydon/footprint.1bpp");
const u8 gMonFrontPic_Chansey[] = INCBIN_U8("graphics/pokemon/chansey/front.4bpp.lz");
const u8 gMonPalette_Chansey[] = INCBIN_U8("graphics/pokemon/chansey/normal.gbapal.lz");
const u8 gMonBackPic_Chansey[] = INCBIN_U8("graphics/pokemon/chansey/back.4bpp.lz");
const u8 gMonShinyPalette_Chansey[] = INCBIN_U8("graphics/pokemon/chansey/shiny.gbapal.lz");
const u8 gMonIcon_Chansey[] = INCBIN_U8("graphics/pokemon/chansey/icon.4bpp");
const u8 gMonFootprint_Chansey[] = INCBIN_U8("graphics/pokemon/chansey/footprint.1bpp");
const u8 gMonFrontPic_Tangela[] = INCBIN_U8("graphics/pokemon/tangela/front.4bpp.lz");
const u8 gMonPalette_Tangela[] = INCBIN_U8("graphics/pokemon/tangela/normal.gbapal.lz");
const u8 gMonBackPic_Tangela[] = INCBIN_U8("graphics/pokemon/tangela/back.4bpp.lz");
const u8 gMonShinyPalette_Tangela[] = INCBIN_U8("graphics/pokemon/tangela/shiny.gbapal.lz");
const u8 gMonIcon_Tangela[] = INCBIN_U8("graphics/pokemon/tangela/icon.4bpp");
const u8 gMonFootprint_Tangela[] = INCBIN_U8("graphics/pokemon/tangela/footprint.1bpp");
const u8 gMonFrontPic_Kangaskhan[] = INCBIN_U8("graphics/pokemon/kangaskhan/front.4bpp.lz");
const u8 gMonPalette_Kangaskhan[] = INCBIN_U8("graphics/pokemon/kangaskhan/normal.gbapal.lz");
const u8 gMonBackPic_Kangaskhan[] = INCBIN_U8("graphics/pokemon/kangaskhan/back.4bpp.lz");
const u8 gMonShinyPalette_Kangaskhan[] = INCBIN_U8("graphics/pokemon/kangaskhan/shiny.gbapal.lz");
const u8 gMonIcon_Kangaskhan[] = INCBIN_U8("graphics/pokemon/kangaskhan/icon.4bpp");
const u8 gMonFootprint_Kangaskhan[] = INCBIN_U8("graphics/pokemon/kangaskhan/footprint.1bpp");
const u8 gMonFrontPic_Horsea[] = INCBIN_U8("graphics/pokemon/horsea/front.4bpp.lz");
const u8 gMonPalette_Horsea[] = INCBIN_U8("graphics/pokemon/horsea/normal.gbapal.lz");
const u8 gMonBackPic_Horsea[] = INCBIN_U8("graphics/pokemon/horsea/back.4bpp.lz");
const u8 gMonShinyPalette_Horsea[] = INCBIN_U8("graphics/pokemon/horsea/shiny.gbapal.lz");
const u8 gMonIcon_Horsea[] = INCBIN_U8("graphics/pokemon/horsea/icon.4bpp");
const u8 gMonFootprint_Horsea[] = INCBIN_U8("graphics/pokemon/horsea/footprint.1bpp");
const u8 gMonFrontPic_Seadra[] = INCBIN_U8("graphics/pokemon/seadra/front.4bpp.lz");
const u8 gMonPalette_Seadra[] = INCBIN_U8("graphics/pokemon/seadra/normal.gbapal.lz");
const u8 gMonBackPic_Seadra[] = INCBIN_U8("graphics/pokemon/seadra/back.4bpp.lz");
const u8 gMonShinyPalette_Seadra[] = INCBIN_U8("graphics/pokemon/seadra/shiny.gbapal.lz");
const u8 gMonIcon_Seadra[] = INCBIN_U8("graphics/pokemon/seadra/icon.4bpp");
const u8 gMonFootprint_Seadra[] = INCBIN_U8("graphics/pokemon/seadra/footprint.1bpp");
const u8 gMonFrontPic_Goldeen[] = INCBIN_U8("graphics/pokemon/goldeen/front.4bpp.lz");
const u8 gMonPalette_Goldeen[] = INCBIN_U8("graphics/pokemon/goldeen/normal.gbapal.lz");
const u8 gMonBackPic_Goldeen[] = INCBIN_U8("graphics/pokemon/goldeen/back.4bpp.lz");
const u8 gMonShinyPalette_Goldeen[] = INCBIN_U8("graphics/pokemon/goldeen/shiny.gbapal.lz");
const u8 gMonIcon_Goldeen[] = INCBIN_U8("graphics/pokemon/goldeen/icon.4bpp");
const u8 gMonFootprint_Goldeen[] = INCBIN_U8("graphics/pokemon/goldeen/footprint.1bpp");
const u8 gMonFrontPic_Seaking[] = INCBIN_U8("graphics/pokemon/seaking/front.4bpp.lz");
const u8 gMonPalette_Seaking[] = INCBIN_U8("graphics/pokemon/seaking/normal.gbapal.lz");
const u8 gMonBackPic_Seaking[] = INCBIN_U8("graphics/pokemon/seaking/back.4bpp.lz");
const u8 gMonShinyPalette_Seaking[] = INCBIN_U8("graphics/pokemon/seaking/shiny.gbapal.lz");
const u8 gMonIcon_Seaking[] = INCBIN_U8("graphics/pokemon/seaking/icon.4bpp");
const u8 gMonFootprint_Seaking[] = INCBIN_U8("graphics/pokemon/seaking/footprint.1bpp");
const u8 gMonFrontPic_Staryu[] = INCBIN_U8("graphics/pokemon/staryu/front.4bpp.lz");
const u8 gMonPalette_Staryu[] = INCBIN_U8("graphics/pokemon/staryu/normal.gbapal.lz");
const u8 gMonBackPic_Staryu[] = INCBIN_U8("graphics/pokemon/staryu/back.4bpp.lz");
const u8 gMonShinyPalette_Staryu[] = INCBIN_U8("graphics/pokemon/staryu/shiny.gbapal.lz");
const u8 gMonIcon_Staryu[] = INCBIN_U8("graphics/pokemon/staryu/icon.4bpp");
const u8 gMonFootprint_Staryu[] = INCBIN_U8("graphics/pokemon/staryu/footprint.1bpp");
const u8 gMonFrontPic_Starmie[] = INCBIN_U8("graphics/pokemon/starmie/front.4bpp.lz");
const u8 gMonPalette_Starmie[] = INCBIN_U8("graphics/pokemon/starmie/normal.gbapal.lz");
const u8 gMonBackPic_Starmie[] = INCBIN_U8("graphics/pokemon/starmie/back.4bpp.lz");
const u8 gMonShinyPalette_Starmie[] = INCBIN_U8("graphics/pokemon/starmie/shiny.gbapal.lz");
const u8 gMonIcon_Starmie[] = INCBIN_U8("graphics/pokemon/starmie/icon.4bpp");
const u8 gMonFootprint_Starmie[] = INCBIN_U8("graphics/pokemon/starmie/footprint.1bpp");
const u8 gMonFrontPic_Mrmime[] = INCBIN_U8("graphics/pokemon/mr_mime/front.4bpp.lz");
const u8 gMonPalette_Mrmime[] = INCBIN_U8("graphics/pokemon/mr_mime/normal.gbapal.lz");
const u8 gMonBackPic_Mrmime[] = INCBIN_U8("graphics/pokemon/mr_mime/back.4bpp.lz");
const u8 gMonShinyPalette_Mrmime[] = INCBIN_U8("graphics/pokemon/mr_mime/shiny.gbapal.lz");
const u8 gMonIcon_Mrmime[] = INCBIN_U8("graphics/pokemon/mr_mime/icon.4bpp");
const u8 gMonFootprint_Mrmime[] = INCBIN_U8("graphics/pokemon/mr_mime/footprint.1bpp");
const u8 gMonFrontPic_Scyther[] = INCBIN_U8("graphics/pokemon/scyther/front.4bpp.lz");
const u8 gMonPalette_Scyther[] = INCBIN_U8("graphics/pokemon/scyther/normal.gbapal.lz");
const u8 gMonBackPic_Scyther[] = INCBIN_U8("graphics/pokemon/scyther/back.4bpp.lz");
const u8 gMonShinyPalette_Scyther[] = INCBIN_U8("graphics/pokemon/scyther/shiny.gbapal.lz");
const u8 gMonIcon_Scyther[] = INCBIN_U8("graphics/pokemon/scyther/icon.4bpp");
const u8 gMonFootprint_Scyther[] = INCBIN_U8("graphics/pokemon/scyther/footprint.1bpp");
const u8 gMonFrontPic_Jynx[] = INCBIN_U8("graphics/pokemon/jynx/front.4bpp.lz");
const u8 gMonPalette_Jynx[] = INCBIN_U8("graphics/pokemon/jynx/normal.gbapal.lz");
const u8 gMonBackPic_Jynx[] = INCBIN_U8("graphics/pokemon/jynx/back.4bpp.lz");
const u8 gMonShinyPalette_Jynx[] = INCBIN_U8("graphics/pokemon/jynx/shiny.gbapal.lz");
const u8 gMonIcon_Jynx[] = INCBIN_U8("graphics/pokemon/jynx/icon.4bpp");
const u8 gMonFootprint_Jynx[] = INCBIN_U8("graphics/pokemon/jynx/footprint.1bpp");
const u8 gMonFrontPic_Electabuzz[] = INCBIN_U8("graphics/pokemon/electabuzz/front.4bpp.lz");
const u8 gMonPalette_Electabuzz[] = INCBIN_U8("graphics/pokemon/electabuzz/normal.gbapal.lz");
const u8 gMonBackPic_Electabuzz[] = INCBIN_U8("graphics/pokemon/electabuzz/back.4bpp.lz");
const u8 gMonShinyPalette_Electabuzz[] = INCBIN_U8("graphics/pokemon/electabuzz/shiny.gbapal.lz");
const u8 gMonIcon_Electabuzz[] = INCBIN_U8("graphics/pokemon/electabuzz/icon.4bpp");
const u8 gMonFootprint_Electabuzz[] = INCBIN_U8("graphics/pokemon/electabuzz/footprint.1bpp");
const u8 gMonFrontPic_Magmar[] = INCBIN_U8("graphics/pokemon/magmar/front.4bpp.lz");
const u8 gMonPalette_Magmar[] = INCBIN_U8("graphics/pokemon/magmar/normal.gbapal.lz");
const u8 gMonBackPic_Magmar[] = INCBIN_U8("graphics/pokemon/magmar/back.4bpp.lz");
const u8 gMonShinyPalette_Magmar[] = INCBIN_U8("graphics/pokemon/magmar/shiny.gbapal.lz");
const u8 gMonIcon_Magmar[] = INCBIN_U8("graphics/pokemon/magmar/icon.4bpp");
const u8 gMonFootprint_Magmar[] = INCBIN_U8("graphics/pokemon/magmar/footprint.1bpp");
const u8 gMonFrontPic_Pinsir[] = INCBIN_U8("graphics/pokemon/pinsir/front.4bpp.lz");
const u8 gMonPalette_Pinsir[] = INCBIN_U8("graphics/pokemon/pinsir/normal.gbapal.lz");
const u8 gMonBackPic_Pinsir[] = INCBIN_U8("graphics/pokemon/pinsir/back.4bpp.lz");
const u8 gMonShinyPalette_Pinsir[] = INCBIN_U8("graphics/pokemon/pinsir/shiny.gbapal.lz");
const u8 gMonIcon_Pinsir[] = INCBIN_U8("graphics/pokemon/pinsir/icon.4bpp");
const u8 gMonFootprint_Pinsir[] = INCBIN_U8("graphics/pokemon/pinsir/footprint.1bpp");
const u8 gMonFrontPic_Tauros[] = INCBIN_U8("graphics/pokemon/tauros/front.4bpp.lz");
const u8 gMonPalette_Tauros[] = INCBIN_U8("graphics/pokemon/tauros/normal.gbapal.lz");
const u8 gMonBackPic_Tauros[] = INCBIN_U8("graphics/pokemon/tauros/back.4bpp.lz");
const u8 gMonShinyPalette_Tauros[] = INCBIN_U8("graphics/pokemon/tauros/shiny.gbapal.lz");
const u8 gMonIcon_Tauros[] = INCBIN_U8("graphics/pokemon/tauros/icon.4bpp");
const u8 gMonFootprint_Tauros[] = INCBIN_U8("graphics/pokemon/tauros/footprint.1bpp");
const u8 gMonFrontPic_Magikarp[] = INCBIN_U8("graphics/pokemon/magikarp/front.4bpp.lz");
const u8 gMonPalette_Magikarp[] = INCBIN_U8("graphics/pokemon/magikarp/normal.gbapal.lz");
const u8 gMonBackPic_Magikarp[] = INCBIN_U8("graphics/pokemon/magikarp/back.4bpp.lz");
const u8 gMonShinyPalette_Magikarp[] = INCBIN_U8("graphics/pokemon/magikarp/shiny.gbapal.lz");
const u8 gMonIcon_Magikarp[] = INCBIN_U8("graphics/pokemon/magikarp/icon.4bpp");
const u8 gMonFootprint_Magikarp[] = INCBIN_U8("graphics/pokemon/magikarp/footprint.1bpp");
const u8 gMonFrontPic_Gyarados[] = INCBIN_U8("graphics/pokemon/gyarados/front.4bpp.lz");
const u8 gMonPalette_Gyarados[] = INCBIN_U8("graphics/pokemon/gyarados/normal.gbapal.lz");
const u8 gMonBackPic_Gyarados[] = INCBIN_U8("graphics/pokemon/gyarados/back.4bpp.lz");
const u8 gMonShinyPalette_Gyarados[] = INCBIN_U8("graphics/pokemon/gyarados/shiny.gbapal.lz");
const u8 gMonIcon_Gyarados[] = INCBIN_U8("graphics/pokemon/gyarados/icon.4bpp");
const u8 gMonFootprint_Gyarados[] = INCBIN_U8("graphics/pokemon/gyarados/footprint.1bpp");
const u8 gMonFrontPic_Lapras[] = INCBIN_U8("graphics/pokemon/lapras/front.4bpp.lz");
const u8 gMonPalette_Lapras[] = INCBIN_U8("graphics/pokemon/lapras/normal.gbapal.lz");
const u8 gMonBackPic_Lapras[] = INCBIN_U8("graphics/pokemon/lapras/back.4bpp.lz");
const u8 gMonShinyPalette_Lapras[] = INCBIN_U8("graphics/pokemon/lapras/shiny.gbapal.lz");
const u8 gMonIcon_Lapras[] = INCBIN_U8("graphics/pokemon/lapras/icon.4bpp");
const u8 gMonFootprint_Lapras[] = INCBIN_U8("graphics/pokemon/lapras/footprint.1bpp");
const u8 gMonFrontPic_Ditto[] = INCBIN_U8("graphics/pokemon/ditto/front.4bpp.lz");
const u8 gMonPalette_Ditto[] = INCBIN_U8("graphics/pokemon/ditto/normal.gbapal.lz");
const u8 gMonBackPic_Ditto[] = INCBIN_U8("graphics/pokemon/ditto/back.4bpp.lz");
const u8 gMonShinyPalette_Ditto[] = INCBIN_U8("graphics/pokemon/ditto/shiny.gbapal.lz");
const u8 gMonIcon_Ditto[] = INCBIN_U8("graphics/pokemon/ditto/icon.4bpp");
const u8 gMonFootprint_Ditto[] = INCBIN_U8("graphics/pokemon/ditto/footprint.1bpp");
const u8 gMonFrontPic_Eevee[] = INCBIN_U8("graphics/pokemon/eevee/front.4bpp.lz");
const u8 gMonPalette_Eevee[] = INCBIN_U8("graphics/pokemon/eevee/normal.gbapal.lz");
const u8 gMonBackPic_Eevee[] = INCBIN_U8("graphics/pokemon/eevee/back.4bpp.lz");
const u8 gMonShinyPalette_Eevee[] = INCBIN_U8("graphics/pokemon/eevee/shiny.gbapal.lz");
const u8 gMonIcon_Eevee[] = INCBIN_U8("graphics/pokemon/eevee/icon.4bpp");
const u8 gMonFootprint_Eevee[] = INCBIN_U8("graphics/pokemon/eevee/footprint.1bpp");
const u8 gMonFrontPic_Vaporeon[] = INCBIN_U8("graphics/pokemon/vaporeon/front.4bpp.lz");
const u8 gMonPalette_Vaporeon[] = INCBIN_U8("graphics/pokemon/vaporeon/normal.gbapal.lz");
const u8 gMonBackPic_Vaporeon[] = INCBIN_U8("graphics/pokemon/vaporeon/back.4bpp.lz");
const u8 gMonShinyPalette_Vaporeon[] = INCBIN_U8("graphics/pokemon/vaporeon/shiny.gbapal.lz");
const u8 gMonIcon_Vaporeon[] = INCBIN_U8("graphics/pokemon/vaporeon/icon.4bpp");
const u8 gMonFootprint_Vaporeon[] = INCBIN_U8("graphics/pokemon/vaporeon/footprint.1bpp");
const u8 gMonFrontPic_Jolteon[] = INCBIN_U8("graphics/pokemon/jolteon/front.4bpp.lz");
const u8 gMonPalette_Jolteon[] = INCBIN_U8("graphics/pokemon/jolteon/normal.gbapal.lz");
const u8 gMonBackPic_Jolteon[] = INCBIN_U8("graphics/pokemon/jolteon/back.4bpp.lz");
const u8 gMonShinyPalette_Jolteon[] = INCBIN_U8("graphics/pokemon/jolteon/shiny.gbapal.lz");
const u8 gMonIcon_Jolteon[] = INCBIN_U8("graphics/pokemon/jolteon/icon.4bpp");
const u8 gMonFootprint_Jolteon[] = INCBIN_U8("graphics/pokemon/jolteon/footprint.1bpp");
const u8 gMonFrontPic_Flareon[] = INCBIN_U8("graphics/pokemon/flareon/front.4bpp.lz");
const u8 gMonPalette_Flareon[] = INCBIN_U8("graphics/pokemon/flareon/normal.gbapal.lz");
const u8 gMonBackPic_Flareon[] = INCBIN_U8("graphics/pokemon/flareon/back.4bpp.lz");
const u8 gMonShinyPalette_Flareon[] = INCBIN_U8("graphics/pokemon/flareon/shiny.gbapal.lz");
const u8 gMonIcon_Flareon[] = INCBIN_U8("graphics/pokemon/flareon/icon.4bpp");
const u8 gMonFootprint_Flareon[] = INCBIN_U8("graphics/pokemon/flareon/footprint.1bpp");
const u8 gMonFrontPic_Porygon[] = INCBIN_U8("graphics/pokemon/porygon/front.4bpp.lz");
const u8 gMonPalette_Porygon[] = INCBIN_U8("graphics/pokemon/porygon/normal.gbapal.lz");
const u8 gMonBackPic_Porygon[] = INCBIN_U8("graphics/pokemon/porygon/back.4bpp.lz");
const u8 gMonShinyPalette_Porygon[] = INCBIN_U8("graphics/pokemon/porygon/shiny.gbapal.lz");
const u8 gMonIcon_Porygon[] = INCBIN_U8("graphics/pokemon/porygon/icon.4bpp");
const u8 gMonFootprint_Porygon[] = INCBIN_U8("graphics/pokemon/porygon/footprint.1bpp");
const u8 gMonFrontPic_Omanyte[] = INCBIN_U8("graphics/pokemon/omanyte/front.4bpp.lz");
const u8 gMonPalette_Omanyte[] = INCBIN_U8("graphics/pokemon/omanyte/normal.gbapal.lz");
const u8 gMonBackPic_Omanyte[] = INCBIN_U8("graphics/pokemon/omanyte/back.4bpp.lz");
const u8 gMonShinyPalette_Omanyte[] = INCBIN_U8("graphics/pokemon/omanyte/shiny.gbapal.lz");
const u8 gMonIcon_Omanyte[] = INCBIN_U8("graphics/pokemon/omanyte/icon.4bpp");
const u8 gMonFootprint_Omanyte[] = INCBIN_U8("graphics/pokemon/omanyte/footprint.1bpp");
const u8 gMonFrontPic_Omastar[] = INCBIN_U8("graphics/pokemon/omastar/front.4bpp.lz");
const u8 gMonPalette_Omastar[] = INCBIN_U8("graphics/pokemon/omastar/normal.gbapal.lz");
const u8 gMonBackPic_Omastar[] = INCBIN_U8("graphics/pokemon/omastar/back.4bpp.lz");
const u8 gMonShinyPalette_Omastar[] = INCBIN_U8("graphics/pokemon/omastar/shiny.gbapal.lz");
const u8 gMonIcon_Omastar[] = INCBIN_U8("graphics/pokemon/omastar/icon.4bpp");
const u8 gMonFootprint_Omastar[] = INCBIN_U8("graphics/pokemon/omastar/footprint.1bpp");
const u8 gMonFrontPic_Kabuto[] = INCBIN_U8("graphics/pokemon/kabuto/front.4bpp.lz");
const u8 gMonPalette_Kabuto[] = INCBIN_U8("graphics/pokemon/kabuto/normal.gbapal.lz");
const u8 gMonBackPic_Kabuto[] = INCBIN_U8("graphics/pokemon/kabuto/back.4bpp.lz");
const u8 gMonShinyPalette_Kabuto[] = INCBIN_U8("graphics/pokemon/kabuto/shiny.gbapal.lz");
const u8 gMonIcon_Kabuto[] = INCBIN_U8("graphics/pokemon/kabuto/icon.4bpp");
const u8 gMonFootprint_Kabuto[] = INCBIN_U8("graphics/pokemon/kabuto/footprint.1bpp");
const u8 gMonFrontPic_Kabutops[] = INCBIN_U8("graphics/pokemon/kabutops/front.4bpp.lz");
const u8 gMonPalette_Kabutops[] = INCBIN_U8("graphics/pokemon/kabutops/normal.gbapal.lz");
const u8 gMonBackPic_Kabutops[] = INCBIN_U8("graphics/pokemon/kabutops/back.4bpp.lz");
const u8 gMonShinyPalette_Kabutops[] = INCBIN_U8("graphics/pokemon/kabutops/shiny.gbapal.lz");
const u8 gMonIcon_Kabutops[] = INCBIN_U8("graphics/pokemon/kabutops/icon.4bpp");
const u8 gMonFootprint_Kabutops[] = INCBIN_U8("graphics/pokemon/kabutops/footprint.1bpp");
const u8 gMonFrontPic_Aerodactyl[] = INCBIN_U8("graphics/pokemon/aerodactyl/front.4bpp.lz");
const u8 gMonPalette_Aerodactyl[] = INCBIN_U8("graphics/pokemon/aerodactyl/normal.gbapal.lz");
const u8 gMonBackPic_Aerodactyl[] = INCBIN_U8("graphics/pokemon/aerodactyl/back.4bpp.lz");
const u8 gMonShinyPalette_Aerodactyl[] = INCBIN_U8("graphics/pokemon/aerodactyl/shiny.gbapal.lz");
const u8 gMonIcon_Aerodactyl[] = INCBIN_U8("graphics/pokemon/aerodactyl/icon.4bpp");
const u8 gMonFootprint_Aerodactyl[] = INCBIN_U8("graphics/pokemon/aerodactyl/footprint.1bpp");
const u8 gMonFrontPic_Snorlax[] = INCBIN_U8("graphics/pokemon/snorlax/front.4bpp.lz");
const u8 gMonPalette_Snorlax[] = INCBIN_U8("graphics/pokemon/snorlax/normal.gbapal.lz");
const u8 gMonBackPic_Snorlax[] = INCBIN_U8("graphics/pokemon/snorlax/back.4bpp.lz");
const u8 gMonShinyPalette_Snorlax[] = INCBIN_U8("graphics/pokemon/snorlax/shiny.gbapal.lz");
const u8 gMonIcon_Snorlax[] = INCBIN_U8("graphics/pokemon/snorlax/icon.4bpp");
const u8 gMonFootprint_Snorlax[] = INCBIN_U8("graphics/pokemon/snorlax/footprint.1bpp");
const u8 gMonFrontPic_Articuno[] = INCBIN_U8("graphics/pokemon/articuno/front.4bpp.lz");
const u8 gMonPalette_Articuno[] = INCBIN_U8("graphics/pokemon/articuno/normal.gbapal.lz");
const u8 gMonBackPic_Articuno[] = INCBIN_U8("graphics/pokemon/articuno/back.4bpp.lz");
const u8 gMonShinyPalette_Articuno[] = INCBIN_U8("graphics/pokemon/articuno/shiny.gbapal.lz");
const u8 gMonIcon_Articuno[] = INCBIN_U8("graphics/pokemon/articuno/icon.4bpp");
const u8 gMonFootprint_Articuno[] = INCBIN_U8("graphics/pokemon/articuno/footprint.1bpp");
const u8 gMonFrontPic_Zapdos[] = INCBIN_U8("graphics/pokemon/zapdos/front.4bpp.lz");
const u8 gMonPalette_Zapdos[] = INCBIN_U8("graphics/pokemon/zapdos/normal.gbapal.lz");
const u8 gMonBackPic_Zapdos[] = INCBIN_U8("graphics/pokemon/zapdos/back.4bpp.lz");
const u8 gMonShinyPalette_Zapdos[] = INCBIN_U8("graphics/pokemon/zapdos/shiny.gbapal.lz");
const u8 gMonIcon_Zapdos[] = INCBIN_U8("graphics/pokemon/zapdos/icon.4bpp");
const u8 gMonFootprint_Zapdos[] = INCBIN_U8("graphics/pokemon/zapdos/footprint.1bpp");
const u8 gMonFrontPic_Moltres[] = INCBIN_U8("graphics/pokemon/moltres/front.4bpp.lz");
const u8 gMonPalette_Moltres[] = INCBIN_U8("graphics/pokemon/moltres/normal.gbapal.lz");
const u8 gMonBackPic_Moltres[] = INCBIN_U8("graphics/pokemon/moltres/back.4bpp.lz");
const u8 gMonShinyPalette_Moltres[] = INCBIN_U8("graphics/pokemon/moltres/shiny.gbapal.lz");
const u8 gMonIcon_Moltres[] = INCBIN_U8("graphics/pokemon/moltres/icon.4bpp");
const u8 gMonFootprint_Moltres[] = INCBIN_U8("graphics/pokemon/moltres/footprint.1bpp");
const u8 gMonFrontPic_Dratini[] = INCBIN_U8("graphics/pokemon/dratini/front.4bpp.lz");
const u8 gMonPalette_Dratini[] = INCBIN_U8("graphics/pokemon/dratini/normal.gbapal.lz");
const u8 gMonBackPic_Dratini[] = INCBIN_U8("graphics/pokemon/dratini/back.4bpp.lz");
const u8 gMonShinyPalette_Dratini[] = INCBIN_U8("graphics/pokemon/dratini/shiny.gbapal.lz");
const u8 gMonIcon_Dratini[] = INCBIN_U8("graphics/pokemon/dratini/icon.4bpp");
const u8 gMonFootprint_Dratini[] = INCBIN_U8("graphics/pokemon/dratini/footprint.1bpp");
const u8 gMonFrontPic_Dragonair[] = INCBIN_U8("graphics/pokemon/dragonair/front.4bpp.lz");
const u8 gMonPalette_Dragonair[] = INCBIN_U8("graphics/pokemon/dragonair/normal.gbapal.lz");
const u8 gMonBackPic_Dragonair[] = INCBIN_U8("graphics/pokemon/dragonair/back.4bpp.lz");
const u8 gMonShinyPalette_Dragonair[] = INCBIN_U8("graphics/pokemon/dragonair/shiny.gbapal.lz");
const u8 gMonIcon_Dragonair[] = INCBIN_U8("graphics/pokemon/dragonair/icon.4bpp");
const u8 gMonFootprint_Dragonair[] = INCBIN_U8("graphics/pokemon/dragonair/footprint.1bpp");
const u8 gMonFrontPic_Dragonite[] = INCBIN_U8("graphics/pokemon/dragonite/front.4bpp.lz");
const u8 gMonPalette_Dragonite[] = INCBIN_U8("graphics/pokemon/dragonite/normal.gbapal.lz");
const u8 gMonBackPic_Dragonite[] = INCBIN_U8("graphics/pokemon/dragonite/back.4bpp.lz");
const u8 gMonShinyPalette_Dragonite[] = INCBIN_U8("graphics/pokemon/dragonite/shiny.gbapal.lz");
const u8 gMonIcon_Dragonite[] = INCBIN_U8("graphics/pokemon/dragonite/icon.4bpp");
const u8 gMonFootprint_Dragonite[] = INCBIN_U8("graphics/pokemon/dragonite/footprint.1bpp");
const u8 gMonFrontPic_Mewtwo[] = INCBIN_U8("graphics/pokemon/mewtwo/front.4bpp.lz");
const u8 gMonPalette_Mewtwo[] = INCBIN_U8("graphics/pokemon/mewtwo/normal.gbapal.lz");
const u8 gMonBackPic_Mewtwo[] = INCBIN_U8("graphics/pokemon/mewtwo/back.4bpp.lz");
const u8 gMonShinyPalette_Mewtwo[] = INCBIN_U8("graphics/pokemon/mewtwo/shiny.gbapal.lz");
const u8 gMonIcon_Mewtwo[] = INCBIN_U8("graphics/pokemon/mewtwo/icon.4bpp");
const u8 gMonFootprint_Mewtwo[] = INCBIN_U8("graphics/pokemon/mewtwo/footprint.1bpp");
const u8 gMonFrontPic_Mew[] = INCBIN_U8("graphics/pokemon/mew/front.4bpp.lz");
const u8 gMonPalette_Mew[] = INCBIN_U8("graphics/pokemon/mew/normal.gbapal.lz");
const u8 gMonBackPic_Mew[] = INCBIN_U8("graphics/pokemon/mew/back.4bpp.lz");
const u8 gMonShinyPalette_Mew[] = INCBIN_U8("graphics/pokemon/mew/shiny.gbapal.lz");
const u8 gMonIcon_Mew[] = INCBIN_U8("graphics/pokemon/mew/icon.4bpp");
const u8 gMonFootprint_Mew[] = INCBIN_U8("graphics/pokemon/mew/footprint.1bpp");
const u8 gMonFrontPic_Chikorita[] = INCBIN_U8("graphics/pokemon/chikorita/front.4bpp.lz");
const u8 gMonPalette_Chikorita[] = INCBIN_U8("graphics/pokemon/chikorita/normal.gbapal.lz");
const u8 gMonBackPic_Chikorita[] = INCBIN_U8("graphics/pokemon/chikorita/back.4bpp.lz");
const u8 gMonShinyPalette_Chikorita[] = INCBIN_U8("graphics/pokemon/chikorita/shiny.gbapal.lz");
const u8 gMonIcon_Chikorita[] = INCBIN_U8("graphics/pokemon/chikorita/icon.4bpp");
const u8 gMonFootprint_Chikorita[] = INCBIN_U8("graphics/pokemon/chikorita/footprint.1bpp");
const u8 gMonFrontPic_Bayleef[] = INCBIN_U8("graphics/pokemon/bayleef/front.4bpp.lz");
const u8 gMonPalette_Bayleef[] = INCBIN_U8("graphics/pokemon/bayleef/normal.gbapal.lz");
const u8 gMonBackPic_Bayleef[] = INCBIN_U8("graphics/pokemon/bayleef/back.4bpp.lz");
const u8 gMonShinyPalette_Bayleef[] = INCBIN_U8("graphics/pokemon/bayleef/shiny.gbapal.lz");
const u8 gMonIcon_Bayleef[] = INCBIN_U8("graphics/pokemon/bayleef/icon.4bpp");
const u8 gMonFootprint_Bayleef[] = INCBIN_U8("graphics/pokemon/bayleef/footprint.1bpp");
const u8 gMonFrontPic_Meganium[] = INCBIN_U8("graphics/pokemon/meganium/front.4bpp.lz");
const u8 gMonPalette_Meganium[] = INCBIN_U8("graphics/pokemon/meganium/normal.gbapal.lz");
const u8 gMonBackPic_Meganium[] = INCBIN_U8("graphics/pokemon/meganium/back.4bpp.lz");
const u8 gMonShinyPalette_Meganium[] = INCBIN_U8("graphics/pokemon/meganium/shiny.gbapal.lz");
const u8 gMonIcon_Meganium[] = INCBIN_U8("graphics/pokemon/meganium/icon.4bpp");
const u8 gMonFootprint_Meganium[] = INCBIN_U8("graphics/pokemon/meganium/footprint.1bpp");
const u8 gMonFrontPic_Cyndaquil[] = INCBIN_U8("graphics/pokemon/cyndaquil/front.4bpp.lz");
const u8 gMonPalette_Cyndaquil[] = INCBIN_U8("graphics/pokemon/cyndaquil/normal.gbapal.lz");
const u8 gMonBackPic_Cyndaquil[] = INCBIN_U8("graphics/pokemon/cyndaquil/back.4bpp.lz");
const u8 gMonShinyPalette_Cyndaquil[] = INCBIN_U8("graphics/pokemon/cyndaquil/shiny.gbapal.lz");
const u8 gMonIcon_Cyndaquil[] = INCBIN_U8("graphics/pokemon/cyndaquil/icon.4bpp");
const u8 gMonFootprint_Cyndaquil[] = INCBIN_U8("graphics/pokemon/cyndaquil/footprint.1bpp");
const u8 gMonFrontPic_Quilava[] = INCBIN_U8("graphics/pokemon/quilava/front.4bpp.lz");
const u8 gMonPalette_Quilava[] = INCBIN_U8("graphics/pokemon/quilava/normal.gbapal.lz");
const u8 gMonBackPic_Quilava[] = INCBIN_U8("graphics/pokemon/quilava/back.4bpp.lz");
const u8 gMonShinyPalette_Quilava[] = INCBIN_U8("graphics/pokemon/quilava/shiny.gbapal.lz");
const u8 gMonIcon_Quilava[] = INCBIN_U8("graphics/pokemon/quilava/icon.4bpp");
const u8 gMonFootprint_Quilava[] = INCBIN_U8("graphics/pokemon/quilava/footprint.1bpp");
const u8 gMonFrontPic_Typhlosion[] = INCBIN_U8("graphics/pokemon/typhlosion/front.4bpp.lz");
const u8 gMonPalette_Typhlosion[] = INCBIN_U8("graphics/pokemon/typhlosion/normal.gbapal.lz");
const u8 gMonBackPic_Typhlosion[] = INCBIN_U8("graphics/pokemon/typhlosion/back.4bpp.lz");
const u8 gMonShinyPalette_Typhlosion[] = INCBIN_U8("graphics/pokemon/typhlosion/shiny.gbapal.lz");
const u8 gMonIcon_Typhlosion[] = INCBIN_U8("graphics/pokemon/typhlosion/icon.4bpp");
const u8 gMonFootprint_Typhlosion[] = INCBIN_U8("graphics/pokemon/typhlosion/footprint.1bpp");
const u8 gMonFrontPic_Totodile[] = INCBIN_U8("graphics/pokemon/totodile/front.4bpp.lz");
const u8 gMonPalette_Totodile[] = INCBIN_U8("graphics/pokemon/totodile/normal.gbapal.lz");
const u8 gMonBackPic_Totodile[] = INCBIN_U8("graphics/pokemon/totodile/back.4bpp.lz");
const u8 gMonShinyPalette_Totodile[] = INCBIN_U8("graphics/pokemon/totodile/shiny.gbapal.lz");
const u8 gMonIcon_Totodile[] = INCBIN_U8("graphics/pokemon/totodile/icon.4bpp");
const u8 gMonFootprint_Totodile[] = INCBIN_U8("graphics/pokemon/totodile/footprint.1bpp");
const u8 gMonFrontPic_Croconaw[] = INCBIN_U8("graphics/pokemon/croconaw/front.4bpp.lz");
const u8 gMonPalette_Croconaw[] = INCBIN_U8("graphics/pokemon/croconaw/normal.gbapal.lz");
const u8 gMonBackPic_Croconaw[] = INCBIN_U8("graphics/pokemon/croconaw/back.4bpp.lz");
const u8 gMonShinyPalette_Croconaw[] = INCBIN_U8("graphics/pokemon/croconaw/shiny.gbapal.lz");
const u8 gMonIcon_Croconaw[] = INCBIN_U8("graphics/pokemon/croconaw/icon.4bpp");
const u8 gMonFootprint_Croconaw[] = INCBIN_U8("graphics/pokemon/croconaw/footprint.1bpp");
const u8 gMonFrontPic_Feraligatr[] = INCBIN_U8("graphics/pokemon/feraligatr/front.4bpp.lz");
const u8 gMonPalette_Feraligatr[] = INCBIN_U8("graphics/pokemon/feraligatr/normal.gbapal.lz");
const u8 gMonBackPic_Feraligatr[] = INCBIN_U8("graphics/pokemon/feraligatr/back.4bpp.lz");
const u8 gMonShinyPalette_Feraligatr[] = INCBIN_U8("graphics/pokemon/feraligatr/shiny.gbapal.lz");
const u8 gMonIcon_Feraligatr[] = INCBIN_U8("graphics/pokemon/feraligatr/icon.4bpp");
const u8 gMonFootprint_Feraligatr[] = INCBIN_U8("graphics/pokemon/feraligatr/footprint.1bpp");
const u8 gMonFrontPic_Sentret[] = INCBIN_U8("graphics/pokemon/sentret/front.4bpp.lz");
const u8 gMonPalette_Sentret[] = INCBIN_U8("graphics/pokemon/sentret/normal.gbapal.lz");
const u8 gMonBackPic_Sentret[] = INCBIN_U8("graphics/pokemon/sentret/back.4bpp.lz");
const u8 gMonShinyPalette_Sentret[] = INCBIN_U8("graphics/pokemon/sentret/shiny.gbapal.lz");
const u8 gMonIcon_Sentret[] = INCBIN_U8("graphics/pokemon/sentret/icon.4bpp");
const u8 gMonFootprint_Sentret[] = INCBIN_U8("graphics/pokemon/sentret/footprint.1bpp");
const u8 gMonFrontPic_Furret[] = INCBIN_U8("graphics/pokemon/furret/front.4bpp.lz");
const u8 gMonPalette_Furret[] = INCBIN_U8("graphics/pokemon/furret/normal.gbapal.lz");
const u8 gMonBackPic_Furret[] = INCBIN_U8("graphics/pokemon/furret/back.4bpp.lz");
const u8 gMonShinyPalette_Furret[] = INCBIN_U8("graphics/pokemon/furret/shiny.gbapal.lz");
const u8 gMonIcon_Furret[] = INCBIN_U8("graphics/pokemon/furret/icon.4bpp");
const u8 gMonFootprint_Furret[] = INCBIN_U8("graphics/pokemon/furret/footprint.1bpp");
const u8 gMonFrontPic_Hoothoot[] = INCBIN_U8("graphics/pokemon/hoothoot/front.4bpp.lz");
const u8 gMonPalette_Hoothoot[] = INCBIN_U8("graphics/pokemon/hoothoot/normal.gbapal.lz");
const u8 gMonBackPic_Hoothoot[] = INCBIN_U8("graphics/pokemon/hoothoot/back.4bpp.lz");
const u8 gMonShinyPalette_Hoothoot[] = INCBIN_U8("graphics/pokemon/hoothoot/shiny.gbapal.lz");
const u8 gMonIcon_Hoothoot[] = INCBIN_U8("graphics/pokemon/hoothoot/icon.4bpp");
const u8 gMonFootprint_Hoothoot[] = INCBIN_U8("graphics/pokemon/hoothoot/footprint.1bpp");
const u8 gMonFrontPic_Noctowl[] = INCBIN_U8("graphics/pokemon/noctowl/front.4bpp.lz");
const u8 gMonPalette_Noctowl[] = INCBIN_U8("graphics/pokemon/noctowl/normal.gbapal.lz");
const u8 gMonBackPic_Noctowl[] = INCBIN_U8("graphics/pokemon/noctowl/back.4bpp.lz");
const u8 gMonShinyPalette_Noctowl[] = INCBIN_U8("graphics/pokemon/noctowl/shiny.gbapal.lz");
const u8 gMonIcon_Noctowl[] = INCBIN_U8("graphics/pokemon/noctowl/icon.4bpp");
const u8 gMonFootprint_Noctowl[] = INCBIN_U8("graphics/pokemon/noctowl/footprint.1bpp");
const u8 gMonFrontPic_Ledyba[] = INCBIN_U8("graphics/pokemon/ledyba/front.4bpp.lz");
const u8 gMonPalette_Ledyba[] = INCBIN_U8("graphics/pokemon/ledyba/normal.gbapal.lz");
const u8 gMonBackPic_Ledyba[] = INCBIN_U8("graphics/pokemon/ledyba/back.4bpp.lz");
const u8 gMonShinyPalette_Ledyba[] = INCBIN_U8("graphics/pokemon/ledyba/shiny.gbapal.lz");
const u8 gMonIcon_Ledyba[] = INCBIN_U8("graphics/pokemon/ledyba/icon.4bpp");
const u8 gMonFootprint_Ledyba[] = INCBIN_U8("graphics/pokemon/ledyba/footprint.1bpp");
const u8 gMonFrontPic_Ledian[] = INCBIN_U8("graphics/pokemon/ledian/front.4bpp.lz");
const u8 gMonPalette_Ledian[] = INCBIN_U8("graphics/pokemon/ledian/normal.gbapal.lz");
const u8 gMonBackPic_Ledian[] = INCBIN_U8("graphics/pokemon/ledian/back.4bpp.lz");
const u8 gMonShinyPalette_Ledian[] = INCBIN_U8("graphics/pokemon/ledian/shiny.gbapal.lz");
const u8 gMonIcon_Ledian[] = INCBIN_U8("graphics/pokemon/ledian/icon.4bpp");
const u8 gMonFootprint_Ledian[] = INCBIN_U8("graphics/pokemon/ledian/footprint.1bpp");
const u8 gMonFrontPic_Spinarak[] = INCBIN_U8("graphics/pokemon/spinarak/front.4bpp.lz");
const u8 gMonPalette_Spinarak[] = INCBIN_U8("graphics/pokemon/spinarak/normal.gbapal.lz");
const u8 gMonBackPic_Spinarak[] = INCBIN_U8("graphics/pokemon/spinarak/back.4bpp.lz");
const u8 gMonShinyPalette_Spinarak[] = INCBIN_U8("graphics/pokemon/spinarak/shiny.gbapal.lz");
const u8 gMonIcon_Spinarak[] = INCBIN_U8("graphics/pokemon/spinarak/icon.4bpp");
const u8 gMonFootprint_Spinarak[] = INCBIN_U8("graphics/pokemon/spinarak/footprint.1bpp");
const u8 gMonFrontPic_Ariados[] = INCBIN_U8("graphics/pokemon/ariados/front.4bpp.lz");
const u8 gMonPalette_Ariados[] = INCBIN_U8("graphics/pokemon/ariados/normal.gbapal.lz");
const u8 gMonBackPic_Ariados[] = INCBIN_U8("graphics/pokemon/ariados/back.4bpp.lz");
const u8 gMonShinyPalette_Ariados[] = INCBIN_U8("graphics/pokemon/ariados/shiny.gbapal.lz");
const u8 gMonIcon_Ariados[] = INCBIN_U8("graphics/pokemon/ariados/icon.4bpp");
const u8 gMonFootprint_Ariados[] = INCBIN_U8("graphics/pokemon/ariados/footprint.1bpp");
const u8 gMonFrontPic_Crobat[] = INCBIN_U8("graphics/pokemon/crobat/front.4bpp.lz");
const u8 gMonPalette_Crobat[] = INCBIN_U8("graphics/pokemon/crobat/normal.gbapal.lz");
const u8 gMonBackPic_Crobat[] = INCBIN_U8("graphics/pokemon/crobat/back.4bpp.lz");
const u8 gMonShinyPalette_Crobat[] = INCBIN_U8("graphics/pokemon/crobat/shiny.gbapal.lz");
const u8 gMonIcon_Crobat[] = INCBIN_U8("graphics/pokemon/crobat/icon.4bpp");
const u8 gMonFootprint_Crobat[] = INCBIN_U8("graphics/pokemon/crobat/footprint.1bpp");
const u8 gMonFrontPic_Chinchou[] = INCBIN_U8("graphics/pokemon/chinchou/front.4bpp.lz");
const u8 gMonPalette_Chinchou[] = INCBIN_U8("graphics/pokemon/chinchou/normal.gbapal.lz");
const u8 gMonBackPic_Chinchou[] = INCBIN_U8("graphics/pokemon/chinchou/back.4bpp.lz");
const u8 gMonShinyPalette_Chinchou[] = INCBIN_U8("graphics/pokemon/chinchou/shiny.gbapal.lz");
const u8 gMonIcon_Chinchou[] = INCBIN_U8("graphics/pokemon/chinchou/icon.4bpp");
const u8 gMonFootprint_Chinchou[] = INCBIN_U8("graphics/pokemon/chinchou/footprint.1bpp");
const u8 gMonFrontPic_Lanturn[] = INCBIN_U8("graphics/pokemon/lanturn/front.4bpp.lz");
const u8 gMonPalette_Lanturn[] = INCBIN_U8("graphics/pokemon/lanturn/normal.gbapal.lz");
const u8 gMonBackPic_Lanturn[] = INCBIN_U8("graphics/pokemon/lanturn/back.4bpp.lz");
const u8 gMonShinyPalette_Lanturn[] = INCBIN_U8("graphics/pokemon/lanturn/shiny.gbapal.lz");
const u8 gMonIcon_Lanturn[] = INCBIN_U8("graphics/pokemon/lanturn/icon.4bpp");
const u8 gMonFootprint_Lanturn[] = INCBIN_U8("graphics/pokemon/lanturn/footprint.1bpp");
const u8 gMonFrontPic_Pichu[] = INCBIN_U8("graphics/pokemon/pichu/front.4bpp.lz");
const u8 gMonPalette_Pichu[] = INCBIN_U8("graphics/pokemon/pichu/normal.gbapal.lz");
const u8 gMonBackPic_Pichu[] = INCBIN_U8("graphics/pokemon/pichu/back.4bpp.lz");
const u8 gMonShinyPalette_Pichu[] = INCBIN_U8("graphics/pokemon/pichu/shiny.gbapal.lz");
const u8 gMonIcon_Pichu[] = INCBIN_U8("graphics/pokemon/pichu/icon.4bpp");
const u8 gMonFootprint_Pichu[] = INCBIN_U8("graphics/pokemon/pichu/footprint.1bpp");
const u8 gMonFrontPic_Cleffa[] = INCBIN_U8("graphics/pokemon/cleffa/front.4bpp.lz");
const u8 gMonPalette_Cleffa[] = INCBIN_U8("graphics/pokemon/cleffa/normal.gbapal.lz");
const u8 gMonBackPic_Cleffa[] = INCBIN_U8("graphics/pokemon/cleffa/back.4bpp.lz");
const u8 gMonShinyPalette_Cleffa[] = INCBIN_U8("graphics/pokemon/cleffa/shiny.gbapal.lz");
const u8 gMonIcon_Cleffa[] = INCBIN_U8("graphics/pokemon/cleffa/icon.4bpp");
const u8 gMonFootprint_Cleffa[] = INCBIN_U8("graphics/pokemon/cleffa/footprint.1bpp");
const u8 gMonFrontPic_Igglybuff[] = INCBIN_U8("graphics/pokemon/igglybuff/front.4bpp.lz");
const u8 gMonPalette_Igglybuff[] = INCBIN_U8("graphics/pokemon/igglybuff/normal.gbapal.lz");
const u8 gMonBackPic_Igglybuff[] = INCBIN_U8("graphics/pokemon/igglybuff/back.4bpp.lz");
const u8 gMonShinyPalette_Igglybuff[] = INCBIN_U8("graphics/pokemon/igglybuff/shiny.gbapal.lz");
const u8 gMonIcon_Igglybuff[] = INCBIN_U8("graphics/pokemon/igglybuff/icon.4bpp");
const u8 gMonFootprint_Igglybuff[] = INCBIN_U8("graphics/pokemon/igglybuff/footprint.1bpp");
const u8 gMonFrontPic_Togepi[] = INCBIN_U8("graphics/pokemon/togepi/front.4bpp.lz");
const u8 gMonPalette_Togepi[] = INCBIN_U8("graphics/pokemon/togepi/normal.gbapal.lz");
const u8 gMonBackPic_Togepi[] = INCBIN_U8("graphics/pokemon/togepi/back.4bpp.lz");
const u8 gMonShinyPalette_Togepi[] = INCBIN_U8("graphics/pokemon/togepi/shiny.gbapal.lz");
const u8 gMonIcon_Togepi[] = INCBIN_U8("graphics/pokemon/togepi/icon.4bpp");
const u8 gMonFootprint_Togepi[] = INCBIN_U8("graphics/pokemon/togepi/footprint.1bpp");
const u8 gMonFrontPic_Togetic[] = INCBIN_U8("graphics/pokemon/togetic/front.4bpp.lz");
const u8 gMonPalette_Togetic[] = INCBIN_U8("graphics/pokemon/togetic/normal.gbapal.lz");
const u8 gMonBackPic_Togetic[] = INCBIN_U8("graphics/pokemon/togetic/back.4bpp.lz");
const u8 gMonShinyPalette_Togetic[] = INCBIN_U8("graphics/pokemon/togetic/shiny.gbapal.lz");
const u8 gMonIcon_Togetic[] = INCBIN_U8("graphics/pokemon/togetic/icon.4bpp");
const u8 gMonFootprint_Togetic[] = INCBIN_U8("graphics/pokemon/togetic/footprint.1bpp");
const u8 gMonFrontPic_Natu[] = INCBIN_U8("graphics/pokemon/natu/front.4bpp.lz");
const u8 gMonPalette_Natu[] = INCBIN_U8("graphics/pokemon/natu/normal.gbapal.lz");
const u8 gMonBackPic_Natu[] = INCBIN_U8("graphics/pokemon/natu/back.4bpp.lz");
const u8 gMonShinyPalette_Natu[] = INCBIN_U8("graphics/pokemon/natu/shiny.gbapal.lz");
const u8 gMonIcon_Natu[] = INCBIN_U8("graphics/pokemon/natu/icon.4bpp");
const u8 gMonFootprint_Natu[] = INCBIN_U8("graphics/pokemon/natu/footprint.1bpp");
const u8 gMonFrontPic_Xatu[] = INCBIN_U8("graphics/pokemon/xatu/front.4bpp.lz");
const u8 gMonPalette_Xatu[] = INCBIN_U8("graphics/pokemon/xatu/normal.gbapal.lz");
const u8 gMonBackPic_Xatu[] = INCBIN_U8("graphics/pokemon/xatu/back.4bpp.lz");
const u8 gMonShinyPalette_Xatu[] = INCBIN_U8("graphics/pokemon/xatu/shiny.gbapal.lz");
const u8 gMonIcon_Xatu[] = INCBIN_U8("graphics/pokemon/xatu/icon.4bpp");
const u8 gMonFootprint_Xatu[] = INCBIN_U8("graphics/pokemon/xatu/footprint.1bpp");
const u8 gMonFrontPic_Mareep[] = INCBIN_U8("graphics/pokemon/mareep/front.4bpp.lz");
const u8 gMonPalette_Mareep[] = INCBIN_U8("graphics/pokemon/mareep/normal.gbapal.lz");
const u8 gMonBackPic_Mareep[] = INCBIN_U8("graphics/pokemon/mareep/back.4bpp.lz");
const u8 gMonShinyPalette_Mareep[] = INCBIN_U8("graphics/pokemon/mareep/shiny.gbapal.lz");
const u8 gMonIcon_Mareep[] = INCBIN_U8("graphics/pokemon/mareep/icon.4bpp");
const u8 gMonFootprint_Mareep[] = INCBIN_U8("graphics/pokemon/mareep/footprint.1bpp");
const u8 gMonFrontPic_Flaaffy[] = INCBIN_U8("graphics/pokemon/flaaffy/front.4bpp.lz");
const u8 gMonPalette_Flaaffy[] = INCBIN_U8("graphics/pokemon/flaaffy/normal.gbapal.lz");
const u8 gMonBackPic_Flaaffy[] = INCBIN_U8("graphics/pokemon/flaaffy/back.4bpp.lz");
const u8 gMonShinyPalette_Flaaffy[] = INCBIN_U8("graphics/pokemon/flaaffy/shiny.gbapal.lz");
const u8 gMonIcon_Flaaffy[] = INCBIN_U8("graphics/pokemon/flaaffy/icon.4bpp");
const u8 gMonFootprint_Flaaffy[] = INCBIN_U8("graphics/pokemon/flaaffy/footprint.1bpp");
const u8 gMonFrontPic_Ampharos[] = INCBIN_U8("graphics/pokemon/ampharos/front.4bpp.lz");
const u8 gMonPalette_Ampharos[] = INCBIN_U8("graphics/pokemon/ampharos/normal.gbapal.lz");
const u8 gMonBackPic_Ampharos[] = INCBIN_U8("graphics/pokemon/ampharos/back.4bpp.lz");
const u8 gMonShinyPalette_Ampharos[] = INCBIN_U8("graphics/pokemon/ampharos/shiny.gbapal.lz");
const u8 gMonIcon_Ampharos[] = INCBIN_U8("graphics/pokemon/ampharos/icon.4bpp");
const u8 gMonFootprint_Ampharos[] = INCBIN_U8("graphics/pokemon/ampharos/footprint.1bpp");
const u8 gMonFrontPic_Bellossom[] = INCBIN_U8("graphics/pokemon/bellossom/front.4bpp.lz");
const u8 gMonPalette_Bellossom[] = INCBIN_U8("graphics/pokemon/bellossom/normal.gbapal.lz");
const u8 gMonBackPic_Bellossom[] = INCBIN_U8("graphics/pokemon/bellossom/back.4bpp.lz");
const u8 gMonShinyPalette_Bellossom[] = INCBIN_U8("graphics/pokemon/bellossom/shiny.gbapal.lz");
const u8 gMonIcon_Bellossom[] = INCBIN_U8("graphics/pokemon/bellossom/icon.4bpp");
const u8 gMonFootprint_Bellossom[] = INCBIN_U8("graphics/pokemon/bellossom/footprint.1bpp");
const u8 gMonFrontPic_Marill[] = INCBIN_U8("graphics/pokemon/marill/front.4bpp.lz");
const u8 gMonPalette_Marill[] = INCBIN_U8("graphics/pokemon/marill/normal.gbapal.lz");
const u8 gMonBackPic_Marill[] = INCBIN_U8("graphics/pokemon/marill/back.4bpp.lz");
const u8 gMonShinyPalette_Marill[] = INCBIN_U8("graphics/pokemon/marill/shiny.gbapal.lz");
const u8 gMonIcon_Marill[] = INCBIN_U8("graphics/pokemon/marill/icon.4bpp");
const u8 gMonFootprint_Marill[] = INCBIN_U8("graphics/pokemon/marill/footprint.1bpp");
const u8 gMonFrontPic_Azumarill[] = INCBIN_U8("graphics/pokemon/azumarill/front.4bpp.lz");
const u8 gMonPalette_Azumarill[] = INCBIN_U8("graphics/pokemon/azumarill/normal.gbapal.lz");
const u8 gMonBackPic_Azumarill[] = INCBIN_U8("graphics/pokemon/azumarill/back.4bpp.lz");
const u8 gMonShinyPalette_Azumarill[] = INCBIN_U8("graphics/pokemon/azumarill/shiny.gbapal.lz");
const u8 gMonIcon_Azumarill[] = INCBIN_U8("graphics/pokemon/azumarill/icon.4bpp");
const u8 gMonFootprint_Azumarill[] = INCBIN_U8("graphics/pokemon/azumarill/footprint.1bpp");
const u8 gMonFrontPic_Sudowoodo[] = INCBIN_U8("graphics/pokemon/sudowoodo/front.4bpp.lz");
const u8 gMonPalette_Sudowoodo[] = INCBIN_U8("graphics/pokemon/sudowoodo/normal.gbapal.lz");
const u8 gMonBackPic_Sudowoodo[] = INCBIN_U8("graphics/pokemon/sudowoodo/back.4bpp.lz");
const u8 gMonShinyPalette_Sudowoodo[] = INCBIN_U8("graphics/pokemon/sudowoodo/shiny.gbapal.lz");
const u8 gMonIcon_Sudowoodo[] = INCBIN_U8("graphics/pokemon/sudowoodo/icon.4bpp");
const u8 gMonFootprint_Sudowoodo[] = INCBIN_U8("graphics/pokemon/sudowoodo/footprint.1bpp");
const u8 gMonFrontPic_Politoed[] = INCBIN_U8("graphics/pokemon/politoed/front.4bpp.lz");
const u8 gMonPalette_Politoed[] = INCBIN_U8("graphics/pokemon/politoed/normal.gbapal.lz");
const u8 gMonBackPic_Politoed[] = INCBIN_U8("graphics/pokemon/politoed/back.4bpp.lz");
const u8 gMonShinyPalette_Politoed[] = INCBIN_U8("graphics/pokemon/politoed/shiny.gbapal.lz");
const u8 gMonIcon_Politoed[] = INCBIN_U8("graphics/pokemon/politoed/icon.4bpp");
const u8 gMonFootprint_Politoed[] = INCBIN_U8("graphics/pokemon/politoed/footprint.1bpp");
const u8 gMonFrontPic_Hoppip[] = INCBIN_U8("graphics/pokemon/hoppip/front.4bpp.lz");
const u8 gMonPalette_Hoppip[] = INCBIN_U8("graphics/pokemon/hoppip/normal.gbapal.lz");
const u8 gMonBackPic_Hoppip[] = INCBIN_U8("graphics/pokemon/hoppip/back.4bpp.lz");
const u8 gMonShinyPalette_Hoppip[] = INCBIN_U8("graphics/pokemon/hoppip/shiny.gbapal.lz");
const u8 gMonIcon_Hoppip[] = INCBIN_U8("graphics/pokemon/hoppip/icon.4bpp");
const u8 gMonFootprint_Hoppip[] = INCBIN_U8("graphics/pokemon/hoppip/footprint.1bpp");
const u8 gMonFrontPic_Skiploom[] = INCBIN_U8("graphics/pokemon/skiploom/front.4bpp.lz");
const u8 gMonPalette_Skiploom[] = INCBIN_U8("graphics/pokemon/skiploom/normal.gbapal.lz");
const u8 gMonBackPic_Skiploom[] = INCBIN_U8("graphics/pokemon/skiploom/back.4bpp.lz");
const u8 gMonShinyPalette_Skiploom[] = INCBIN_U8("graphics/pokemon/skiploom/shiny.gbapal.lz");
const u8 gMonIcon_Skiploom[] = INCBIN_U8("graphics/pokemon/skiploom/icon.4bpp");
const u8 gMonFootprint_Skiploom[] = INCBIN_U8("graphics/pokemon/skiploom/footprint.1bpp");
const u8 gMonFrontPic_Jumpluff[] = INCBIN_U8("graphics/pokemon/jumpluff/front.4bpp.lz");
const u8 gMonPalette_Jumpluff[] = INCBIN_U8("graphics/pokemon/jumpluff/normal.gbapal.lz");
const u8 gMonBackPic_Jumpluff[] = INCBIN_U8("graphics/pokemon/jumpluff/back.4bpp.lz");
const u8 gMonShinyPalette_Jumpluff[] = INCBIN_U8("graphics/pokemon/jumpluff/shiny.gbapal.lz");
const u8 gMonIcon_Jumpluff[] = INCBIN_U8("graphics/pokemon/jumpluff/icon.4bpp");
const u8 gMonFootprint_Jumpluff[] = INCBIN_U8("graphics/pokemon/jumpluff/footprint.1bpp");
const u8 gMonFrontPic_Aipom[] = INCBIN_U8("graphics/pokemon/aipom/front.4bpp.lz");
const u8 gMonPalette_Aipom[] = INCBIN_U8("graphics/pokemon/aipom/normal.gbapal.lz");
const u8 gMonBackPic_Aipom[] = INCBIN_U8("graphics/pokemon/aipom/back.4bpp.lz");
const u8 gMonShinyPalette_Aipom[] = INCBIN_U8("graphics/pokemon/aipom/shiny.gbapal.lz");
const u8 gMonIcon_Aipom[] = INCBIN_U8("graphics/pokemon/aipom/icon.4bpp");
const u8 gMonFootprint_Aipom[] = INCBIN_U8("graphics/pokemon/aipom/footprint.1bpp");
const u8 gMonFrontPic_Sunkern[] = INCBIN_U8("graphics/pokemon/sunkern/front.4bpp.lz");
const u8 gMonPalette_Sunkern[] = INCBIN_U8("graphics/pokemon/sunkern/normal.gbapal.lz");
const u8 gMonBackPic_Sunkern[] = INCBIN_U8("graphics/pokemon/sunkern/back.4bpp.lz");
const u8 gMonShinyPalette_Sunkern[] = INCBIN_U8("graphics/pokemon/sunkern/shiny.gbapal.lz");
const u8 gMonIcon_Sunkern[] = INCBIN_U8("graphics/pokemon/sunkern/icon.4bpp");
const u8 gMonFootprint_Sunkern[] = INCBIN_U8("graphics/pokemon/sunkern/footprint.1bpp");
const u8 gMonFrontPic_Sunflora[] = INCBIN_U8("graphics/pokemon/sunflora/front.4bpp.lz");
const u8 gMonPalette_Sunflora[] = INCBIN_U8("graphics/pokemon/sunflora/normal.gbapal.lz");
const u8 gMonBackPic_Sunflora[] = INCBIN_U8("graphics/pokemon/sunflora/back.4bpp.lz");
const u8 gMonShinyPalette_Sunflora[] = INCBIN_U8("graphics/pokemon/sunflora/shiny.gbapal.lz");
const u8 gMonIcon_Sunflora[] = INCBIN_U8("graphics/pokemon/sunflora/icon.4bpp");
const u8 gMonFootprint_Sunflora[] = INCBIN_U8("graphics/pokemon/sunflora/footprint.1bpp");
const u8 gMonFrontPic_Yanma[] = INCBIN_U8("graphics/pokemon/yanma/front.4bpp.lz");
const u8 gMonPalette_Yanma[] = INCBIN_U8("graphics/pokemon/yanma/normal.gbapal.lz");
const u8 gMonBackPic_Yanma[] = INCBIN_U8("graphics/pokemon/yanma/back.4bpp.lz");
const u8 gMonShinyPalette_Yanma[] = INCBIN_U8("graphics/pokemon/yanma/shiny.gbapal.lz");
const u8 gMonIcon_Yanma[] = INCBIN_U8("graphics/pokemon/yanma/icon.4bpp");
const u8 gMonFootprint_Yanma[] = INCBIN_U8("graphics/pokemon/yanma/footprint.1bpp");
const u8 gMonFrontPic_Wooper[] = INCBIN_U8("graphics/pokemon/wooper/front.4bpp.lz");
const u8 gMonPalette_Wooper[] = INCBIN_U8("graphics/pokemon/wooper/normal.gbapal.lz");
const u8 gMonBackPic_Wooper[] = INCBIN_U8("graphics/pokemon/wooper/back.4bpp.lz");
const u8 gMonShinyPalette_Wooper[] = INCBIN_U8("graphics/pokemon/wooper/shiny.gbapal.lz");
const u8 gMonIcon_Wooper[] = INCBIN_U8("graphics/pokemon/wooper/icon.4bpp");
const u8 gMonFootprint_Wooper[] = INCBIN_U8("graphics/pokemon/wooper/footprint.1bpp");
const u8 gMonFrontPic_Quagsire[] = INCBIN_U8("graphics/pokemon/quagsire/front.4bpp.lz");
const u8 gMonPalette_Quagsire[] = INCBIN_U8("graphics/pokemon/quagsire/normal.gbapal.lz");
const u8 gMonBackPic_Quagsire[] = INCBIN_U8("graphics/pokemon/quagsire/back.4bpp.lz");
const u8 gMonShinyPalette_Quagsire[] = INCBIN_U8("graphics/pokemon/quagsire/shiny.gbapal.lz");
const u8 gMonIcon_Quagsire[] = INCBIN_U8("graphics/pokemon/quagsire/icon.4bpp");
const u8 gMonFootprint_Quagsire[] = INCBIN_U8("graphics/pokemon/quagsire/footprint.1bpp");
const u8 gMonFrontPic_Espeon[] = INCBIN_U8("graphics/pokemon/espeon/front.4bpp.lz");
const u8 gMonPalette_Espeon[] = INCBIN_U8("graphics/pokemon/espeon/normal.gbapal.lz");
const u8 gMonBackPic_Espeon[] = INCBIN_U8("graphics/pokemon/espeon/back.4bpp.lz");
const u8 gMonShinyPalette_Espeon[] = INCBIN_U8("graphics/pokemon/espeon/shiny.gbapal.lz");
const u8 gMonIcon_Espeon[] = INCBIN_U8("graphics/pokemon/espeon/icon.4bpp");
const u8 gMonFootprint_Espeon[] = INCBIN_U8("graphics/pokemon/espeon/footprint.1bpp");
const u8 gMonFrontPic_Umbreon[] = INCBIN_U8("graphics/pokemon/umbreon/front.4bpp.lz");
const u8 gMonPalette_Umbreon[] = INCBIN_U8("graphics/pokemon/umbreon/normal.gbapal.lz");
const u8 gMonBackPic_Umbreon[] = INCBIN_U8("graphics/pokemon/umbreon/back.4bpp.lz");
const u8 gMonShinyPalette_Umbreon[] = INCBIN_U8("graphics/pokemon/umbreon/shiny.gbapal.lz");
const u8 gMonIcon_Umbreon[] = INCBIN_U8("graphics/pokemon/umbreon/icon.4bpp");
const u8 gMonFootprint_Umbreon[] = INCBIN_U8("graphics/pokemon/umbreon/footprint.1bpp");
const u8 gMonFrontPic_Murkrow[] = INCBIN_U8("graphics/pokemon/murkrow/front.4bpp.lz");
const u8 gMonPalette_Murkrow[] = INCBIN_U8("graphics/pokemon/murkrow/normal.gbapal.lz");
const u8 gMonBackPic_Murkrow[] = INCBIN_U8("graphics/pokemon/murkrow/back.4bpp.lz");
const u8 gMonShinyPalette_Murkrow[] = INCBIN_U8("graphics/pokemon/murkrow/shiny.gbapal.lz");
const u8 gMonIcon_Murkrow[] = INCBIN_U8("graphics/pokemon/murkrow/icon.4bpp");
const u8 gMonFootprint_Murkrow[] = INCBIN_U8("graphics/pokemon/murkrow/footprint.1bpp");
const u8 gMonFrontPic_Slowking[] = INCBIN_U8("graphics/pokemon/slowking/front.4bpp.lz");
const u8 gMonPalette_Slowking[] = INCBIN_U8("graphics/pokemon/slowking/normal.gbapal.lz");
const u8 gMonBackPic_Slowking[] = INCBIN_U8("graphics/pokemon/slowking/back.4bpp.lz");
const u8 gMonShinyPalette_Slowking[] = INCBIN_U8("graphics/pokemon/slowking/shiny.gbapal.lz");
const u8 gMonIcon_Slowking[] = INCBIN_U8("graphics/pokemon/slowking/icon.4bpp");
const u8 gMonFootprint_Slowking[] = INCBIN_U8("graphics/pokemon/slowking/footprint.1bpp");
const u8 gMonFrontPic_Misdreavus[] = INCBIN_U8("graphics/pokemon/misdreavus/front.4bpp.lz");
const u8 gMonPalette_Misdreavus[] = INCBIN_U8("graphics/pokemon/misdreavus/normal.gbapal.lz");
const u8 gMonBackPic_Misdreavus[] = INCBIN_U8("graphics/pokemon/misdreavus/back.4bpp.lz");
const u8 gMonShinyPalette_Misdreavus[] = INCBIN_U8("graphics/pokemon/misdreavus/shiny.gbapal.lz");
const u8 gMonIcon_Misdreavus[] = INCBIN_U8("graphics/pokemon/misdreavus/icon.4bpp");
const u8 gMonFootprint_Misdreavus[] = INCBIN_U8("graphics/pokemon/misdreavus/footprint.1bpp");
const u8 gMonFrontPic_UnownA[] = INCBIN_U8("graphics/pokemon/unown/front_a.4bpp.lz");
const u8 gMonPalette_Unown[] = INCBIN_U8("graphics/pokemon/unown/normal.gbapal.lz");
const u8 gMonBackPic_UnownA[] = INCBIN_U8("graphics/pokemon/unown/back_a.4bpp.lz");
const u8 gMonShinyPalette_Unown[] = INCBIN_U8("graphics/pokemon/unown/shiny.gbapal.lz");
const u8 gMonIcon_UnownA[] = INCBIN_U8("graphics/pokemon/unown/icon_a.4bpp");
const u8 gMonFootprint_Unown[] = INCBIN_U8("graphics/pokemon/unown/footprint.1bpp");
const u8 gMonFrontPic_Wobbuffet[] = INCBIN_U8("graphics/pokemon/wobbuffet/front.4bpp.lz");
const u8 gMonPalette_Wobbuffet[] = INCBIN_U8("graphics/pokemon/wobbuffet/normal.gbapal.lz");
const u8 gMonBackPic_Wobbuffet[] = INCBIN_U8("graphics/pokemon/wobbuffet/back.4bpp.lz");
const u8 gMonShinyPalette_Wobbuffet[] = INCBIN_U8("graphics/pokemon/wobbuffet/shiny.gbapal.lz");
const u8 gMonIcon_Wobbuffet[] = INCBIN_U8("graphics/pokemon/wobbuffet/icon.4bpp");
const u8 gMonFootprint_Wobbuffet[] = INCBIN_U8("graphics/pokemon/wobbuffet/footprint.1bpp");
const u8 gMonFrontPic_Girafarig[] = INCBIN_U8("graphics/pokemon/girafarig/front.4bpp.lz");
const u8 gMonPalette_Girafarig[] = INCBIN_U8("graphics/pokemon/girafarig/normal.gbapal.lz");
const u8 gMonBackPic_Girafarig[] = INCBIN_U8("graphics/pokemon/girafarig/back.4bpp.lz");
const u8 gMonShinyPalette_Girafarig[] = INCBIN_U8("graphics/pokemon/girafarig/shiny.gbapal.lz");
const u8 gMonIcon_Girafarig[] = INCBIN_U8("graphics/pokemon/girafarig/icon.4bpp");
const u8 gMonFootprint_Girafarig[] = INCBIN_U8("graphics/pokemon/girafarig/footprint.1bpp");
const u8 gMonFrontPic_Pineco[] = INCBIN_U8("graphics/pokemon/pineco/front.4bpp.lz");
const u8 gMonPalette_Pineco[] = INCBIN_U8("graphics/pokemon/pineco/normal.gbapal.lz");
const u8 gMonBackPic_Pineco[] = INCBIN_U8("graphics/pokemon/pineco/back.4bpp.lz");
const u8 gMonShinyPalette_Pineco[] = INCBIN_U8("graphics/pokemon/pineco/shiny.gbapal.lz");
const u8 gMonIcon_Pineco[] = INCBIN_U8("graphics/pokemon/pineco/icon.4bpp");
const u8 gMonFootprint_Pineco[] = INCBIN_U8("graphics/pokemon/pineco/footprint.1bpp");
const u8 gMonFrontPic_Forretress[] = INCBIN_U8("graphics/pokemon/forretress/front.4bpp.lz");
const u8 gMonPalette_Forretress[] = INCBIN_U8("graphics/pokemon/forretress/normal.gbapal.lz");
const u8 gMonBackPic_Forretress[] = INCBIN_U8("graphics/pokemon/forretress/back.4bpp.lz");
const u8 gMonShinyPalette_Forretress[] = INCBIN_U8("graphics/pokemon/forretress/shiny.gbapal.lz");
const u8 gMonIcon_Forretress[] = INCBIN_U8("graphics/pokemon/forretress/icon.4bpp");
const u8 gMonFootprint_Forretress[] = INCBIN_U8("graphics/pokemon/forretress/footprint.1bpp");
const u8 gMonFrontPic_Dunsparce[] = INCBIN_U8("graphics/pokemon/dunsparce/front.4bpp.lz");
const u8 gMonPalette_Dunsparce[] = INCBIN_U8("graphics/pokemon/dunsparce/normal.gbapal.lz");
const u8 gMonBackPic_Dunsparce[] = INCBIN_U8("graphics/pokemon/dunsparce/back.4bpp.lz");
const u8 gMonShinyPalette_Dunsparce[] = INCBIN_U8("graphics/pokemon/dunsparce/shiny.gbapal.lz");
const u8 gMonIcon_Dunsparce[] = INCBIN_U8("graphics/pokemon/dunsparce/icon.4bpp");
const u8 gMonFootprint_Dunsparce[] = INCBIN_U8("graphics/pokemon/dunsparce/footprint.1bpp");
const u8 gMonFrontPic_Gligar[] = INCBIN_U8("graphics/pokemon/gligar/front.4bpp.lz");
const u8 gMonPalette_Gligar[] = INCBIN_U8("graphics/pokemon/gligar/normal.gbapal.lz");
const u8 gMonBackPic_Gligar[] = INCBIN_U8("graphics/pokemon/gligar/back.4bpp.lz");
const u8 gMonShinyPalette_Gligar[] = INCBIN_U8("graphics/pokemon/gligar/shiny.gbapal.lz");
const u8 gMonIcon_Gligar[] = INCBIN_U8("graphics/pokemon/gligar/icon.4bpp");
const u8 gMonFootprint_Gligar[] = INCBIN_U8("graphics/pokemon/gligar/footprint.1bpp");
const u8 gMonFrontPic_Steelix[] = INCBIN_U8("graphics/pokemon/steelix/front.4bpp.lz");
const u8 gMonPalette_Steelix[] = INCBIN_U8("graphics/pokemon/steelix/normal.gbapal.lz");
const u8 gMonBackPic_Steelix[] = INCBIN_U8("graphics/pokemon/steelix/back.4bpp.lz");
const u8 gMonShinyPalette_Steelix[] = INCBIN_U8("graphics/pokemon/steelix/shiny.gbapal.lz");
const u8 gMonIcon_Steelix[] = INCBIN_U8("graphics/pokemon/steelix/icon.4bpp");
const u8 gMonFootprint_Steelix[] = INCBIN_U8("graphics/pokemon/steelix/footprint.1bpp");
const u8 gMonFrontPic_Snubbull[] = INCBIN_U8("graphics/pokemon/snubbull/front.4bpp.lz");
const u8 gMonPalette_Snubbull[] = INCBIN_U8("graphics/pokemon/snubbull/normal.gbapal.lz");
const u8 gMonBackPic_Snubbull[] = INCBIN_U8("graphics/pokemon/snubbull/back.4bpp.lz");
const u8 gMonShinyPalette_Snubbull[] = INCBIN_U8("graphics/pokemon/snubbull/shiny.gbapal.lz");
const u8 gMonIcon_Snubbull[] = INCBIN_U8("graphics/pokemon/snubbull/icon.4bpp");
const u8 gMonFootprint_Snubbull[] = INCBIN_U8("graphics/pokemon/snubbull/footprint.1bpp");
const u8 gMonFrontPic_Granbull[] = INCBIN_U8("graphics/pokemon/granbull/front.4bpp.lz");
const u8 gMonPalette_Granbull[] = INCBIN_U8("graphics/pokemon/granbull/normal.gbapal.lz");
const u8 gMonBackPic_Granbull[] = INCBIN_U8("graphics/pokemon/granbull/back.4bpp.lz");
const u8 gMonShinyPalette_Granbull[] = INCBIN_U8("graphics/pokemon/granbull/shiny.gbapal.lz");
const u8 gMonIcon_Granbull[] = INCBIN_U8("graphics/pokemon/granbull/icon.4bpp");
const u8 gMonFootprint_Granbull[] = INCBIN_U8("graphics/pokemon/granbull/footprint.1bpp");
const u8 gMonFrontPic_Qwilfish[] = INCBIN_U8("graphics/pokemon/qwilfish/front.4bpp.lz");
const u8 gMonPalette_Qwilfish[] = INCBIN_U8("graphics/pokemon/qwilfish/normal.gbapal.lz");
const u8 gMonBackPic_Qwilfish[] = INCBIN_U8("graphics/pokemon/qwilfish/back.4bpp.lz");
const u8 gMonShinyPalette_Qwilfish[] = INCBIN_U8("graphics/pokemon/qwilfish/shiny.gbapal.lz");
const u8 gMonIcon_Qwilfish[] = INCBIN_U8("graphics/pokemon/qwilfish/icon.4bpp");
const u8 gMonFootprint_Qwilfish[] = INCBIN_U8("graphics/pokemon/qwilfish/footprint.1bpp");
const u8 gMonFrontPic_Scizor[] = INCBIN_U8("graphics/pokemon/scizor/front.4bpp.lz");
const u8 gMonPalette_Scizor[] = INCBIN_U8("graphics/pokemon/scizor/normal.gbapal.lz");
const u8 gMonBackPic_Scizor[] = INCBIN_U8("graphics/pokemon/scizor/back.4bpp.lz");
const u8 gMonShinyPalette_Scizor[] = INCBIN_U8("graphics/pokemon/scizor/shiny.gbapal.lz");
const u8 gMonIcon_Scizor[] = INCBIN_U8("graphics/pokemon/scizor/icon.4bpp");
const u8 gMonFootprint_Scizor[] = INCBIN_U8("graphics/pokemon/scizor/footprint.1bpp");
const u8 gMonFrontPic_Shuckle[] = INCBIN_U8("graphics/pokemon/shuckle/front.4bpp.lz");
const u8 gMonPalette_Shuckle[] = INCBIN_U8("graphics/pokemon/shuckle/normal.gbapal.lz");
const u8 gMonBackPic_Shuckle[] = INCBIN_U8("graphics/pokemon/shuckle/back.4bpp.lz");
const u8 gMonShinyPalette_Shuckle[] = INCBIN_U8("graphics/pokemon/shuckle/shiny.gbapal.lz");
const u8 gMonIcon_Shuckle[] = INCBIN_U8("graphics/pokemon/shuckle/icon.4bpp");
const u8 gMonFootprint_Shuckle[] = INCBIN_U8("graphics/pokemon/shuckle/footprint.1bpp");
const u8 gMonFrontPic_Heracross[] = INCBIN_U8("graphics/pokemon/heracross/front.4bpp.lz");
const u8 gMonPalette_Heracross[] = INCBIN_U8("graphics/pokemon/heracross/normal.gbapal.lz");
const u8 gMonBackPic_Heracross[] = INCBIN_U8("graphics/pokemon/heracross/back.4bpp.lz");
const u8 gMonShinyPalette_Heracross[] = INCBIN_U8("graphics/pokemon/heracross/shiny.gbapal.lz");
const u8 gMonIcon_Heracross[] = INCBIN_U8("graphics/pokemon/heracross/icon.4bpp");
const u8 gMonFootprint_Heracross[] = INCBIN_U8("graphics/pokemon/heracross/footprint.1bpp");
const u8 gMonFrontPic_Sneasel[] = INCBIN_U8("graphics/pokemon/sneasel/front.4bpp.lz");
const u8 gMonPalette_Sneasel[] = INCBIN_U8("graphics/pokemon/sneasel/normal.gbapal.lz");
const u8 gMonBackPic_Sneasel[] = INCBIN_U8("graphics/pokemon/sneasel/back.4bpp.lz");
const u8 gMonShinyPalette_Sneasel[] = INCBIN_U8("graphics/pokemon/sneasel/shiny.gbapal.lz");
const u8 gMonIcon_Sneasel[] = INCBIN_U8("graphics/pokemon/sneasel/icon.4bpp");
const u8 gMonFootprint_Sneasel[] = INCBIN_U8("graphics/pokemon/sneasel/footprint.1bpp");
const u8 gMonFrontPic_Teddiursa[] = INCBIN_U8("graphics/pokemon/teddiursa/front.4bpp.lz");
const u8 gMonPalette_Teddiursa[] = INCBIN_U8("graphics/pokemon/teddiursa/normal.gbapal.lz");
const u8 gMonBackPic_Teddiursa[] = INCBIN_U8("graphics/pokemon/teddiursa/back.4bpp.lz");
const u8 gMonShinyPalette_Teddiursa[] = INCBIN_U8("graphics/pokemon/teddiursa/shiny.gbapal.lz");
const u8 gMonIcon_Teddiursa[] = INCBIN_U8("graphics/pokemon/teddiursa/icon.4bpp");
const u8 gMonFootprint_Teddiursa[] = INCBIN_U8("graphics/pokemon/teddiursa/footprint.1bpp");
const u8 gMonFrontPic_Ursaring[] = INCBIN_U8("graphics/pokemon/ursaring/front.4bpp.lz");
const u8 gMonPalette_Ursaring[] = INCBIN_U8("graphics/pokemon/ursaring/normal.gbapal.lz");
const u8 gMonBackPic_Ursaring[] = INCBIN_U8("graphics/pokemon/ursaring/back.4bpp.lz");
const u8 gMonShinyPalette_Ursaring[] = INCBIN_U8("graphics/pokemon/ursaring/shiny.gbapal.lz");
const u8 gMonIcon_Ursaring[] = INCBIN_U8("graphics/pokemon/ursaring/icon.4bpp");
const u8 gMonFootprint_Ursaring[] = INCBIN_U8("graphics/pokemon/ursaring/footprint.1bpp");
const u8 gMonFrontPic_Slugma[] = INCBIN_U8("graphics/pokemon/slugma/front.4bpp.lz");
const u8 gMonPalette_Slugma[] = INCBIN_U8("graphics/pokemon/slugma/normal.gbapal.lz");
const u8 gMonBackPic_Slugma[] = INCBIN_U8("graphics/pokemon/slugma/back.4bpp.lz");
const u8 gMonShinyPalette_Slugma[] = INCBIN_U8("graphics/pokemon/slugma/shiny.gbapal.lz");
const u8 gMonIcon_Slugma[] = INCBIN_U8("graphics/pokemon/slugma/icon.4bpp");
const u8 gMonFootprint_Slugma[] = INCBIN_U8("graphics/pokemon/slugma/footprint.1bpp");
const u8 gMonFrontPic_Magcargo[] = INCBIN_U8("graphics/pokemon/magcargo/front.4bpp.lz");
const u8 gMonPalette_Magcargo[] = INCBIN_U8("graphics/pokemon/magcargo/normal.gbapal.lz");
const u8 gMonBackPic_Magcargo[] = INCBIN_U8("graphics/pokemon/magcargo/back.4bpp.lz");
const u8 gMonShinyPalette_Magcargo[] = INCBIN_U8("graphics/pokemon/magcargo/shiny.gbapal.lz");
const u8 gMonIcon_Magcargo[] = INCBIN_U8("graphics/pokemon/magcargo/icon.4bpp");
const u8 gMonFootprint_Magcargo[] = INCBIN_U8("graphics/pokemon/magcargo/footprint.1bpp");
const u8 gMonFrontPic_Swinub[] = INCBIN_U8("graphics/pokemon/swinub/front.4bpp.lz");
const u8 gMonPalette_Swinub[] = INCBIN_U8("graphics/pokemon/swinub/normal.gbapal.lz");
const u8 gMonBackPic_Swinub[] = INCBIN_U8("graphics/pokemon/swinub/back.4bpp.lz");
const u8 gMonShinyPalette_Swinub[] = INCBIN_U8("graphics/pokemon/swinub/shiny.gbapal.lz");
const u8 gMonIcon_Swinub[] = INCBIN_U8("graphics/pokemon/swinub/icon.4bpp");
const u8 gMonFootprint_Swinub[] = INCBIN_U8("graphics/pokemon/swinub/footprint.1bpp");
const u8 gMonFrontPic_Piloswine[] = INCBIN_U8("graphics/pokemon/piloswine/front.4bpp.lz");
const u8 gMonPalette_Piloswine[] = INCBIN_U8("graphics/pokemon/piloswine/normal.gbapal.lz");
const u8 gMonBackPic_Piloswine[] = INCBIN_U8("graphics/pokemon/piloswine/back.4bpp.lz");
const u8 gMonShinyPalette_Piloswine[] = INCBIN_U8("graphics/pokemon/piloswine/shiny.gbapal.lz");
const u8 gMonIcon_Piloswine[] = INCBIN_U8("graphics/pokemon/piloswine/icon.4bpp");
const u8 gMonFootprint_Piloswine[] = INCBIN_U8("graphics/pokemon/piloswine/footprint.1bpp");
const u8 gMonFrontPic_Corsola[] = INCBIN_U8("graphics/pokemon/corsola/front.4bpp.lz");
const u8 gMonPalette_Corsola[] = INCBIN_U8("graphics/pokemon/corsola/normal.gbapal.lz");
const u8 gMonBackPic_Corsola[] = INCBIN_U8("graphics/pokemon/corsola/back.4bpp.lz");
const u8 gMonShinyPalette_Corsola[] = INCBIN_U8("graphics/pokemon/corsola/shiny.gbapal.lz");
const u8 gMonIcon_Corsola[] = INCBIN_U8("graphics/pokemon/corsola/icon.4bpp");
const u8 gMonFootprint_Corsola[] = INCBIN_U8("graphics/pokemon/corsola/footprint.1bpp");
const u8 gMonFrontPic_Remoraid[] = INCBIN_U8("graphics/pokemon/remoraid/front.4bpp.lz");
const u8 gMonPalette_Remoraid[] = INCBIN_U8("graphics/pokemon/remoraid/normal.gbapal.lz");
const u8 gMonBackPic_Remoraid[] = INCBIN_U8("graphics/pokemon/remoraid/back.4bpp.lz");
const u8 gMonShinyPalette_Remoraid[] = INCBIN_U8("graphics/pokemon/remoraid/shiny.gbapal.lz");
const u8 gMonIcon_Remoraid[] = INCBIN_U8("graphics/pokemon/remoraid/icon.4bpp");
const u8 gMonFootprint_Remoraid[] = INCBIN_U8("graphics/pokemon/remoraid/footprint.1bpp");
const u8 gMonFrontPic_Octillery[] = INCBIN_U8("graphics/pokemon/octillery/front.4bpp.lz");
const u8 gMonPalette_Octillery[] = INCBIN_U8("graphics/pokemon/octillery/normal.gbapal.lz");
const u8 gMonBackPic_Octillery[] = INCBIN_U8("graphics/pokemon/octillery/back.4bpp.lz");
const u8 gMonShinyPalette_Octillery[] = INCBIN_U8("graphics/pokemon/octillery/shiny.gbapal.lz");
const u8 gMonIcon_Octillery[] = INCBIN_U8("graphics/pokemon/octillery/icon.4bpp");
const u8 gMonFootprint_Octillery[] = INCBIN_U8("graphics/pokemon/octillery/footprint.1bpp");
const u8 gMonFrontPic_Delibird[] = INCBIN_U8("graphics/pokemon/delibird/front.4bpp.lz");
const u8 gMonPalette_Delibird[] = INCBIN_U8("graphics/pokemon/delibird/normal.gbapal.lz");
const u8 gMonBackPic_Delibird[] = INCBIN_U8("graphics/pokemon/delibird/back.4bpp.lz");
const u8 gMonShinyPalette_Delibird[] = INCBIN_U8("graphics/pokemon/delibird/shiny.gbapal.lz");
const u8 gMonIcon_Delibird[] = INCBIN_U8("graphics/pokemon/delibird/icon.4bpp");
const u8 gMonFootprint_Delibird[] = INCBIN_U8("graphics/pokemon/delibird/footprint.1bpp");
const u8 gMonFrontPic_Mantine[] = INCBIN_U8("graphics/pokemon/mantine/front.4bpp.lz");
const u8 gMonPalette_Mantine[] = INCBIN_U8("graphics/pokemon/mantine/normal.gbapal.lz");
const u8 gMonBackPic_Mantine[] = INCBIN_U8("graphics/pokemon/mantine/back.4bpp.lz");
const u8 gMonShinyPalette_Mantine[] = INCBIN_U8("graphics/pokemon/mantine/shiny.gbapal.lz");
const u8 gMonIcon_Mantine[] = INCBIN_U8("graphics/pokemon/mantine/icon.4bpp");
const u8 gMonFootprint_Mantine[] = INCBIN_U8("graphics/pokemon/mantine/footprint.1bpp");
const u8 gMonFrontPic_Skarmory[] = INCBIN_U8("graphics/pokemon/skarmory/front.4bpp.lz");
const u8 gMonPalette_Skarmory[] = INCBIN_U8("graphics/pokemon/skarmory/normal.gbapal.lz");
const u8 gMonBackPic_Skarmory[] = INCBIN_U8("graphics/pokemon/skarmory/back.4bpp.lz");
const u8 gMonShinyPalette_Skarmory[] = INCBIN_U8("graphics/pokemon/skarmory/shiny.gbapal.lz");
const u8 gMonIcon_Skarmory[] = INCBIN_U8("graphics/pokemon/skarmory/icon.4bpp");
const u8 gMonFootprint_Skarmory[] = INCBIN_U8("graphics/pokemon/skarmory/footprint.1bpp");
const u8 gMonFrontPic_Houndour[] = INCBIN_U8("graphics/pokemon/houndour/front.4bpp.lz");
const u8 gMonPalette_Houndour[] = INCBIN_U8("graphics/pokemon/houndour/normal.gbapal.lz");
const u8 gMonBackPic_Houndour[] = INCBIN_U8("graphics/pokemon/houndour/back.4bpp.lz");
const u8 gMonShinyPalette_Houndour[] = INCBIN_U8("graphics/pokemon/houndour/shiny.gbapal.lz");
const u8 gMonIcon_Houndour[] = INCBIN_U8("graphics/pokemon/houndour/icon.4bpp");
const u8 gMonFootprint_Houndour[] = INCBIN_U8("graphics/pokemon/houndour/footprint.1bpp");
const u8 gMonFrontPic_Houndoom[] = INCBIN_U8("graphics/pokemon/houndoom/front.4bpp.lz");
const u8 gMonPalette_Houndoom[] = INCBIN_U8("graphics/pokemon/houndoom/normal.gbapal.lz");
const u8 gMonBackPic_Houndoom[] = INCBIN_U8("graphics/pokemon/houndoom/back.4bpp.lz");
const u8 gMonShinyPalette_Houndoom[] = INCBIN_U8("graphics/pokemon/houndoom/shiny.gbapal.lz");
const u8 gMonIcon_Houndoom[] = INCBIN_U8("graphics/pokemon/houndoom/icon.4bpp");
const u8 gMonFootprint_Houndoom[] = INCBIN_U8("graphics/pokemon/houndoom/footprint.1bpp");
const u8 gMonFrontPic_Kingdra[] = INCBIN_U8("graphics/pokemon/kingdra/front.4bpp.lz");
const u8 gMonPalette_Kingdra[] = INCBIN_U8("graphics/pokemon/kingdra/normal.gbapal.lz");
const u8 gMonBackPic_Kingdra[] = INCBIN_U8("graphics/pokemon/kingdra/back.4bpp.lz");
const u8 gMonShinyPalette_Kingdra[] = INCBIN_U8("graphics/pokemon/kingdra/shiny.gbapal.lz");
const u8 gMonIcon_Kingdra[] = INCBIN_U8("graphics/pokemon/kingdra/icon.4bpp");
const u8 gMonFootprint_Kingdra[] = INCBIN_U8("graphics/pokemon/kingdra/footprint.1bpp");
const u8 gMonFrontPic_Phanpy[] = INCBIN_U8("graphics/pokemon/phanpy/front.4bpp.lz");
const u8 gMonPalette_Phanpy[] = INCBIN_U8("graphics/pokemon/phanpy/normal.gbapal.lz");
const u8 gMonBackPic_Phanpy[] = INCBIN_U8("graphics/pokemon/phanpy/back.4bpp.lz");
const u8 gMonShinyPalette_Phanpy[] = INCBIN_U8("graphics/pokemon/phanpy/shiny.gbapal.lz");
const u8 gMonIcon_Phanpy[] = INCBIN_U8("graphics/pokemon/phanpy/icon.4bpp");
const u8 gMonFootprint_Phanpy[] = INCBIN_U8("graphics/pokemon/phanpy/footprint.1bpp");
const u8 gMonFrontPic_Donphan[] = INCBIN_U8("graphics/pokemon/donphan/front.4bpp.lz");
const u8 gMonPalette_Donphan[] = INCBIN_U8("graphics/pokemon/donphan/normal.gbapal.lz");
const u8 gMonBackPic_Donphan[] = INCBIN_U8("graphics/pokemon/donphan/back.4bpp.lz");
const u8 gMonShinyPalette_Donphan[] = INCBIN_U8("graphics/pokemon/donphan/shiny.gbapal.lz");
const u8 gMonIcon_Donphan[] = INCBIN_U8("graphics/pokemon/donphan/icon.4bpp");
const u8 gMonFootprint_Donphan[] = INCBIN_U8("graphics/pokemon/donphan/footprint.1bpp");
const u8 gMonFrontPic_Porygon2[] = INCBIN_U8("graphics/pokemon/porygon2/front.4bpp.lz");
const u8 gMonPalette_Porygon2[] = INCBIN_U8("graphics/pokemon/porygon2/normal.gbapal.lz");
const u8 gMonBackPic_Porygon2[] = INCBIN_U8("graphics/pokemon/porygon2/back.4bpp.lz");
const u8 gMonShinyPalette_Porygon2[] = INCBIN_U8("graphics/pokemon/porygon2/shiny.gbapal.lz");
const u8 gMonIcon_Porygon2[] = INCBIN_U8("graphics/pokemon/porygon2/icon.4bpp");
const u8 gMonFootprint_Porygon2[] = INCBIN_U8("graphics/pokemon/porygon2/footprint.1bpp");
const u8 gMonFrontPic_Stantler[] = INCBIN_U8("graphics/pokemon/stantler/front.4bpp.lz");
const u8 gMonPalette_Stantler[] = INCBIN_U8("graphics/pokemon/stantler/normal.gbapal.lz");
const u8 gMonBackPic_Stantler[] = INCBIN_U8("graphics/pokemon/stantler/back.4bpp.lz");
const u8 gMonShinyPalette_Stantler[] = INCBIN_U8("graphics/pokemon/stantler/shiny.gbapal.lz");
const u8 gMonIcon_Stantler[] = INCBIN_U8("graphics/pokemon/stantler/icon.4bpp");
const u8 gMonFootprint_Stantler[] = INCBIN_U8("graphics/pokemon/stantler/footprint.1bpp");
const u8 gMonFrontPic_Smeargle[] = INCBIN_U8("graphics/pokemon/smeargle/front.4bpp.lz");
const u8 gMonPalette_Smeargle[] = INCBIN_U8("graphics/pokemon/smeargle/normal.gbapal.lz");
const u8 gMonBackPic_Smeargle[] = INCBIN_U8("graphics/pokemon/smeargle/back.4bpp.lz");
const u8 gMonShinyPalette_Smeargle[] = INCBIN_U8("graphics/pokemon/smeargle/shiny.gbapal.lz");
const u8 gMonIcon_Smeargle[] = INCBIN_U8("graphics/pokemon/smeargle/icon.4bpp");
const u8 gMonFootprint_Smeargle[] = INCBIN_U8("graphics/pokemon/smeargle/footprint.1bpp");
const u8 gMonFrontPic_Tyrogue[] = INCBIN_U8("graphics/pokemon/tyrogue/front.4bpp.lz");
const u8 gMonPalette_Tyrogue[] = INCBIN_U8("graphics/pokemon/tyrogue/normal.gbapal.lz");
const u8 gMonBackPic_Tyrogue[] = INCBIN_U8("graphics/pokemon/tyrogue/back.4bpp.lz");
const u8 gMonShinyPalette_Tyrogue[] = INCBIN_U8("graphics/pokemon/tyrogue/shiny.gbapal.lz");
const u8 gMonIcon_Tyrogue[] = INCBIN_U8("graphics/pokemon/tyrogue/icon.4bpp");
const u8 gMonFootprint_Tyrogue[] = INCBIN_U8("graphics/pokemon/tyrogue/footprint.1bpp");
const u8 gMonFrontPic_Hitmontop[] = INCBIN_U8("graphics/pokemon/hitmontop/front.4bpp.lz");
const u8 gMonPalette_Hitmontop[] = INCBIN_U8("graphics/pokemon/hitmontop/normal.gbapal.lz");
const u8 gMonBackPic_Hitmontop[] = INCBIN_U8("graphics/pokemon/hitmontop/back.4bpp.lz");
const u8 gMonShinyPalette_Hitmontop[] = INCBIN_U8("graphics/pokemon/hitmontop/shiny.gbapal.lz");
const u8 gMonIcon_Hitmontop[] = INCBIN_U8("graphics/pokemon/hitmontop/icon.4bpp");
const u8 gMonFootprint_Hitmontop[] = INCBIN_U8("graphics/pokemon/hitmontop/footprint.1bpp");
const u8 gMonFrontPic_Smoochum[] = INCBIN_U8("graphics/pokemon/smoochum/front.4bpp.lz");
const u8 gMonPalette_Smoochum[] = INCBIN_U8("graphics/pokemon/smoochum/normal.gbapal.lz");
const u8 gMonBackPic_Smoochum[] = INCBIN_U8("graphics/pokemon/smoochum/back.4bpp.lz");
const u8 gMonShinyPalette_Smoochum[] = INCBIN_U8("graphics/pokemon/smoochum/shiny.gbapal.lz");
const u8 gMonIcon_Smoochum[] = INCBIN_U8("graphics/pokemon/smoochum/icon.4bpp");
const u8 gMonFootprint_Smoochum[] = INCBIN_U8("graphics/pokemon/smoochum/footprint.1bpp");
const u8 gMonFrontPic_Elekid[] = INCBIN_U8("graphics/pokemon/elekid/front.4bpp.lz");
const u8 gMonPalette_Elekid[] = INCBIN_U8("graphics/pokemon/elekid/normal.gbapal.lz");
const u8 gMonBackPic_Elekid[] = INCBIN_U8("graphics/pokemon/elekid/back.4bpp.lz");
const u8 gMonShinyPalette_Elekid[] = INCBIN_U8("graphics/pokemon/elekid/shiny.gbapal.lz");
const u8 gMonIcon_Elekid[] = INCBIN_U8("graphics/pokemon/elekid/icon.4bpp");
const u8 gMonFootprint_Elekid[] = INCBIN_U8("graphics/pokemon/elekid/footprint.1bpp");
const u8 gMonFrontPic_Magby[] = INCBIN_U8("graphics/pokemon/magby/front.4bpp.lz");
const u8 gMonPalette_Magby[] = INCBIN_U8("graphics/pokemon/magby/normal.gbapal.lz");
const u8 gMonBackPic_Magby[] = INCBIN_U8("graphics/pokemon/magby/back.4bpp.lz");
const u8 gMonShinyPalette_Magby[] = INCBIN_U8("graphics/pokemon/magby/shiny.gbapal.lz");
const u8 gMonIcon_Magby[] = INCBIN_U8("graphics/pokemon/magby/icon.4bpp");
const u8 gMonFootprint_Magby[] = INCBIN_U8("graphics/pokemon/magby/footprint.1bpp");
const u8 gMonFrontPic_Miltank[] = INCBIN_U8("graphics/pokemon/miltank/front.4bpp.lz");
const u8 gMonPalette_Miltank[] = INCBIN_U8("graphics/pokemon/miltank/normal.gbapal.lz");
const u8 gMonBackPic_Miltank[] = INCBIN_U8("graphics/pokemon/miltank/back.4bpp.lz");
const u8 gMonShinyPalette_Miltank[] = INCBIN_U8("graphics/pokemon/miltank/shiny.gbapal.lz");
const u8 gMonIcon_Miltank[] = INCBIN_U8("graphics/pokemon/miltank/icon.4bpp");
const u8 gMonFootprint_Miltank[] = INCBIN_U8("graphics/pokemon/miltank/footprint.1bpp");
const u8 gMonFrontPic_Blissey[] = INCBIN_U8("graphics/pokemon/blissey/front.4bpp.lz");
const u8 gMonPalette_Blissey[] = INCBIN_U8("graphics/pokemon/blissey/normal.gbapal.lz");
const u8 gMonBackPic_Blissey[] = INCBIN_U8("graphics/pokemon/blissey/back.4bpp.lz");
const u8 gMonShinyPalette_Blissey[] = INCBIN_U8("graphics/pokemon/blissey/shiny.gbapal.lz");
const u8 gMonIcon_Blissey[] = INCBIN_U8("graphics/pokemon/blissey/icon.4bpp");
const u8 gMonFootprint_Blissey[] = INCBIN_U8("graphics/pokemon/blissey/footprint.1bpp");
const u8 gMonFrontPic_Raikou[] = INCBIN_U8("graphics/pokemon/raikou/front.4bpp.lz");
const u8 gMonPalette_Raikou[] = INCBIN_U8("graphics/pokemon/raikou/normal.gbapal.lz");
const u8 gMonBackPic_Raikou[] = INCBIN_U8("graphics/pokemon/raikou/back.4bpp.lz");
const u8 gMonShinyPalette_Raikou[] = INCBIN_U8("graphics/pokemon/raikou/shiny.gbapal.lz");
const u8 gMonIcon_Raikou[] = INCBIN_U8("graphics/pokemon/raikou/icon.4bpp");
const u8 gMonFootprint_Raikou[] = INCBIN_U8("graphics/pokemon/raikou/footprint.1bpp");
const u8 gMonFrontPic_Entei[] = INCBIN_U8("graphics/pokemon/entei/front.4bpp.lz");
const u8 gMonPalette_Entei[] = INCBIN_U8("graphics/pokemon/entei/normal.gbapal.lz");
const u8 gMonBackPic_Entei[] = INCBIN_U8("graphics/pokemon/entei/back.4bpp.lz");
const u8 gMonShinyPalette_Entei[] = INCBIN_U8("graphics/pokemon/entei/shiny.gbapal.lz");
const u8 gMonIcon_Entei[] = INCBIN_U8("graphics/pokemon/entei/icon.4bpp");
const u8 gMonFootprint_Entei[] = INCBIN_U8("graphics/pokemon/entei/footprint.1bpp");
const u8 gMonFrontPic_Suicune[] = INCBIN_U8("graphics/pokemon/suicune/front.4bpp.lz");
const u8 gMonPalette_Suicune[] = INCBIN_U8("graphics/pokemon/suicune/normal.gbapal.lz");
const u8 gMonBackPic_Suicune[] = INCBIN_U8("graphics/pokemon/suicune/back.4bpp.lz");
const u8 gMonShinyPalette_Suicune[] = INCBIN_U8("graphics/pokemon/suicune/shiny.gbapal.lz");
const u8 gMonIcon_Suicune[] = INCBIN_U8("graphics/pokemon/suicune/icon.4bpp");
const u8 gMonFootprint_Suicune[] = INCBIN_U8("graphics/pokemon/suicune/footprint.1bpp");
const u8 gMonFrontPic_Larvitar[] = INCBIN_U8("graphics/pokemon/larvitar/front.4bpp.lz");
const u8 gMonPalette_Larvitar[] = INCBIN_U8("graphics/pokemon/larvitar/normal.gbapal.lz");
const u8 gMonBackPic_Larvitar[] = INCBIN_U8("graphics/pokemon/larvitar/back.4bpp.lz");
const u8 gMonShinyPalette_Larvitar[] = INCBIN_U8("graphics/pokemon/larvitar/shiny.gbapal.lz");
const u8 gMonIcon_Larvitar[] = INCBIN_U8("graphics/pokemon/larvitar/icon.4bpp");
const u8 gMonFootprint_Larvitar[] = INCBIN_U8("graphics/pokemon/larvitar/footprint.1bpp");
const u8 gMonFrontPic_Pupitar[] = INCBIN_U8("graphics/pokemon/pupitar/front.4bpp.lz");
const u8 gMonPalette_Pupitar[] = INCBIN_U8("graphics/pokemon/pupitar/normal.gbapal.lz");
const u8 gMonBackPic_Pupitar[] = INCBIN_U8("graphics/pokemon/pupitar/back.4bpp.lz");
const u8 gMonShinyPalette_Pupitar[] = INCBIN_U8("graphics/pokemon/pupitar/shiny.gbapal.lz");
const u8 gMonIcon_Pupitar[] = INCBIN_U8("graphics/pokemon/pupitar/icon.4bpp");
const u8 gMonFootprint_Pupitar[] = INCBIN_U8("graphics/pokemon/pupitar/footprint.1bpp");
const u8 gMonFrontPic_Tyranitar[] = INCBIN_U8("graphics/pokemon/tyranitar/front.4bpp.lz");
const u8 gMonPalette_Tyranitar[] = INCBIN_U8("graphics/pokemon/tyranitar/normal.gbapal.lz");
const u8 gMonBackPic_Tyranitar[] = INCBIN_U8("graphics/pokemon/tyranitar/back.4bpp.lz");
const u8 gMonShinyPalette_Tyranitar[] = INCBIN_U8("graphics/pokemon/tyranitar/shiny.gbapal.lz");
const u8 gMonIcon_Tyranitar[] = INCBIN_U8("graphics/pokemon/tyranitar/icon.4bpp");
const u8 gMonFootprint_Tyranitar[] = INCBIN_U8("graphics/pokemon/tyranitar/footprint.1bpp");
const u8 gMonFrontPic_Lugia[] = INCBIN_U8("graphics/pokemon/lugia/front.4bpp.lz");
const u8 gMonPalette_Lugia[] = INCBIN_U8("graphics/pokemon/lugia/normal.gbapal.lz");
const u8 gMonBackPic_Lugia[] = INCBIN_U8("graphics/pokemon/lugia/back.4bpp.lz");
const u8 gMonShinyPalette_Lugia[] = INCBIN_U8("graphics/pokemon/lugia/shiny.gbapal.lz");
const u8 gMonIcon_Lugia[] = INCBIN_U8("graphics/pokemon/lugia/icon.4bpp");
const u8 gMonFootprint_Lugia[] = INCBIN_U8("graphics/pokemon/lugia/footprint.1bpp");
const u8 gMonFrontPic_HoOh[] = INCBIN_U8("graphics/pokemon/ho_oh/front.4bpp.lz");
const u8 gMonPalette_HoOh[] = INCBIN_U8("graphics/pokemon/ho_oh/normal.gbapal.lz");
const u8 gMonBackPic_HoOh[] = INCBIN_U8("graphics/pokemon/ho_oh/back.4bpp.lz");
const u8 gMonShinyPalette_HoOh[] = INCBIN_U8("graphics/pokemon/ho_oh/shiny.gbapal.lz");
const u8 gMonIcon_HoOh[] = INCBIN_U8("graphics/pokemon/ho_oh/icon.4bpp");
const u8 gMonFootprint_HoOh[] = INCBIN_U8("graphics/pokemon/ho_oh/footprint.1bpp");
const u8 gMonFrontPic_Celebi[] = INCBIN_U8("graphics/pokemon/celebi/front.4bpp.lz");
const u8 gMonPalette_Celebi[] = INCBIN_U8("graphics/pokemon/celebi/normal.gbapal.lz");
const u8 gMonBackPic_Celebi[] = INCBIN_U8("graphics/pokemon/celebi/back.4bpp.lz");
const u8 gMonShinyPalette_Celebi[] = INCBIN_U8("graphics/pokemon/celebi/shiny.gbapal.lz");
const u8 gMonIcon_Celebi[] = INCBIN_U8("graphics/pokemon/celebi/icon.4bpp");
const u8 gMonFootprint_Celebi[] = INCBIN_U8("graphics/pokemon/celebi/footprint.1bpp");
const u8 gMonFrontPic_QuestionMark[] = INCBIN_U8("graphics/pokemon/question_mark/front.4bpp.lz");
const u8 gMonPalette_QuestionMark[] = INCBIN_U8("graphics/pokemon/question_mark/normal.gbapal.lz");
const u8 gMonBackPic_QuestionMark[] = INCBIN_U8("graphics/pokemon/question_mark/back.4bpp.lz");
const u8 gMonShinyPalette_QuestionMark[] = INCBIN_U8("graphics/pokemon/question_mark/shiny.gbapal.lz");
const u8 gMonFrontPic_Treecko[] = INCBIN_U8("graphics/pokemon/treecko/front.4bpp.lz");
const u8 gMonPalette_Treecko[] = INCBIN_U8("graphics/pokemon/treecko/normal.gbapal.lz");
const u8 gMonBackPic_Treecko[] = INCBIN_U8("graphics/pokemon/treecko/back.4bpp.lz");
const u8 gMonShinyPalette_Treecko[] = INCBIN_U8("graphics/pokemon/treecko/shiny.gbapal.lz");
const u8 gMonIcon_Treecko[] = INCBIN_U8("graphics/pokemon/treecko/icon.4bpp");
const u8 gMonFootprint_Treecko[] = INCBIN_U8("graphics/pokemon/treecko/footprint.1bpp");
const u8 gMonFrontPic_Grovyle[] = INCBIN_U8("graphics/pokemon/grovyle/front.4bpp.lz");
const u8 gMonPalette_Grovyle[] = INCBIN_U8("graphics/pokemon/grovyle/normal.gbapal.lz");
const u8 gMonBackPic_Grovyle[] = INCBIN_U8("graphics/pokemon/grovyle/back.4bpp.lz");
const u8 gMonShinyPalette_Grovyle[] = INCBIN_U8("graphics/pokemon/grovyle/shiny.gbapal.lz");
const u8 gMonIcon_Grovyle[] = INCBIN_U8("graphics/pokemon/grovyle/icon.4bpp");
const u8 gMonFootprint_Grovyle[] = INCBIN_U8("graphics/pokemon/grovyle/footprint.1bpp");
const u8 gMonFrontPic_Sceptile[] = INCBIN_U8("graphics/pokemon/sceptile/front.4bpp.lz");
const u8 gMonPalette_Sceptile[] = INCBIN_U8("graphics/pokemon/sceptile/normal.gbapal.lz");
const u8 gMonBackPic_Sceptile[] = INCBIN_U8("graphics/pokemon/sceptile/back.4bpp.lz");
const u8 gMonShinyPalette_Sceptile[] = INCBIN_U8("graphics/pokemon/sceptile/shiny.gbapal.lz");
const u8 gMonIcon_Sceptile[] = INCBIN_U8("graphics/pokemon/sceptile/icon.4bpp");
const u8 gMonFootprint_Sceptile[] = INCBIN_U8("graphics/pokemon/sceptile/footprint.1bpp");
const u8 gMonFrontPic_Torchic[] = INCBIN_U8("graphics/pokemon/torchic/front.4bpp.lz");
const u8 gMonPalette_Torchic[] = INCBIN_U8("graphics/pokemon/torchic/normal.gbapal.lz");
const u8 gMonBackPic_Torchic[] = INCBIN_U8("graphics/pokemon/torchic/back.4bpp.lz");
const u8 gMonShinyPalette_Torchic[] = INCBIN_U8("graphics/pokemon/torchic/shiny.gbapal.lz");
const u8 gMonIcon_Torchic[] = INCBIN_U8("graphics/pokemon/torchic/icon.4bpp");
const u8 gMonFootprint_Torchic[] = INCBIN_U8("graphics/pokemon/torchic/footprint.1bpp");
const u8 gMonFrontPic_Combusken[] = INCBIN_U8("graphics/pokemon/combusken/front.4bpp.lz");
const u8 gMonPalette_Combusken[] = INCBIN_U8("graphics/pokemon/combusken/normal.gbapal.lz");
const u8 gMonBackPic_Combusken[] = INCBIN_U8("graphics/pokemon/combusken/back.4bpp.lz");
const u8 gMonShinyPalette_Combusken[] = INCBIN_U8("graphics/pokemon/combusken/shiny.gbapal.lz");
const u8 gMonIcon_Combusken[] = INCBIN_U8("graphics/pokemon/combusken/icon.4bpp");
const u8 gMonFootprint_Combusken[] = INCBIN_U8("graphics/pokemon/combusken/footprint.1bpp");
const u8 gMonFrontPic_Blaziken[] = INCBIN_U8("graphics/pokemon/blaziken/front.4bpp.lz");
const u8 gMonPalette_Blaziken[] = INCBIN_U8("graphics/pokemon/blaziken/normal.gbapal.lz");
const u8 gMonBackPic_Blaziken[] = INCBIN_U8("graphics/pokemon/blaziken/back.4bpp.lz");
const u8 gMonShinyPalette_Blaziken[] = INCBIN_U8("graphics/pokemon/blaziken/shiny.gbapal.lz");
const u8 gMonIcon_Blaziken[] = INCBIN_U8("graphics/pokemon/blaziken/icon.4bpp");
const u8 gMonFootprint_Blaziken[] = INCBIN_U8("graphics/pokemon/blaziken/footprint.1bpp");
const u8 gMonFrontPic_Mudkip[] = INCBIN_U8("graphics/pokemon/mudkip/front.4bpp.lz");
const u8 gMonPalette_Mudkip[] = INCBIN_U8("graphics/pokemon/mudkip/normal.gbapal.lz");
const u8 gMonBackPic_Mudkip[] = INCBIN_U8("graphics/pokemon/mudkip/back.4bpp.lz");
const u8 gMonShinyPalette_Mudkip[] = INCBIN_U8("graphics/pokemon/mudkip/shiny.gbapal.lz");
const u8 gMonIcon_Mudkip[] = INCBIN_U8("graphics/pokemon/mudkip/icon.4bpp");
const u8 gMonFootprint_Mudkip[] = INCBIN_U8("graphics/pokemon/mudkip/footprint.1bpp");
const u8 gMonFrontPic_Marshtomp[] = INCBIN_U8("graphics/pokemon/marshtomp/front.4bpp.lz");
const u8 gMonPalette_Marshtomp[] = INCBIN_U8("graphics/pokemon/marshtomp/normal.gbapal.lz");
const u8 gMonBackPic_Marshtomp[] = INCBIN_U8("graphics/pokemon/marshtomp/back.4bpp.lz");
const u8 gMonShinyPalette_Marshtomp[] = INCBIN_U8("graphics/pokemon/marshtomp/shiny.gbapal.lz");
const u8 gMonIcon_Marshtomp[] = INCBIN_U8("graphics/pokemon/marshtomp/icon.4bpp");
const u8 gMonFootprint_Marshtomp[] = INCBIN_U8("graphics/pokemon/marshtomp/footprint.1bpp");
const u8 gMonFrontPic_Swampert[] = INCBIN_U8("graphics/pokemon/swampert/front.4bpp.lz");
const u8 gMonPalette_Swampert[] = INCBIN_U8("graphics/pokemon/swampert/normal.gbapal.lz");
const u8 gMonBackPic_Swampert[] = INCBIN_U8("graphics/pokemon/swampert/back.4bpp.lz");
const u8 gMonShinyPalette_Swampert[] = INCBIN_U8("graphics/pokemon/swampert/shiny.gbapal.lz");
const u8 gMonIcon_Swampert[] = INCBIN_U8("graphics/pokemon/swampert/icon.4bpp");
const u8 gMonFootprint_Swampert[] = INCBIN_U8("graphics/pokemon/swampert/footprint.1bpp");
const u8 gMonFrontPic_Poochyena[] = INCBIN_U8("graphics/pokemon/poochyena/front.4bpp.lz");
const u8 gMonPalette_Poochyena[] = INCBIN_U8("graphics/pokemon/poochyena/normal.gbapal.lz");
const u8 gMonBackPic_Poochyena[] = INCBIN_U8("graphics/pokemon/poochyena/back.4bpp.lz");
const u8 gMonShinyPalette_Poochyena[] = INCBIN_U8("graphics/pokemon/poochyena/shiny.gbapal.lz");
const u8 gMonIcon_Poochyena[] = INCBIN_U8("graphics/pokemon/poochyena/icon.4bpp");
const u8 gMonFootprint_Poochyena[] = INCBIN_U8("graphics/pokemon/poochyena/footprint.1bpp");
const u8 gMonFrontPic_Mightyena[] = INCBIN_U8("graphics/pokemon/mightyena/front.4bpp.lz");
const u8 gMonPalette_Mightyena[] = INCBIN_U8("graphics/pokemon/mightyena/normal.gbapal.lz");
const u8 gMonBackPic_Mightyena[] = INCBIN_U8("graphics/pokemon/mightyena/back.4bpp.lz");
const u8 gMonShinyPalette_Mightyena[] = INCBIN_U8("graphics/pokemon/mightyena/shiny.gbapal.lz");
const u8 gMonIcon_Mightyena[] = INCBIN_U8("graphics/pokemon/mightyena/icon.4bpp");
const u8 gMonFootprint_Mightyena[] = INCBIN_U8("graphics/pokemon/mightyena/footprint.1bpp");
const u8 gMonFrontPic_Zigzagoon[] = INCBIN_U8("graphics/pokemon/zigzagoon/front.4bpp.lz");
const u8 gMonPalette_Zigzagoon[] = INCBIN_U8("graphics/pokemon/zigzagoon/normal.gbapal.lz");
const u8 gMonBackPic_Zigzagoon[] = INCBIN_U8("graphics/pokemon/zigzagoon/back.4bpp.lz");
const u8 gMonShinyPalette_Zigzagoon[] = INCBIN_U8("graphics/pokemon/zigzagoon/shiny.gbapal.lz");
const u8 gMonIcon_Zigzagoon[] = INCBIN_U8("graphics/pokemon/zigzagoon/icon.4bpp");
const u8 gMonFootprint_Zigzagoon[] = INCBIN_U8("graphics/pokemon/zigzagoon/footprint.1bpp");
const u8 gMonFrontPic_Linoone[] = INCBIN_U8("graphics/pokemon/linoone/front.4bpp.lz");
const u8 gMonPalette_Linoone[] = INCBIN_U8("graphics/pokemon/linoone/normal.gbapal.lz");
const u8 gMonBackPic_Linoone[] = INCBIN_U8("graphics/pokemon/linoone/back.4bpp.lz");
const u8 gMonShinyPalette_Linoone[] = INCBIN_U8("graphics/pokemon/linoone/shiny.gbapal.lz");
const u8 gMonIcon_Linoone[] = INCBIN_U8("graphics/pokemon/linoone/icon.4bpp");
const u8 gMonFootprint_Linoone[] = INCBIN_U8("graphics/pokemon/linoone/footprint.1bpp");
const u8 gMonFrontPic_Wurmple[] = INCBIN_U8("graphics/pokemon/wurmple/front.4bpp.lz");
const u8 gMonPalette_Wurmple[] = INCBIN_U8("graphics/pokemon/wurmple/normal.gbapal.lz");
const u8 gMonBackPic_Wurmple[] = INCBIN_U8("graphics/pokemon/wurmple/back.4bpp.lz");
const u8 gMonShinyPalette_Wurmple[] = INCBIN_U8("graphics/pokemon/wurmple/shiny.gbapal.lz");
const u8 gMonIcon_Wurmple[] = INCBIN_U8("graphics/pokemon/wurmple/icon.4bpp");
const u8 gMonFootprint_Wurmple[] = INCBIN_U8("graphics/pokemon/wurmple/footprint.1bpp");
const u8 gMonFrontPic_Silcoon[] = INCBIN_U8("graphics/pokemon/silcoon/front.4bpp.lz");
const u8 gMonPalette_Silcoon[] = INCBIN_U8("graphics/pokemon/silcoon/normal.gbapal.lz");
const u8 gMonBackPic_Silcoon[] = INCBIN_U8("graphics/pokemon/silcoon/back.4bpp.lz");
const u8 gMonShinyPalette_Silcoon[] = INCBIN_U8("graphics/pokemon/silcoon/shiny.gbapal.lz");
const u8 gMonIcon_Silcoon[] = INCBIN_U8("graphics/pokemon/silcoon/icon.4bpp");
const u8 gMonFootprint_Silcoon[] = INCBIN_U8("graphics/pokemon/silcoon/footprint.1bpp");
const u8 gMonFrontPic_Beautifly[] = INCBIN_U8("graphics/pokemon/beautifly/front.4bpp.lz");
const u8 gMonPalette_Beautifly[] = INCBIN_U8("graphics/pokemon/beautifly/normal.gbapal.lz");
const u8 gMonBackPic_Beautifly[] = INCBIN_U8("graphics/pokemon/beautifly/back.4bpp.lz");
const u8 gMonShinyPalette_Beautifly[] = INCBIN_U8("graphics/pokemon/beautifly/shiny.gbapal.lz");
const u8 gMonIcon_Beautifly[] = INCBIN_U8("graphics/pokemon/beautifly/icon.4bpp");
const u8 gMonFootprint_Beautifly[] = INCBIN_U8("graphics/pokemon/beautifly/footprint.1bpp");
const u8 gMonFrontPic_Cascoon[] = INCBIN_U8("graphics/pokemon/cascoon/front.4bpp.lz");
const u8 gMonPalette_Cascoon[] = INCBIN_U8("graphics/pokemon/cascoon/normal.gbapal.lz");
const u8 gMonBackPic_Cascoon[] = INCBIN_U8("graphics/pokemon/cascoon/back.4bpp.lz");
const u8 gMonShinyPalette_Cascoon[] = INCBIN_U8("graphics/pokemon/cascoon/shiny.gbapal.lz");
const u8 gMonIcon_Cascoon[] = INCBIN_U8("graphics/pokemon/cascoon/icon.4bpp");
const u8 gMonFootprint_Cascoon[] = INCBIN_U8("graphics/pokemon/cascoon/footprint.1bpp");
const u8 gMonFrontPic_Dustox[] = INCBIN_U8("graphics/pokemon/dustox/front.4bpp.lz");
const u8 gMonPalette_Dustox[] = INCBIN_U8("graphics/pokemon/dustox/normal.gbapal.lz");
const u8 gMonBackPic_Dustox[] = INCBIN_U8("graphics/pokemon/dustox/back.4bpp.lz");
const u8 gMonShinyPalette_Dustox[] = INCBIN_U8("graphics/pokemon/dustox/shiny.gbapal.lz");
const u8 gMonIcon_Dustox[] = INCBIN_U8("graphics/pokemon/dustox/icon.4bpp");
const u8 gMonFootprint_Dustox[] = INCBIN_U8("graphics/pokemon/dustox/footprint.1bpp");
const u8 gMonFrontPic_Lotad[] = INCBIN_U8("graphics/pokemon/lotad/front.4bpp.lz");
const u8 gMonPalette_Lotad[] = INCBIN_U8("graphics/pokemon/lotad/normal.gbapal.lz");
const u8 gMonBackPic_Lotad[] = INCBIN_U8("graphics/pokemon/lotad/back.4bpp.lz");
const u8 gMonShinyPalette_Lotad[] = INCBIN_U8("graphics/pokemon/lotad/shiny.gbapal.lz");
const u8 gMonIcon_Lotad[] = INCBIN_U8("graphics/pokemon/lotad/icon.4bpp");
const u8 gMonFootprint_Lotad[] = INCBIN_U8("graphics/pokemon/lotad/footprint.1bpp");
const u8 gMonFrontPic_Lombre[] = INCBIN_U8("graphics/pokemon/lombre/front.4bpp.lz");
const u8 gMonPalette_Lombre[] = INCBIN_U8("graphics/pokemon/lombre/normal.gbapal.lz");
const u8 gMonBackPic_Lombre[] = INCBIN_U8("graphics/pokemon/lombre/back.4bpp.lz");
const u8 gMonShinyPalette_Lombre[] = INCBIN_U8("graphics/pokemon/lombre/shiny.gbapal.lz");
const u8 gMonIcon_Lombre[] = INCBIN_U8("graphics/pokemon/lombre/icon.4bpp");
const u8 gMonFootprint_Lombre[] = INCBIN_U8("graphics/pokemon/lombre/footprint.1bpp");
const u8 gMonFrontPic_Ludicolo[] = INCBIN_U8("graphics/pokemon/ludicolo/front.4bpp.lz");
const u8 gMonPalette_Ludicolo[] = INCBIN_U8("graphics/pokemon/ludicolo/normal.gbapal.lz");
const u8 gMonBackPic_Ludicolo[] = INCBIN_U8("graphics/pokemon/ludicolo/back.4bpp.lz");
const u8 gMonShinyPalette_Ludicolo[] = INCBIN_U8("graphics/pokemon/ludicolo/shiny.gbapal.lz");
const u8 gMonIcon_Ludicolo[] = INCBIN_U8("graphics/pokemon/ludicolo/icon.4bpp");
const u8 gMonFootprint_Ludicolo[] = INCBIN_U8("graphics/pokemon/ludicolo/footprint.1bpp");
const u8 gMonFrontPic_Seedot[] = INCBIN_U8("graphics/pokemon/seedot/front.4bpp.lz");
const u8 gMonPalette_Seedot[] = INCBIN_U8("graphics/pokemon/seedot/normal.gbapal.lz");
const u8 gMonBackPic_Seedot[] = INCBIN_U8("graphics/pokemon/seedot/back.4bpp.lz");
const u8 gMonShinyPalette_Seedot[] = INCBIN_U8("graphics/pokemon/seedot/shiny.gbapal.lz");
const u8 gMonIcon_Seedot[] = INCBIN_U8("graphics/pokemon/seedot/icon.4bpp");
const u8 gMonFootprint_Seedot[] = INCBIN_U8("graphics/pokemon/seedot/footprint.1bpp");
const u8 gMonFrontPic_Nuzleaf[] = INCBIN_U8("graphics/pokemon/nuzleaf/front.4bpp.lz");
const u8 gMonPalette_Nuzleaf[] = INCBIN_U8("graphics/pokemon/nuzleaf/normal.gbapal.lz");
const u8 gMonBackPic_Nuzleaf[] = INCBIN_U8("graphics/pokemon/nuzleaf/back.4bpp.lz");
const u8 gMonShinyPalette_Nuzleaf[] = INCBIN_U8("graphics/pokemon/nuzleaf/shiny.gbapal.lz");
const u8 gMonIcon_Nuzleaf[] = INCBIN_U8("graphics/pokemon/nuzleaf/icon.4bpp");
const u8 gMonFootprint_Nuzleaf[] = INCBIN_U8("graphics/pokemon/nuzleaf/footprint.1bpp");
const u8 gMonFrontPic_Shiftry[] = INCBIN_U8("graphics/pokemon/shiftry/front.4bpp.lz");
const u8 gMonPalette_Shiftry[] = INCBIN_U8("graphics/pokemon/shiftry/normal.gbapal.lz");
const u8 gMonBackPic_Shiftry[] = INCBIN_U8("graphics/pokemon/shiftry/back.4bpp.lz");
const u8 gMonShinyPalette_Shiftry[] = INCBIN_U8("graphics/pokemon/shiftry/shiny.gbapal.lz");
const u8 gMonIcon_Shiftry[] = INCBIN_U8("graphics/pokemon/shiftry/icon.4bpp");
const u8 gMonFootprint_Shiftry[] = INCBIN_U8("graphics/pokemon/shiftry/footprint.1bpp");
const u8 gMonFrontPic_Nincada[] = INCBIN_U8("graphics/pokemon/nincada/front.4bpp.lz");
const u8 gMonPalette_Nincada[] = INCBIN_U8("graphics/pokemon/nincada/normal.gbapal.lz");
const u8 gMonBackPic_Nincada[] = INCBIN_U8("graphics/pokemon/nincada/back.4bpp.lz");
const u8 gMonShinyPalette_Nincada[] = INCBIN_U8("graphics/pokemon/nincada/shiny.gbapal.lz");
const u8 gMonIcon_Nincada[] = INCBIN_U8("graphics/pokemon/nincada/icon.4bpp");
const u8 gMonFootprint_Nincada[] = INCBIN_U8("graphics/pokemon/nincada/footprint.1bpp");
const u8 gMonFrontPic_Ninjask[] = INCBIN_U8("graphics/pokemon/ninjask/front.4bpp.lz");
const u8 gMonPalette_Ninjask[] = INCBIN_U8("graphics/pokemon/ninjask/normal.gbapal.lz");
const u8 gMonBackPic_Ninjask[] = INCBIN_U8("graphics/pokemon/ninjask/back.4bpp.lz");
const u8 gMonShinyPalette_Ninjask[] = INCBIN_U8("graphics/pokemon/ninjask/shiny.gbapal.lz");
const u8 gMonIcon_Ninjask[] = INCBIN_U8("graphics/pokemon/ninjask/icon.4bpp");
const u8 gMonFootprint_Ninjask[] = INCBIN_U8("graphics/pokemon/ninjask/footprint.1bpp");
const u8 gMonFrontPic_Shedinja[] = INCBIN_U8("graphics/pokemon/shedinja/front.4bpp.lz");
const u8 gMonPalette_Shedinja[] = INCBIN_U8("graphics/pokemon/shedinja/normal.gbapal.lz");
const u8 gMonBackPic_Shedinja[] = INCBIN_U8("graphics/pokemon/shedinja/back.4bpp.lz");
const u8 gMonShinyPalette_Shedinja[] = INCBIN_U8("graphics/pokemon/shedinja/shiny.gbapal.lz");
const u8 gMonIcon_Shedinja[] = INCBIN_U8("graphics/pokemon/shedinja/icon.4bpp");
const u8 gMonFootprint_Shedinja[] = INCBIN_U8("graphics/pokemon/shedinja/footprint.1bpp");
const u8 gMonFrontPic_Taillow[] = INCBIN_U8("graphics/pokemon/taillow/front.4bpp.lz");
const u8 gMonPalette_Taillow[] = INCBIN_U8("graphics/pokemon/taillow/normal.gbapal.lz");
const u8 gMonBackPic_Taillow[] = INCBIN_U8("graphics/pokemon/taillow/back.4bpp.lz");
const u8 gMonShinyPalette_Taillow[] = INCBIN_U8("graphics/pokemon/taillow/shiny.gbapal.lz");
const u8 gMonIcon_Taillow[] = INCBIN_U8("graphics/pokemon/taillow/icon.4bpp");
const u8 gMonFootprint_Taillow[] = INCBIN_U8("graphics/pokemon/taillow/footprint.1bpp");
const u8 gMonFrontPic_Swellow[] = INCBIN_U8("graphics/pokemon/swellow/front.4bpp.lz");
const u8 gMonPalette_Swellow[] = INCBIN_U8("graphics/pokemon/swellow/normal.gbapal.lz");
const u8 gMonBackPic_Swellow[] = INCBIN_U8("graphics/pokemon/swellow/back.4bpp.lz");
const u8 gMonShinyPalette_Swellow[] = INCBIN_U8("graphics/pokemon/swellow/shiny.gbapal.lz");
const u8 gMonIcon_Swellow[] = INCBIN_U8("graphics/pokemon/swellow/icon.4bpp");
const u8 gMonFootprint_Swellow[] = INCBIN_U8("graphics/pokemon/swellow/footprint.1bpp");
const u8 gMonFrontPic_Shroomish[] = INCBIN_U8("graphics/pokemon/shroomish/front.4bpp.lz");
const u8 gMonPalette_Shroomish[] = INCBIN_U8("graphics/pokemon/shroomish/normal.gbapal.lz");
const u8 gMonBackPic_Shroomish[] = INCBIN_U8("graphics/pokemon/shroomish/back.4bpp.lz");
const u8 gMonShinyPalette_Shroomish[] = INCBIN_U8("graphics/pokemon/shroomish/shiny.gbapal.lz");
const u8 gMonIcon_Shroomish[] = INCBIN_U8("graphics/pokemon/shroomish/icon.4bpp");
const u8 gMonFootprint_Shroomish[] = INCBIN_U8("graphics/pokemon/shroomish/footprint.1bpp");
const u8 gMonFrontPic_Breloom[] = INCBIN_U8("graphics/pokemon/breloom/front.4bpp.lz");
const u8 gMonPalette_Breloom[] = INCBIN_U8("graphics/pokemon/breloom/normal.gbapal.lz");
const u8 gMonBackPic_Breloom[] = INCBIN_U8("graphics/pokemon/breloom/back.4bpp.lz");
const u8 gMonShinyPalette_Breloom[] = INCBIN_U8("graphics/pokemon/breloom/shiny.gbapal.lz");
const u8 gMonIcon_Breloom[] = INCBIN_U8("graphics/pokemon/breloom/icon.4bpp");
const u8 gMonFootprint_Breloom[] = INCBIN_U8("graphics/pokemon/breloom/footprint.1bpp");
const u8 gMonFrontPic_Spinda[] = INCBIN_U8("graphics/pokemon/spinda/front.4bpp.lz");
const u8 gMonPalette_Spinda[] = INCBIN_U8("graphics/pokemon/spinda/normal.gbapal.lz");
const u8 gMonBackPic_Spinda[] = INCBIN_U8("graphics/pokemon/spinda/back.4bpp.lz");
const u8 gMonShinyPalette_Spinda[] = INCBIN_U8("graphics/pokemon/spinda/shiny.gbapal.lz");
const u8 gMonIcon_Spinda[] = INCBIN_U8("graphics/pokemon/spinda/icon.4bpp");
const u8 gMonFootprint_Spinda[] = INCBIN_U8("graphics/pokemon/spinda/footprint.1bpp");
const u8 gMonFrontPic_Wingull[] = INCBIN_U8("graphics/pokemon/wingull/front.4bpp.lz");
const u8 gMonPalette_Wingull[] = INCBIN_U8("graphics/pokemon/wingull/normal.gbapal.lz");
const u8 gMonBackPic_Wingull[] = INCBIN_U8("graphics/pokemon/wingull/back.4bpp.lz");
const u8 gMonShinyPalette_Wingull[] = INCBIN_U8("graphics/pokemon/wingull/shiny.gbapal.lz");
const u8 gMonIcon_Wingull[] = INCBIN_U8("graphics/pokemon/wingull/icon.4bpp");
const u8 gMonFootprint_Wingull[] = INCBIN_U8("graphics/pokemon/wingull/footprint.1bpp");
const u8 gMonFrontPic_Pelipper[] = INCBIN_U8("graphics/pokemon/pelipper/front.4bpp.lz");
const u8 gMonPalette_Pelipper[] = INCBIN_U8("graphics/pokemon/pelipper/normal.gbapal.lz");
const u8 gMonBackPic_Pelipper[] = INCBIN_U8("graphics/pokemon/pelipper/back.4bpp.lz");
const u8 gMonShinyPalette_Pelipper[] = INCBIN_U8("graphics/pokemon/pelipper/shiny.gbapal.lz");
const u8 gMonIcon_Pelipper[] = INCBIN_U8("graphics/pokemon/pelipper/icon.4bpp");
const u8 gMonFootprint_Pelipper[] = INCBIN_U8("graphics/pokemon/pelipper/footprint.1bpp");
const u8 gMonFrontPic_Surskit[] = INCBIN_U8("graphics/pokemon/surskit/front.4bpp.lz");
const u8 gMonPalette_Surskit[] = INCBIN_U8("graphics/pokemon/surskit/normal.gbapal.lz");
const u8 gMonBackPic_Surskit[] = INCBIN_U8("graphics/pokemon/surskit/back.4bpp.lz");
const u8 gMonShinyPalette_Surskit[] = INCBIN_U8("graphics/pokemon/surskit/shiny.gbapal.lz");
const u8 gMonIcon_Surskit[] = INCBIN_U8("graphics/pokemon/surskit/icon.4bpp");
const u8 gMonFootprint_Surskit[] = INCBIN_U8("graphics/pokemon/surskit/footprint.1bpp");
const u8 gMonFrontPic_Masquerain[] = INCBIN_U8("graphics/pokemon/masquerain/front.4bpp.lz");
const u8 gMonPalette_Masquerain[] = INCBIN_U8("graphics/pokemon/masquerain/normal.gbapal.lz");
const u8 gMonBackPic_Masquerain[] = INCBIN_U8("graphics/pokemon/masquerain/back.4bpp.lz");
const u8 gMonShinyPalette_Masquerain[] = INCBIN_U8("graphics/pokemon/masquerain/shiny.gbapal.lz");
const u8 gMonIcon_Masquerain[] = INCBIN_U8("graphics/pokemon/masquerain/icon.4bpp");
const u8 gMonFootprint_Masquerain[] = INCBIN_U8("graphics/pokemon/masquerain/footprint.1bpp");
const u8 gMonFrontPic_Wailmer[] = INCBIN_U8("graphics/pokemon/wailmer/front.4bpp.lz");
const u8 gMonPalette_Wailmer[] = INCBIN_U8("graphics/pokemon/wailmer/normal.gbapal.lz");
const u8 gMonBackPic_Wailmer[] = INCBIN_U8("graphics/pokemon/wailmer/back.4bpp.lz");
const u8 gMonShinyPalette_Wailmer[] = INCBIN_U8("graphics/pokemon/wailmer/shiny.gbapal.lz");
const u8 gMonIcon_Wailmer[] = INCBIN_U8("graphics/pokemon/wailmer/icon.4bpp");
const u8 gMonFootprint_Wailmer[] = INCBIN_U8("graphics/pokemon/wailmer/footprint.1bpp");
const u8 gMonFrontPic_Wailord[] = INCBIN_U8("graphics/pokemon/wailord/front.4bpp.lz");
const u8 gMonPalette_Wailord[] = INCBIN_U8("graphics/pokemon/wailord/normal.gbapal.lz");
const u8 gMonBackPic_Wailord[] = INCBIN_U8("graphics/pokemon/wailord/back.4bpp.lz");
const u8 gMonShinyPalette_Wailord[] = INCBIN_U8("graphics/pokemon/wailord/shiny.gbapal.lz");
const u8 gMonIcon_Wailord[] = INCBIN_U8("graphics/pokemon/wailord/icon.4bpp");
const u8 gMonFootprint_Wailord[] = INCBIN_U8("graphics/pokemon/wailord/footprint.1bpp");
const u8 gMonFrontPic_Skitty[] = INCBIN_U8("graphics/pokemon/skitty/front.4bpp.lz");
const u8 gMonPalette_Skitty[] = INCBIN_U8("graphics/pokemon/skitty/normal.gbapal.lz");
const u8 gMonBackPic_Skitty[] = INCBIN_U8("graphics/pokemon/skitty/back.4bpp.lz");
const u8 gMonShinyPalette_Skitty[] = INCBIN_U8("graphics/pokemon/skitty/shiny.gbapal.lz");
const u8 gMonIcon_Skitty[] = INCBIN_U8("graphics/pokemon/skitty/icon.4bpp");
const u8 gMonFootprint_Skitty[] = INCBIN_U8("graphics/pokemon/skitty/footprint.1bpp");
const u8 gMonFrontPic_Delcatty[] = INCBIN_U8("graphics/pokemon/delcatty/front.4bpp.lz");
const u8 gMonPalette_Delcatty[] = INCBIN_U8("graphics/pokemon/delcatty/normal.gbapal.lz");
const u8 gMonBackPic_Delcatty[] = INCBIN_U8("graphics/pokemon/delcatty/back.4bpp.lz");
const u8 gMonShinyPalette_Delcatty[] = INCBIN_U8("graphics/pokemon/delcatty/shiny.gbapal.lz");
const u8 gMonIcon_Delcatty[] = INCBIN_U8("graphics/pokemon/delcatty/icon.4bpp");
const u8 gMonFootprint_Delcatty[] = INCBIN_U8("graphics/pokemon/delcatty/footprint.1bpp");
const u8 gMonFrontPic_Kecleon[] = INCBIN_U8("graphics/pokemon/kecleon/front.4bpp.lz");
const u8 gMonPalette_Kecleon[] = INCBIN_U8("graphics/pokemon/kecleon/normal.gbapal.lz");
const u8 gMonBackPic_Kecleon[] = INCBIN_U8("graphics/pokemon/kecleon/back.4bpp.lz");
const u8 gMonShinyPalette_Kecleon[] = INCBIN_U8("graphics/pokemon/kecleon/shiny.gbapal.lz");
const u8 gMonIcon_Kecleon[] = INCBIN_U8("graphics/pokemon/kecleon/icon.4bpp");
const u8 gMonFootprint_Kecleon[] = INCBIN_U8("graphics/pokemon/kecleon/footprint.1bpp");
const u8 gMonFrontPic_Baltoy[] = INCBIN_U8("graphics/pokemon/baltoy/front.4bpp.lz");
const u8 gMonPalette_Baltoy[] = INCBIN_U8("graphics/pokemon/baltoy/normal.gbapal.lz");
const u8 gMonBackPic_Baltoy[] = INCBIN_U8("graphics/pokemon/baltoy/back.4bpp.lz");
const u8 gMonShinyPalette_Baltoy[] = INCBIN_U8("graphics/pokemon/baltoy/shiny.gbapal.lz");
const u8 gMonIcon_Baltoy[] = INCBIN_U8("graphics/pokemon/baltoy/icon.4bpp");
const u8 gMonFootprint_Baltoy[] = INCBIN_U8("graphics/pokemon/baltoy/footprint.1bpp");
const u8 gMonFrontPic_Claydol[] = INCBIN_U8("graphics/pokemon/claydol/front.4bpp.lz");
const u8 gMonPalette_Claydol[] = INCBIN_U8("graphics/pokemon/claydol/normal.gbapal.lz");
const u8 gMonBackPic_Claydol[] = INCBIN_U8("graphics/pokemon/claydol/back.4bpp.lz");
const u8 gMonShinyPalette_Claydol[] = INCBIN_U8("graphics/pokemon/claydol/shiny.gbapal.lz");
const u8 gMonIcon_Claydol[] = INCBIN_U8("graphics/pokemon/claydol/icon.4bpp");
const u8 gMonFootprint_Claydol[] = INCBIN_U8("graphics/pokemon/claydol/footprint.1bpp");
const u8 gMonFrontPic_Nosepass[] = INCBIN_U8("graphics/pokemon/nosepass/front.4bpp.lz");
const u8 gMonPalette_Nosepass[] = INCBIN_U8("graphics/pokemon/nosepass/normal.gbapal.lz");
const u8 gMonBackPic_Nosepass[] = INCBIN_U8("graphics/pokemon/nosepass/back.4bpp.lz");
const u8 gMonShinyPalette_Nosepass[] = INCBIN_U8("graphics/pokemon/nosepass/shiny.gbapal.lz");
const u8 gMonIcon_Nosepass[] = INCBIN_U8("graphics/pokemon/nosepass/icon.4bpp");
const u8 gMonFootprint_Nosepass[] = INCBIN_U8("graphics/pokemon/nosepass/footprint.1bpp");
const u8 gMonFrontPic_Torkoal[] = INCBIN_U8("graphics/pokemon/torkoal/front.4bpp.lz");
const u8 gMonPalette_Torkoal[] = INCBIN_U8("graphics/pokemon/torkoal/normal.gbapal.lz");
const u8 gMonBackPic_Torkoal[] = INCBIN_U8("graphics/pokemon/torkoal/back.4bpp.lz");
const u8 gMonShinyPalette_Torkoal[] = INCBIN_U8("graphics/pokemon/torkoal/shiny.gbapal.lz");
const u8 gMonIcon_Torkoal[] = INCBIN_U8("graphics/pokemon/torkoal/icon.4bpp");
const u8 gMonFootprint_Torkoal[] = INCBIN_U8("graphics/pokemon/torkoal/footprint.1bpp");
const u8 gMonFrontPic_Sableye[] = INCBIN_U8("graphics/pokemon/sableye/front.4bpp.lz");
const u8 gMonPalette_Sableye[] = INCBIN_U8("graphics/pokemon/sableye/normal.gbapal.lz");
const u8 gMonBackPic_Sableye[] = INCBIN_U8("graphics/pokemon/sableye/back.4bpp.lz");
const u8 gMonShinyPalette_Sableye[] = INCBIN_U8("graphics/pokemon/sableye/shiny.gbapal.lz");
const u8 gMonIcon_Sableye[] = INCBIN_U8("graphics/pokemon/sableye/icon.4bpp");
const u8 gMonFootprint_Sableye[] = INCBIN_U8("graphics/pokemon/sableye/footprint.1bpp");
const u8 gMonFrontPic_Barboach[] = INCBIN_U8("graphics/pokemon/barboach/front.4bpp.lz");
const u8 gMonPalette_Barboach[] = INCBIN_U8("graphics/pokemon/barboach/normal.gbapal.lz");
const u8 gMonBackPic_Barboach[] = INCBIN_U8("graphics/pokemon/barboach/back.4bpp.lz");
const u8 gMonShinyPalette_Barboach[] = INCBIN_U8("graphics/pokemon/barboach/shiny.gbapal.lz");
const u8 gMonIcon_Barboach[] = INCBIN_U8("graphics/pokemon/barboach/icon.4bpp");
const u8 gMonFootprint_Barboach[] = INCBIN_U8("graphics/pokemon/barboach/footprint.1bpp");
const u8 gMonFrontPic_Whiscash[] = INCBIN_U8("graphics/pokemon/whiscash/front.4bpp.lz");
const u8 gMonPalette_Whiscash[] = INCBIN_U8("graphics/pokemon/whiscash/normal.gbapal.lz");
const u8 gMonBackPic_Whiscash[] = INCBIN_U8("graphics/pokemon/whiscash/back.4bpp.lz");
const u8 gMonShinyPalette_Whiscash[] = INCBIN_U8("graphics/pokemon/whiscash/shiny.gbapal.lz");
const u8 gMonIcon_Whiscash[] = INCBIN_U8("graphics/pokemon/whiscash/icon.4bpp");
const u8 gMonFootprint_Whiscash[] = INCBIN_U8("graphics/pokemon/whiscash/footprint.1bpp");
const u8 gMonFrontPic_Luvdisc[] = INCBIN_U8("graphics/pokemon/luvdisc/front.4bpp.lz");
const u8 gMonPalette_Luvdisc[] = INCBIN_U8("graphics/pokemon/luvdisc/normal.gbapal.lz");
const u8 gMonBackPic_Luvdisc[] = INCBIN_U8("graphics/pokemon/luvdisc/back.4bpp.lz");
const u8 gMonShinyPalette_Luvdisc[] = INCBIN_U8("graphics/pokemon/luvdisc/shiny.gbapal.lz");
const u8 gMonIcon_Luvdisc[] = INCBIN_U8("graphics/pokemon/luvdisc/icon.4bpp");
const u8 gMonFootprint_Luvdisc[] = INCBIN_U8("graphics/pokemon/luvdisc/footprint.1bpp");
const u8 gMonFrontPic_Corphish[] = INCBIN_U8("graphics/pokemon/corphish/front.4bpp.lz");
const u8 gMonPalette_Corphish[] = INCBIN_U8("graphics/pokemon/corphish/normal.gbapal.lz");
const u8 gMonBackPic_Corphish[] = INCBIN_U8("graphics/pokemon/corphish/back.4bpp.lz");
const u8 gMonShinyPalette_Corphish[] = INCBIN_U8("graphics/pokemon/corphish/shiny.gbapal.lz");
const u8 gMonIcon_Corphish[] = INCBIN_U8("graphics/pokemon/corphish/icon.4bpp");
const u8 gMonFootprint_Corphish[] = INCBIN_U8("graphics/pokemon/corphish/footprint.1bpp");
const u8 gMonFrontPic_Crawdaunt[] = INCBIN_U8("graphics/pokemon/crawdaunt/front.4bpp.lz");
const u8 gMonPalette_Crawdaunt[] = INCBIN_U8("graphics/pokemon/crawdaunt/normal.gbapal.lz");
const u8 gMonBackPic_Crawdaunt[] = INCBIN_U8("graphics/pokemon/crawdaunt/back.4bpp.lz");
const u8 gMonShinyPalette_Crawdaunt[] = INCBIN_U8("graphics/pokemon/crawdaunt/shiny.gbapal.lz");
const u8 gMonIcon_Crawdaunt[] = INCBIN_U8("graphics/pokemon/crawdaunt/icon.4bpp");
const u8 gMonFootprint_Crawdaunt[] = INCBIN_U8("graphics/pokemon/crawdaunt/footprint.1bpp");
const u8 gMonFrontPic_Feebas[] = INCBIN_U8("graphics/pokemon/feebas/front.4bpp.lz");
const u8 gMonPalette_Feebas[] = INCBIN_U8("graphics/pokemon/feebas/normal.gbapal.lz");
const u8 gMonBackPic_Feebas[] = INCBIN_U8("graphics/pokemon/feebas/back.4bpp.lz");
const u8 gMonShinyPalette_Feebas[] = INCBIN_U8("graphics/pokemon/feebas/shiny.gbapal.lz");
const u8 gMonIcon_Feebas[] = INCBIN_U8("graphics/pokemon/feebas/icon.4bpp");
const u8 gMonFootprint_Feebas[] = INCBIN_U8("graphics/pokemon/feebas/footprint.1bpp");
const u8 gMonFrontPic_Milotic[] = INCBIN_U8("graphics/pokemon/milotic/front.4bpp.lz");
const u8 gMonPalette_Milotic[] = INCBIN_U8("graphics/pokemon/milotic/normal.gbapal.lz");
const u8 gMonBackPic_Milotic[] = INCBIN_U8("graphics/pokemon/milotic/back.4bpp.lz");
const u8 gMonShinyPalette_Milotic[] = INCBIN_U8("graphics/pokemon/milotic/shiny.gbapal.lz");
const u8 gMonIcon_Milotic[] = INCBIN_U8("graphics/pokemon/milotic/icon.4bpp");
const u8 gMonFootprint_Milotic[] = INCBIN_U8("graphics/pokemon/milotic/footprint.1bpp");
const u8 gMonFrontPic_Carvanha[] = INCBIN_U8("graphics/pokemon/carvanha/front.4bpp.lz");
const u8 gMonPalette_Carvanha[] = INCBIN_U8("graphics/pokemon/carvanha/normal.gbapal.lz");
const u8 gMonBackPic_Carvanha[] = INCBIN_U8("graphics/pokemon/carvanha/back.4bpp.lz");
const u8 gMonShinyPalette_Carvanha[] = INCBIN_U8("graphics/pokemon/carvanha/shiny.gbapal.lz");
const u8 gMonIcon_Carvanha[] = INCBIN_U8("graphics/pokemon/carvanha/icon.4bpp");
const u8 gMonFootprint_Carvanha[] = INCBIN_U8("graphics/pokemon/carvanha/footprint.1bpp");
const u8 gMonFrontPic_Sharpedo[] = INCBIN_U8("graphics/pokemon/sharpedo/front.4bpp.lz");
const u8 gMonPalette_Sharpedo[] = INCBIN_U8("graphics/pokemon/sharpedo/normal.gbapal.lz");
const u8 gMonBackPic_Sharpedo[] = INCBIN_U8("graphics/pokemon/sharpedo/back.4bpp.lz");
const u8 gMonShinyPalette_Sharpedo[] = INCBIN_U8("graphics/pokemon/sharpedo/shiny.gbapal.lz");
const u8 gMonIcon_Sharpedo[] = INCBIN_U8("graphics/pokemon/sharpedo/icon.4bpp");
const u8 gMonFootprint_Sharpedo[] = INCBIN_U8("graphics/pokemon/sharpedo/footprint.1bpp");
const u8 gMonFrontPic_Trapinch[] = INCBIN_U8("graphics/pokemon/trapinch/front.4bpp.lz");
const u8 gMonPalette_Trapinch[] = INCBIN_U8("graphics/pokemon/trapinch/normal.gbapal.lz");
const u8 gMonBackPic_Trapinch[] = INCBIN_U8("graphics/pokemon/trapinch/back.4bpp.lz");
const u8 gMonShinyPalette_Trapinch[] = INCBIN_U8("graphics/pokemon/trapinch/shiny.gbapal.lz");
const u8 gMonIcon_Trapinch[] = INCBIN_U8("graphics/pokemon/trapinch/icon.4bpp");
const u8 gMonFootprint_Trapinch[] = INCBIN_U8("graphics/pokemon/trapinch/footprint.1bpp");
const u8 gMonFrontPic_Vibrava[] = INCBIN_U8("graphics/pokemon/vibrava/front.4bpp.lz");
const u8 gMonPalette_Vibrava[] = INCBIN_U8("graphics/pokemon/vibrava/normal.gbapal.lz");
const u8 gMonBackPic_Vibrava[] = INCBIN_U8("graphics/pokemon/vibrava/back.4bpp.lz");
const u8 gMonShinyPalette_Vibrava[] = INCBIN_U8("graphics/pokemon/vibrava/shiny.gbapal.lz");
const u8 gMonIcon_Vibrava[] = INCBIN_U8("graphics/pokemon/vibrava/icon.4bpp");
const u8 gMonFootprint_Vibrava[] = INCBIN_U8("graphics/pokemon/vibrava/footprint.1bpp");
const u8 gMonFrontPic_Flygon[] = INCBIN_U8("graphics/pokemon/flygon/front.4bpp.lz");
const u8 gMonPalette_Flygon[] = INCBIN_U8("graphics/pokemon/flygon/normal.gbapal.lz");
const u8 gMonBackPic_Flygon[] = INCBIN_U8("graphics/pokemon/flygon/back.4bpp.lz");
const u8 gMonShinyPalette_Flygon[] = INCBIN_U8("graphics/pokemon/flygon/shiny.gbapal.lz");
const u8 gMonIcon_Flygon[] = INCBIN_U8("graphics/pokemon/flygon/icon.4bpp");
const u8 gMonFootprint_Flygon[] = INCBIN_U8("graphics/pokemon/flygon/footprint.1bpp");
const u8 gMonFrontPic_Makuhita[] = INCBIN_U8("graphics/pokemon/makuhita/front.4bpp.lz");
const u8 gMonPalette_Makuhita[] = INCBIN_U8("graphics/pokemon/makuhita/normal.gbapal.lz");
const u8 gMonBackPic_Makuhita[] = INCBIN_U8("graphics/pokemon/makuhita/back.4bpp.lz");
const u8 gMonShinyPalette_Makuhita[] = INCBIN_U8("graphics/pokemon/makuhita/shiny.gbapal.lz");
const u8 gMonIcon_Makuhita[] = INCBIN_U8("graphics/pokemon/makuhita/icon.4bpp");
const u8 gMonFootprint_Makuhita[] = INCBIN_U8("graphics/pokemon/makuhita/footprint.1bpp");
const u8 gMonFrontPic_Hariyama[] = INCBIN_U8("graphics/pokemon/hariyama/front.4bpp.lz");
const u8 gMonPalette_Hariyama[] = INCBIN_U8("graphics/pokemon/hariyama/normal.gbapal.lz");
const u8 gMonBackPic_Hariyama[] = INCBIN_U8("graphics/pokemon/hariyama/back.4bpp.lz");
const u8 gMonShinyPalette_Hariyama[] = INCBIN_U8("graphics/pokemon/hariyama/shiny.gbapal.lz");
const u8 gMonIcon_Hariyama[] = INCBIN_U8("graphics/pokemon/hariyama/icon.4bpp");
const u8 gMonFootprint_Hariyama[] = INCBIN_U8("graphics/pokemon/hariyama/footprint.1bpp");
const u8 gMonFrontPic_Electrike[] = INCBIN_U8("graphics/pokemon/electrike/front.4bpp.lz");
const u8 gMonPalette_Electrike[] = INCBIN_U8("graphics/pokemon/electrike/normal.gbapal.lz");
const u8 gMonBackPic_Electrike[] = INCBIN_U8("graphics/pokemon/electrike/back.4bpp.lz");
const u8 gMonShinyPalette_Electrike[] = INCBIN_U8("graphics/pokemon/electrike/shiny.gbapal.lz");
const u8 gMonIcon_Electrike[] = INCBIN_U8("graphics/pokemon/electrike/icon.4bpp");
const u8 gMonFootprint_Electrike[] = INCBIN_U8("graphics/pokemon/electrike/footprint.1bpp");
const u8 gMonFrontPic_Manectric[] = INCBIN_U8("graphics/pokemon/manectric/front.4bpp.lz");
const u8 gMonPalette_Manectric[] = INCBIN_U8("graphics/pokemon/manectric/normal.gbapal.lz");
const u8 gMonBackPic_Manectric[] = INCBIN_U8("graphics/pokemon/manectric/back.4bpp.lz");
const u8 gMonShinyPalette_Manectric[] = INCBIN_U8("graphics/pokemon/manectric/shiny.gbapal.lz");
const u8 gMonIcon_Manectric[] = INCBIN_U8("graphics/pokemon/manectric/icon.4bpp");
const u8 gMonFootprint_Manectric[] = INCBIN_U8("graphics/pokemon/manectric/footprint.1bpp");
const u8 gMonFrontPic_Numel[] = INCBIN_U8("graphics/pokemon/numel/front.4bpp.lz");
const u8 gMonPalette_Numel[] = INCBIN_U8("graphics/pokemon/numel/normal.gbapal.lz");
const u8 gMonBackPic_Numel[] = INCBIN_U8("graphics/pokemon/numel/back.4bpp.lz");
const u8 gMonShinyPalette_Numel[] = INCBIN_U8("graphics/pokemon/numel/shiny.gbapal.lz");
const u8 gMonIcon_Numel[] = INCBIN_U8("graphics/pokemon/numel/icon.4bpp");
const u8 gMonFootprint_Numel[] = INCBIN_U8("graphics/pokemon/numel/footprint.1bpp");
const u8 gMonFrontPic_Camerupt[] = INCBIN_U8("graphics/pokemon/camerupt/front.4bpp.lz");
const u8 gMonPalette_Camerupt[] = INCBIN_U8("graphics/pokemon/camerupt/normal.gbapal.lz");
const u8 gMonBackPic_Camerupt[] = INCBIN_U8("graphics/pokemon/camerupt/back.4bpp.lz");
const u8 gMonShinyPalette_Camerupt[] = INCBIN_U8("graphics/pokemon/camerupt/shiny.gbapal.lz");
const u8 gMonIcon_Camerupt[] = INCBIN_U8("graphics/pokemon/camerupt/icon.4bpp");
const u8 gMonFootprint_Camerupt[] = INCBIN_U8("graphics/pokemon/camerupt/footprint.1bpp");
const u8 gMonFrontPic_Spheal[] = INCBIN_U8("graphics/pokemon/spheal/front.4bpp.lz");
const u8 gMonPalette_Spheal[] = INCBIN_U8("graphics/pokemon/spheal/normal.gbapal.lz");
const u8 gMonBackPic_Spheal[] = INCBIN_U8("graphics/pokemon/spheal/back.4bpp.lz");
const u8 gMonShinyPalette_Spheal[] = INCBIN_U8("graphics/pokemon/spheal/shiny.gbapal.lz");
const u8 gMonIcon_Spheal[] = INCBIN_U8("graphics/pokemon/spheal/icon.4bpp");
const u8 gMonFootprint_Spheal[] = INCBIN_U8("graphics/pokemon/spheal/footprint.1bpp");
const u8 gMonFrontPic_Sealeo[] = INCBIN_U8("graphics/pokemon/sealeo/front.4bpp.lz");
const u8 gMonPalette_Sealeo[] = INCBIN_U8("graphics/pokemon/sealeo/normal.gbapal.lz");
const u8 gMonBackPic_Sealeo[] = INCBIN_U8("graphics/pokemon/sealeo/back.4bpp.lz");
const u8 gMonShinyPalette_Sealeo[] = INCBIN_U8("graphics/pokemon/sealeo/shiny.gbapal.lz");
const u8 gMonIcon_Sealeo[] = INCBIN_U8("graphics/pokemon/sealeo/icon.4bpp");
const u8 gMonFootprint_Sealeo[] = INCBIN_U8("graphics/pokemon/sealeo/footprint.1bpp");
const u8 gMonFrontPic_Walrein[] = INCBIN_U8("graphics/pokemon/walrein/front.4bpp.lz");
const u8 gMonPalette_Walrein[] = INCBIN_U8("graphics/pokemon/walrein/normal.gbapal.lz");
const u8 gMonBackPic_Walrein[] = INCBIN_U8("graphics/pokemon/walrein/back.4bpp.lz");
const u8 gMonShinyPalette_Walrein[] = INCBIN_U8("graphics/pokemon/walrein/shiny.gbapal.lz");
const u8 gMonIcon_Walrein[] = INCBIN_U8("graphics/pokemon/walrein/icon.4bpp");
const u8 gMonFootprint_Walrein[] = INCBIN_U8("graphics/pokemon/walrein/footprint.1bpp");
const u8 gMonFrontPic_Cacnea[] = INCBIN_U8("graphics/pokemon/cacnea/front.4bpp.lz");
const u8 gMonPalette_Cacnea[] = INCBIN_U8("graphics/pokemon/cacnea/normal.gbapal.lz");
const u8 gMonBackPic_Cacnea[] = INCBIN_U8("graphics/pokemon/cacnea/back.4bpp.lz");
const u8 gMonShinyPalette_Cacnea[] = INCBIN_U8("graphics/pokemon/cacnea/shiny.gbapal.lz");
const u8 gMonIcon_Cacnea[] = INCBIN_U8("graphics/pokemon/cacnea/icon.4bpp");
const u8 gMonFootprint_Cacnea[] = INCBIN_U8("graphics/pokemon/cacnea/footprint.1bpp");
const u8 gMonFrontPic_Cacturne[] = INCBIN_U8("graphics/pokemon/cacturne/front.4bpp.lz");
const u8 gMonPalette_Cacturne[] = INCBIN_U8("graphics/pokemon/cacturne/normal.gbapal.lz");
const u8 gMonBackPic_Cacturne[] = INCBIN_U8("graphics/pokemon/cacturne/back.4bpp.lz");
const u8 gMonShinyPalette_Cacturne[] = INCBIN_U8("graphics/pokemon/cacturne/shiny.gbapal.lz");
const u8 gMonIcon_Cacturne[] = INCBIN_U8("graphics/pokemon/cacturne/icon.4bpp");
const u8 gMonFootprint_Cacturne[] = INCBIN_U8("graphics/pokemon/cacturne/footprint.1bpp");
const u8 gMonFrontPic_Snorunt[] = INCBIN_U8("graphics/pokemon/snorunt/front.4bpp.lz");
const u8 gMonPalette_Snorunt[] = INCBIN_U8("graphics/pokemon/snorunt/normal.gbapal.lz");
const u8 gMonBackPic_Snorunt[] = INCBIN_U8("graphics/pokemon/snorunt/back.4bpp.lz");
const u8 gMonShinyPalette_Snorunt[] = INCBIN_U8("graphics/pokemon/snorunt/shiny.gbapal.lz");
const u8 gMonIcon_Snorunt[] = INCBIN_U8("graphics/pokemon/snorunt/icon.4bpp");
const u8 gMonFootprint_Snorunt[] = INCBIN_U8("graphics/pokemon/snorunt/footprint.1bpp");
const u8 gMonFrontPic_Glalie[] = INCBIN_U8("graphics/pokemon/glalie/front.4bpp.lz");
const u8 gMonPalette_Glalie[] = INCBIN_U8("graphics/pokemon/glalie/normal.gbapal.lz");
const u8 gMonBackPic_Glalie[] = INCBIN_U8("graphics/pokemon/glalie/back.4bpp.lz");
const u8 gMonShinyPalette_Glalie[] = INCBIN_U8("graphics/pokemon/glalie/shiny.gbapal.lz");
const u8 gMonIcon_Glalie[] = INCBIN_U8("graphics/pokemon/glalie/icon.4bpp");
const u8 gMonFootprint_Glalie[] = INCBIN_U8("graphics/pokemon/glalie/footprint.1bpp");
const u8 gMonFrontPic_Lunatone[] = INCBIN_U8("graphics/pokemon/lunatone/front.4bpp.lz");
const u8 gMonPalette_Lunatone[] = INCBIN_U8("graphics/pokemon/lunatone/normal.gbapal.lz");
const u8 gMonBackPic_Lunatone[] = INCBIN_U8("graphics/pokemon/lunatone/back.4bpp.lz");
const u8 gMonShinyPalette_Lunatone[] = INCBIN_U8("graphics/pokemon/lunatone/shiny.gbapal.lz");
const u8 gMonIcon_Lunatone[] = INCBIN_U8("graphics/pokemon/lunatone/icon.4bpp");
const u8 gMonFootprint_Lunatone[] = INCBIN_U8("graphics/pokemon/lunatone/footprint.1bpp");
const u8 gMonFrontPic_Solrock[] = INCBIN_U8("graphics/pokemon/solrock/front.4bpp.lz");
const u8 gMonPalette_Solrock[] = INCBIN_U8("graphics/pokemon/solrock/normal.gbapal.lz");
const u8 gMonBackPic_Solrock[] = INCBIN_U8("graphics/pokemon/solrock/back.4bpp.lz");
const u8 gMonShinyPalette_Solrock[] = INCBIN_U8("graphics/pokemon/solrock/shiny.gbapal.lz");
const u8 gMonIcon_Solrock[] = INCBIN_U8("graphics/pokemon/solrock/icon.4bpp");
const u8 gMonFootprint_Solrock[] = INCBIN_U8("graphics/pokemon/solrock/footprint.1bpp");
const u8 gMonFrontPic_Azurill[] = INCBIN_U8("graphics/pokemon/azurill/front.4bpp.lz");
const u8 gMonPalette_Azurill[] = INCBIN_U8("graphics/pokemon/azurill/normal.gbapal.lz");
const u8 gMonBackPic_Azurill[] = INCBIN_U8("graphics/pokemon/azurill/back.4bpp.lz");
const u8 gMonShinyPalette_Azurill[] = INCBIN_U8("graphics/pokemon/azurill/shiny.gbapal.lz");
const u8 gMonIcon_Azurill[] = INCBIN_U8("graphics/pokemon/azurill/icon.4bpp");
const u8 gMonFootprint_Azurill[] = INCBIN_U8("graphics/pokemon/azurill/footprint.1bpp");
const u8 gMonFrontPic_Spoink[] = INCBIN_U8("graphics/pokemon/spoink/front.4bpp.lz");
const u8 gMonPalette_Spoink[] = INCBIN_U8("graphics/pokemon/spoink/normal.gbapal.lz");
const u8 gMonBackPic_Spoink[] = INCBIN_U8("graphics/pokemon/spoink/back.4bpp.lz");
const u8 gMonShinyPalette_Spoink[] = INCBIN_U8("graphics/pokemon/spoink/shiny.gbapal.lz");
const u8 gMonIcon_Spoink[] = INCBIN_U8("graphics/pokemon/spoink/icon.4bpp");
const u8 gMonFootprint_Spoink[] = INCBIN_U8("graphics/pokemon/spoink/footprint.1bpp");
const u8 gMonFrontPic_Grumpig[] = INCBIN_U8("graphics/pokemon/grumpig/front.4bpp.lz");
const u8 gMonPalette_Grumpig[] = INCBIN_U8("graphics/pokemon/grumpig/normal.gbapal.lz");
const u8 gMonBackPic_Grumpig[] = INCBIN_U8("graphics/pokemon/grumpig/back.4bpp.lz");
const u8 gMonShinyPalette_Grumpig[] = INCBIN_U8("graphics/pokemon/grumpig/shiny.gbapal.lz");
const u8 gMonIcon_Grumpig[] = INCBIN_U8("graphics/pokemon/grumpig/icon.4bpp");
const u8 gMonFootprint_Grumpig[] = INCBIN_U8("graphics/pokemon/grumpig/footprint.1bpp");
const u8 gMonFrontPic_Plusle[] = INCBIN_U8("graphics/pokemon/plusle/front.4bpp.lz");
const u8 gMonPalette_Plusle[] = INCBIN_U8("graphics/pokemon/plusle/normal.gbapal.lz");
const u8 gMonBackPic_Plusle[] = INCBIN_U8("graphics/pokemon/plusle/back.4bpp.lz");
const u8 gMonShinyPalette_Plusle[] = INCBIN_U8("graphics/pokemon/plusle/shiny.gbapal.lz");
const u8 gMonIcon_Plusle[] = INCBIN_U8("graphics/pokemon/plusle/icon.4bpp");
const u8 gMonFootprint_Plusle[] = INCBIN_U8("graphics/pokemon/plusle/footprint.1bpp");
const u8 gMonFrontPic_Minun[] = INCBIN_U8("graphics/pokemon/minun/front.4bpp.lz");
const u8 gMonPalette_Minun[] = INCBIN_U8("graphics/pokemon/minun/normal.gbapal.lz");
const u8 gMonBackPic_Minun[] = INCBIN_U8("graphics/pokemon/minun/back.4bpp.lz");
const u8 gMonShinyPalette_Minun[] = INCBIN_U8("graphics/pokemon/minun/shiny.gbapal.lz");
const u8 gMonIcon_Minun[] = INCBIN_U8("graphics/pokemon/minun/icon.4bpp");
const u8 gMonFootprint_Minun[] = INCBIN_U8("graphics/pokemon/minun/footprint.1bpp");
const u8 gMonFrontPic_Mawile[] = INCBIN_U8("graphics/pokemon/mawile/front.4bpp.lz");
const u8 gMonPalette_Mawile[] = INCBIN_U8("graphics/pokemon/mawile/normal.gbapal.lz");
const u8 gMonBackPic_Mawile[] = INCBIN_U8("graphics/pokemon/mawile/back.4bpp.lz");
const u8 gMonShinyPalette_Mawile[] = INCBIN_U8("graphics/pokemon/mawile/shiny.gbapal.lz");
const u8 gMonIcon_Mawile[] = INCBIN_U8("graphics/pokemon/mawile/icon.4bpp");
const u8 gMonFootprint_Mawile[] = INCBIN_U8("graphics/pokemon/mawile/footprint.1bpp");
const u8 gMonFrontPic_Meditite[] = INCBIN_U8("graphics/pokemon/meditite/front.4bpp.lz");
const u8 gMonPalette_Meditite[] = INCBIN_U8("graphics/pokemon/meditite/normal.gbapal.lz");
const u8 gMonBackPic_Meditite[] = INCBIN_U8("graphics/pokemon/meditite/back.4bpp.lz");
const u8 gMonShinyPalette_Meditite[] = INCBIN_U8("graphics/pokemon/meditite/shiny.gbapal.lz");
const u8 gMonIcon_Meditite[] = INCBIN_U8("graphics/pokemon/meditite/icon.4bpp");
const u8 gMonFootprint_Meditite[] = INCBIN_U8("graphics/pokemon/meditite/footprint.1bpp");
const u8 gMonFrontPic_Medicham[] = INCBIN_U8("graphics/pokemon/medicham/front.4bpp.lz");
const u8 gMonPalette_Medicham[] = INCBIN_U8("graphics/pokemon/medicham/normal.gbapal.lz");
const u8 gMonBackPic_Medicham[] = INCBIN_U8("graphics/pokemon/medicham/back.4bpp.lz");
const u8 gMonShinyPalette_Medicham[] = INCBIN_U8("graphics/pokemon/medicham/shiny.gbapal.lz");
const u8 gMonIcon_Medicham[] = INCBIN_U8("graphics/pokemon/medicham/icon.4bpp");
const u8 gMonFootprint_Medicham[] = INCBIN_U8("graphics/pokemon/medicham/footprint.1bpp");
const u8 gMonFrontPic_Swablu[] = INCBIN_U8("graphics/pokemon/swablu/front.4bpp.lz");
const u8 gMonPalette_Swablu[] = INCBIN_U8("graphics/pokemon/swablu/normal.gbapal.lz");
const u8 gMonBackPic_Swablu[] = INCBIN_U8("graphics/pokemon/swablu/back.4bpp.lz");
const u8 gMonShinyPalette_Swablu[] = INCBIN_U8("graphics/pokemon/swablu/shiny.gbapal.lz");
const u8 gMonIcon_Swablu[] = INCBIN_U8("graphics/pokemon/swablu/icon.4bpp");
const u8 gMonFootprint_Swablu[] = INCBIN_U8("graphics/pokemon/swablu/footprint.1bpp");
const u8 gMonFrontPic_Altaria[] = INCBIN_U8("graphics/pokemon/altaria/front.4bpp.lz");
const u8 gMonPalette_Altaria[] = INCBIN_U8("graphics/pokemon/altaria/normal.gbapal.lz");
const u8 gMonBackPic_Altaria[] = INCBIN_U8("graphics/pokemon/altaria/back.4bpp.lz");
const u8 gMonShinyPalette_Altaria[] = INCBIN_U8("graphics/pokemon/altaria/shiny.gbapal.lz");
const u8 gMonIcon_Altaria[] = INCBIN_U8("graphics/pokemon/altaria/icon.4bpp");
const u8 gMonFootprint_Altaria[] = INCBIN_U8("graphics/pokemon/altaria/footprint.1bpp");
const u8 gMonFrontPic_Wynaut[] = INCBIN_U8("graphics/pokemon/wynaut/front.4bpp.lz");
const u8 gMonPalette_Wynaut[] = INCBIN_U8("graphics/pokemon/wynaut/normal.gbapal.lz");
const u8 gMonBackPic_Wynaut[] = INCBIN_U8("graphics/pokemon/wynaut/back.4bpp.lz");
const u8 gMonShinyPalette_Wynaut[] = INCBIN_U8("graphics/pokemon/wynaut/shiny.gbapal.lz");
const u8 gMonIcon_Wynaut[] = INCBIN_U8("graphics/pokemon/wynaut/icon.4bpp");
const u8 gMonFootprint_Wynaut[] = INCBIN_U8("graphics/pokemon/wynaut/footprint.1bpp");
const u8 gMonFrontPic_Duskull[] = INCBIN_U8("graphics/pokemon/duskull/front.4bpp.lz");
const u8 gMonPalette_Duskull[] = INCBIN_U8("graphics/pokemon/duskull/normal.gbapal.lz");
const u8 gMonBackPic_Duskull[] = INCBIN_U8("graphics/pokemon/duskull/back.4bpp.lz");
const u8 gMonShinyPalette_Duskull[] = INCBIN_U8("graphics/pokemon/duskull/shiny.gbapal.lz");
const u8 gMonIcon_Duskull[] = INCBIN_U8("graphics/pokemon/duskull/icon.4bpp");
const u8 gMonFootprint_Duskull[] = INCBIN_U8("graphics/pokemon/duskull/footprint.1bpp");
const u8 gMonFrontPic_Dusclops[] = INCBIN_U8("graphics/pokemon/dusclops/front.4bpp.lz");
const u8 gMonPalette_Dusclops[] = INCBIN_U8("graphics/pokemon/dusclops/normal.gbapal.lz");
const u8 gMonBackPic_Dusclops[] = INCBIN_U8("graphics/pokemon/dusclops/back.4bpp.lz");
const u8 gMonShinyPalette_Dusclops[] = INCBIN_U8("graphics/pokemon/dusclops/shiny.gbapal.lz");
const u8 gMonIcon_Dusclops[] = INCBIN_U8("graphics/pokemon/dusclops/icon.4bpp");
const u8 gMonFootprint_Dusclops[] = INCBIN_U8("graphics/pokemon/dusclops/footprint.1bpp");
const u8 gMonFrontPic_Roselia[] = INCBIN_U8("graphics/pokemon/roselia/front.4bpp.lz");
const u8 gMonPalette_Roselia[] = INCBIN_U8("graphics/pokemon/roselia/normal.gbapal.lz");
const u8 gMonBackPic_Roselia[] = INCBIN_U8("graphics/pokemon/roselia/back.4bpp.lz");
const u8 gMonShinyPalette_Roselia[] = INCBIN_U8("graphics/pokemon/roselia/shiny.gbapal.lz");
const u8 gMonIcon_Roselia[] = INCBIN_U8("graphics/pokemon/roselia/icon.4bpp");
const u8 gMonFootprint_Roselia[] = INCBIN_U8("graphics/pokemon/roselia/footprint.1bpp");
const u8 gMonFrontPic_Slakoth[] = INCBIN_U8("graphics/pokemon/slakoth/front.4bpp.lz");
const u8 gMonPalette_Slakoth[] = INCBIN_U8("graphics/pokemon/slakoth/normal.gbapal.lz");
const u8 gMonBackPic_Slakoth[] = INCBIN_U8("graphics/pokemon/slakoth/back.4bpp.lz");
const u8 gMonShinyPalette_Slakoth[] = INCBIN_U8("graphics/pokemon/slakoth/shiny.gbapal.lz");
const u8 gMonIcon_Slakoth[] = INCBIN_U8("graphics/pokemon/slakoth/icon.4bpp");
const u8 gMonFootprint_Slakoth[] = INCBIN_U8("graphics/pokemon/slakoth/footprint.1bpp");
const u8 gMonFrontPic_Vigoroth[] = INCBIN_U8("graphics/pokemon/vigoroth/front.4bpp.lz");
const u8 gMonPalette_Vigoroth[] = INCBIN_U8("graphics/pokemon/vigoroth/normal.gbapal.lz");
const u8 gMonBackPic_Vigoroth[] = INCBIN_U8("graphics/pokemon/vigoroth/back.4bpp.lz");
const u8 gMonShinyPalette_Vigoroth[] = INCBIN_U8("graphics/pokemon/vigoroth/shiny.gbapal.lz");
const u8 gMonIcon_Vigoroth[] = INCBIN_U8("graphics/pokemon/vigoroth/icon.4bpp");
const u8 gMonFootprint_Vigoroth[] = INCBIN_U8("graphics/pokemon/vigoroth/footprint.1bpp");
const u8 gMonFrontPic_Slaking[] = INCBIN_U8("graphics/pokemon/slaking/front.4bpp.lz");
const u8 gMonPalette_Slaking[] = INCBIN_U8("graphics/pokemon/slaking/normal.gbapal.lz");
const u8 gMonBackPic_Slaking[] = INCBIN_U8("graphics/pokemon/slaking/back.4bpp.lz");
const u8 gMonShinyPalette_Slaking[] = INCBIN_U8("graphics/pokemon/slaking/shiny.gbapal.lz");
const u8 gMonIcon_Slaking[] = INCBIN_U8("graphics/pokemon/slaking/icon.4bpp");
const u8 gMonFootprint_Slaking[] = INCBIN_U8("graphics/pokemon/slaking/footprint.1bpp");
const u8 gMonFrontPic_Gulpin[] = INCBIN_U8("graphics/pokemon/gulpin/front.4bpp.lz");
const u8 gMonPalette_Gulpin[] = INCBIN_U8("graphics/pokemon/gulpin/normal.gbapal.lz");
const u8 gMonBackPic_Gulpin[] = INCBIN_U8("graphics/pokemon/gulpin/back.4bpp.lz");
const u8 gMonShinyPalette_Gulpin[] = INCBIN_U8("graphics/pokemon/gulpin/shiny.gbapal.lz");
const u8 gMonIcon_Gulpin[] = INCBIN_U8("graphics/pokemon/gulpin/icon.4bpp");
const u8 gMonFootprint_Gulpin[] = INCBIN_U8("graphics/pokemon/gulpin/footprint.1bpp");
const u8 gMonFrontPic_Swalot[] = INCBIN_U8("graphics/pokemon/swalot/front.4bpp.lz");
const u8 gMonPalette_Swalot[] = INCBIN_U8("graphics/pokemon/swalot/normal.gbapal.lz");
const u8 gMonBackPic_Swalot[] = INCBIN_U8("graphics/pokemon/swalot/back.4bpp.lz");
const u8 gMonShinyPalette_Swalot[] = INCBIN_U8("graphics/pokemon/swalot/shiny.gbapal.lz");
const u8 gMonIcon_Swalot[] = INCBIN_U8("graphics/pokemon/swalot/icon.4bpp");
const u8 gMonFootprint_Swalot[] = INCBIN_U8("graphics/pokemon/swalot/footprint.1bpp");
const u8 gMonFrontPic_Tropius[] = INCBIN_U8("graphics/pokemon/tropius/front.4bpp.lz");
const u8 gMonPalette_Tropius[] = INCBIN_U8("graphics/pokemon/tropius/normal.gbapal.lz");
const u8 gMonBackPic_Tropius[] = INCBIN_U8("graphics/pokemon/tropius/back.4bpp.lz");
const u8 gMonShinyPalette_Tropius[] = INCBIN_U8("graphics/pokemon/tropius/shiny.gbapal.lz");
const u8 gMonIcon_Tropius[] = INCBIN_U8("graphics/pokemon/tropius/icon.4bpp");
const u8 gMonFootprint_Tropius[] = INCBIN_U8("graphics/pokemon/tropius/footprint.1bpp");
const u8 gMonFrontPic_Whismur[] = INCBIN_U8("graphics/pokemon/whismur/front.4bpp.lz");
const u8 gMonPalette_Whismur[] = INCBIN_U8("graphics/pokemon/whismur/normal.gbapal.lz");
const u8 gMonBackPic_Whismur[] = INCBIN_U8("graphics/pokemon/whismur/back.4bpp.lz");
const u8 gMonShinyPalette_Whismur[] = INCBIN_U8("graphics/pokemon/whismur/shiny.gbapal.lz");
const u8 gMonIcon_Whismur[] = INCBIN_U8("graphics/pokemon/whismur/icon.4bpp");
const u8 gMonFootprint_Whismur[] = INCBIN_U8("graphics/pokemon/whismur/footprint.1bpp");
const u8 gMonFrontPic_Loudred[] = INCBIN_U8("graphics/pokemon/loudred/front.4bpp.lz");
const u8 gMonPalette_Loudred[] = INCBIN_U8("graphics/pokemon/loudred/normal.gbapal.lz");
const u8 gMonBackPic_Loudred[] = INCBIN_U8("graphics/pokemon/loudred/back.4bpp.lz");
const u8 gMonShinyPalette_Loudred[] = INCBIN_U8("graphics/pokemon/loudred/shiny.gbapal.lz");
const u8 gMonIcon_Loudred[] = INCBIN_U8("graphics/pokemon/loudred/icon.4bpp");
const u8 gMonFootprint_Loudred[] = INCBIN_U8("graphics/pokemon/loudred/footprint.1bpp");
const u8 gMonFrontPic_Exploud[] = INCBIN_U8("graphics/pokemon/exploud/front.4bpp.lz");
const u8 gMonPalette_Exploud[] = INCBIN_U8("graphics/pokemon/exploud/normal.gbapal.lz");
const u8 gMonBackPic_Exploud[] = INCBIN_U8("graphics/pokemon/exploud/back.4bpp.lz");
const u8 gMonShinyPalette_Exploud[] = INCBIN_U8("graphics/pokemon/exploud/shiny.gbapal.lz");
const u8 gMonIcon_Exploud[] = INCBIN_U8("graphics/pokemon/exploud/icon.4bpp");
const u8 gMonFootprint_Exploud[] = INCBIN_U8("graphics/pokemon/exploud/footprint.1bpp");
const u8 gMonFrontPic_Clamperl[] = INCBIN_U8("graphics/pokemon/clamperl/front.4bpp.lz");
const u8 gMonPalette_Clamperl[] = INCBIN_U8("graphics/pokemon/clamperl/normal.gbapal.lz");
const u8 gMonBackPic_Clamperl[] = INCBIN_U8("graphics/pokemon/clamperl/back.4bpp.lz");
const u8 gMonShinyPalette_Clamperl[] = INCBIN_U8("graphics/pokemon/clamperl/shiny.gbapal.lz");
const u8 gMonIcon_Clamperl[] = INCBIN_U8("graphics/pokemon/clamperl/icon.4bpp");
const u8 gMonFootprint_Clamperl[] = INCBIN_U8("graphics/pokemon/clamperl/footprint.1bpp");
const u8 gMonFrontPic_Huntail[] = INCBIN_U8("graphics/pokemon/huntail/front.4bpp.lz");
const u8 gMonPalette_Huntail[] = INCBIN_U8("graphics/pokemon/huntail/normal.gbapal.lz");
const u8 gMonBackPic_Huntail[] = INCBIN_U8("graphics/pokemon/huntail/back.4bpp.lz");
const u8 gMonShinyPalette_Huntail[] = INCBIN_U8("graphics/pokemon/huntail/shiny.gbapal.lz");
const u8 gMonIcon_Huntail[] = INCBIN_U8("graphics/pokemon/huntail/icon.4bpp");
const u8 gMonFootprint_Huntail[] = INCBIN_U8("graphics/pokemon/huntail/footprint.1bpp");
const u8 gMonFrontPic_Gorebyss[] = INCBIN_U8("graphics/pokemon/gorebyss/front.4bpp.lz");
const u8 gMonPalette_Gorebyss[] = INCBIN_U8("graphics/pokemon/gorebyss/normal.gbapal.lz");
const u8 gMonBackPic_Gorebyss[] = INCBIN_U8("graphics/pokemon/gorebyss/back.4bpp.lz");
const u8 gMonShinyPalette_Gorebyss[] = INCBIN_U8("graphics/pokemon/gorebyss/shiny.gbapal.lz");
const u8 gMonIcon_Gorebyss[] = INCBIN_U8("graphics/pokemon/gorebyss/icon.4bpp");
const u8 gMonFootprint_Gorebyss[] = INCBIN_U8("graphics/pokemon/gorebyss/footprint.1bpp");
const u8 gMonFrontPic_Absol[] = INCBIN_U8("graphics/pokemon/absol/front.4bpp.lz");
const u8 gMonPalette_Absol[] = INCBIN_U8("graphics/pokemon/absol/normal.gbapal.lz");
const u8 gMonBackPic_Absol[] = INCBIN_U8("graphics/pokemon/absol/back.4bpp.lz");
const u8 gMonShinyPalette_Absol[] = INCBIN_U8("graphics/pokemon/absol/shiny.gbapal.lz");
const u8 gMonIcon_Absol[] = INCBIN_U8("graphics/pokemon/absol/icon.4bpp");
const u8 gMonFootprint_Absol[] = INCBIN_U8("graphics/pokemon/absol/footprint.1bpp");
const u8 gMonFrontPic_Shuppet[] = INCBIN_U8("graphics/pokemon/shuppet/front.4bpp.lz");
const u8 gMonPalette_Shuppet[] = INCBIN_U8("graphics/pokemon/shuppet/normal.gbapal.lz");
const u8 gMonBackPic_Shuppet[] = INCBIN_U8("graphics/pokemon/shuppet/back.4bpp.lz");
const u8 gMonShinyPalette_Shuppet[] = INCBIN_U8("graphics/pokemon/shuppet/shiny.gbapal.lz");
const u8 gMonIcon_Shuppet[] = INCBIN_U8("graphics/pokemon/shuppet/icon.4bpp");
const u8 gMonFootprint_Shuppet[] = INCBIN_U8("graphics/pokemon/shuppet/footprint.1bpp");
const u8 gMonFrontPic_Banette[] = INCBIN_U8("graphics/pokemon/banette/front.4bpp.lz");
const u8 gMonPalette_Banette[] = INCBIN_U8("graphics/pokemon/banette/normal.gbapal.lz");
const u8 gMonBackPic_Banette[] = INCBIN_U8("graphics/pokemon/banette/back.4bpp.lz");
const u8 gMonShinyPalette_Banette[] = INCBIN_U8("graphics/pokemon/banette/shiny.gbapal.lz");
const u8 gMonIcon_Banette[] = INCBIN_U8("graphics/pokemon/banette/icon.4bpp");
const u8 gMonFootprint_Banette[] = INCBIN_U8("graphics/pokemon/banette/footprint.1bpp");
const u8 gMonFrontPic_Seviper[] = INCBIN_U8("graphics/pokemon/seviper/front.4bpp.lz");
const u8 gMonPalette_Seviper[] = INCBIN_U8("graphics/pokemon/seviper/normal.gbapal.lz");
const u8 gMonBackPic_Seviper[] = INCBIN_U8("graphics/pokemon/seviper/back.4bpp.lz");
const u8 gMonShinyPalette_Seviper[] = INCBIN_U8("graphics/pokemon/seviper/shiny.gbapal.lz");
const u8 gMonIcon_Seviper[] = INCBIN_U8("graphics/pokemon/seviper/icon.4bpp");
const u8 gMonFootprint_Seviper[] = INCBIN_U8("graphics/pokemon/seviper/footprint.1bpp");
const u8 gMonFrontPic_Zangoose[] = INCBIN_U8("graphics/pokemon/zangoose/front.4bpp.lz");
const u8 gMonPalette_Zangoose[] = INCBIN_U8("graphics/pokemon/zangoose/normal.gbapal.lz");
const u8 gMonBackPic_Zangoose[] = INCBIN_U8("graphics/pokemon/zangoose/back.4bpp.lz");
const u8 gMonShinyPalette_Zangoose[] = INCBIN_U8("graphics/pokemon/zangoose/shiny.gbapal.lz");
const u8 gMonIcon_Zangoose[] = INCBIN_U8("graphics/pokemon/zangoose/icon.4bpp");
const u8 gMonFootprint_Zangoose[] = INCBIN_U8("graphics/pokemon/zangoose/footprint.1bpp");
const u8 gMonFrontPic_Relicanth[] = INCBIN_U8("graphics/pokemon/relicanth/front.4bpp.lz");
const u8 gMonPalette_Relicanth[] = INCBIN_U8("graphics/pokemon/relicanth/normal.gbapal.lz");
const u8 gMonBackPic_Relicanth[] = INCBIN_U8("graphics/pokemon/relicanth/back.4bpp.lz");
const u8 gMonShinyPalette_Relicanth[] = INCBIN_U8("graphics/pokemon/relicanth/shiny.gbapal.lz");
const u8 gMonIcon_Relicanth[] = INCBIN_U8("graphics/pokemon/relicanth/icon.4bpp");
const u8 gMonFootprint_Relicanth[] = INCBIN_U8("graphics/pokemon/relicanth/footprint.1bpp");
const u8 gMonFrontPic_Aron[] = INCBIN_U8("graphics/pokemon/aron/front.4bpp.lz");
const u8 gMonPalette_Aron[] = INCBIN_U8("graphics/pokemon/aron/normal.gbapal.lz");
const u8 gMonBackPic_Aron[] = INCBIN_U8("graphics/pokemon/aron/back.4bpp.lz");
const u8 gMonShinyPalette_Aron[] = INCBIN_U8("graphics/pokemon/aron/shiny.gbapal.lz");
const u8 gMonIcon_Aron[] = INCBIN_U8("graphics/pokemon/aron/icon.4bpp");
const u8 gMonFootprint_Aron[] = INCBIN_U8("graphics/pokemon/aron/footprint.1bpp");
const u8 gMonFrontPic_Lairon[] = INCBIN_U8("graphics/pokemon/lairon/front.4bpp.lz");
const u8 gMonPalette_Lairon[] = INCBIN_U8("graphics/pokemon/lairon/normal.gbapal.lz");
const u8 gMonBackPic_Lairon[] = INCBIN_U8("graphics/pokemon/lairon/back.4bpp.lz");
const u8 gMonShinyPalette_Lairon[] = INCBIN_U8("graphics/pokemon/lairon/shiny.gbapal.lz");
const u8 gMonIcon_Lairon[] = INCBIN_U8("graphics/pokemon/lairon/icon.4bpp");
const u8 gMonFootprint_Lairon[] = INCBIN_U8("graphics/pokemon/lairon/footprint.1bpp");
const u8 gMonFrontPic_Aggron[] = INCBIN_U8("graphics/pokemon/aggron/front.4bpp.lz");
const u8 gMonPalette_Aggron[] = INCBIN_U8("graphics/pokemon/aggron/normal.gbapal.lz");
const u8 gMonBackPic_Aggron[] = INCBIN_U8("graphics/pokemon/aggron/back.4bpp.lz");
const u8 gMonShinyPalette_Aggron[] = INCBIN_U8("graphics/pokemon/aggron/shiny.gbapal.lz");
const u8 gMonIcon_Aggron[] = INCBIN_U8("graphics/pokemon/aggron/icon.4bpp");
const u8 gMonFootprint_Aggron[] = INCBIN_U8("graphics/pokemon/aggron/footprint.1bpp");
const u8 gMonFrontPic_Castform[] = INCBIN_U8("graphics/pokemon/castform/front.4bpp.lz");
const u8 gMonPalette_Castform[] = INCBIN_U8("graphics/pokemon/castform/normal.gbapal.lz");
const u8 gMonBackPic_Castform[] = INCBIN_U8("graphics/pokemon/castform/back.4bpp.lz");
const u8 gMonShinyPalette_Castform[] = INCBIN_U8("graphics/pokemon/castform/shiny.gbapal.lz");
const u8 gMonIcon_Castform[] = INCBIN_U8("graphics/pokemon/castform/icon.4bpp");
const u8 gMonFootprint_Castform[] = INCBIN_U8("graphics/pokemon/castform/footprint.1bpp");
const u8 gMonFrontPic_Volbeat[] = INCBIN_U8("graphics/pokemon/volbeat/front.4bpp.lz");
const u8 gMonPalette_Volbeat[] = INCBIN_U8("graphics/pokemon/volbeat/normal.gbapal.lz");
const u8 gMonBackPic_Volbeat[] = INCBIN_U8("graphics/pokemon/volbeat/back.4bpp.lz");
const u8 gMonShinyPalette_Volbeat[] = INCBIN_U8("graphics/pokemon/volbeat/shiny.gbapal.lz");
const u8 gMonIcon_Volbeat[] = INCBIN_U8("graphics/pokemon/volbeat/icon.4bpp");
const u8 gMonFootprint_Volbeat[] = INCBIN_U8("graphics/pokemon/volbeat/footprint.1bpp");
const u8 gMonFrontPic_Illumise[] = INCBIN_U8("graphics/pokemon/illumise/front.4bpp.lz");
const u8 gMonPalette_Illumise[] = INCBIN_U8("graphics/pokemon/illumise/normal.gbapal.lz");
const u8 gMonBackPic_Illumise[] = INCBIN_U8("graphics/pokemon/illumise/back.4bpp.lz");
const u8 gMonShinyPalette_Illumise[] = INCBIN_U8("graphics/pokemon/illumise/shiny.gbapal.lz");
const u8 gMonIcon_Illumise[] = INCBIN_U8("graphics/pokemon/illumise/icon.4bpp");
const u8 gMonFootprint_Illumise[] = INCBIN_U8("graphics/pokemon/illumise/footprint.1bpp");
const u8 gMonFrontPic_Lileep[] = INCBIN_U8("graphics/pokemon/lileep/front.4bpp.lz");
const u8 gMonPalette_Lileep[] = INCBIN_U8("graphics/pokemon/lileep/normal.gbapal.lz");
const u8 gMonBackPic_Lileep[] = INCBIN_U8("graphics/pokemon/lileep/back.4bpp.lz");
const u8 gMonShinyPalette_Lileep[] = INCBIN_U8("graphics/pokemon/lileep/shiny.gbapal.lz");
const u8 gMonIcon_Lileep[] = INCBIN_U8("graphics/pokemon/lileep/icon.4bpp");
const u8 gMonFootprint_Lileep[] = INCBIN_U8("graphics/pokemon/lileep/footprint.1bpp");
const u8 gMonFrontPic_Cradily[] = INCBIN_U8("graphics/pokemon/cradily/front.4bpp.lz");
const u8 gMonPalette_Cradily[] = INCBIN_U8("graphics/pokemon/cradily/normal.gbapal.lz");
const u8 gMonBackPic_Cradily[] = INCBIN_U8("graphics/pokemon/cradily/back.4bpp.lz");
const u8 gMonShinyPalette_Cradily[] = INCBIN_U8("graphics/pokemon/cradily/shiny.gbapal.lz");
const u8 gMonIcon_Cradily[] = INCBIN_U8("graphics/pokemon/cradily/icon.4bpp");
const u8 gMonFootprint_Cradily[] = INCBIN_U8("graphics/pokemon/cradily/footprint.1bpp");
const u8 gMonFrontPic_Anorith[] = INCBIN_U8("graphics/pokemon/anorith/front.4bpp.lz");
const u8 gMonPalette_Anorith[] = INCBIN_U8("graphics/pokemon/anorith/normal.gbapal.lz");
const u8 gMonBackPic_Anorith[] = INCBIN_U8("graphics/pokemon/anorith/back.4bpp.lz");
const u8 gMonShinyPalette_Anorith[] = INCBIN_U8("graphics/pokemon/anorith/shiny.gbapal.lz");
const u8 gMonIcon_Anorith[] = INCBIN_U8("graphics/pokemon/anorith/icon.4bpp");
const u8 gMonFootprint_Anorith[] = INCBIN_U8("graphics/pokemon/anorith/footprint.1bpp");
const u8 gMonFrontPic_Armaldo[] = INCBIN_U8("graphics/pokemon/armaldo/front.4bpp.lz");
const u8 gMonPalette_Armaldo[] = INCBIN_U8("graphics/pokemon/armaldo/normal.gbapal.lz");
const u8 gMonBackPic_Armaldo[] = INCBIN_U8("graphics/pokemon/armaldo/back.4bpp.lz");
const u8 gMonShinyPalette_Armaldo[] = INCBIN_U8("graphics/pokemon/armaldo/shiny.gbapal.lz");
const u8 gMonIcon_Armaldo[] = INCBIN_U8("graphics/pokemon/armaldo/icon.4bpp");
const u8 gMonFootprint_Armaldo[] = INCBIN_U8("graphics/pokemon/armaldo/footprint.1bpp");
const u8 gMonFrontPic_Ralts[] = INCBIN_U8("graphics/pokemon/ralts/front.4bpp.lz");
const u8 gMonPalette_Ralts[] = INCBIN_U8("graphics/pokemon/ralts/normal.gbapal.lz");
const u8 gMonBackPic_Ralts[] = INCBIN_U8("graphics/pokemon/ralts/back.4bpp.lz");
const u8 gMonShinyPalette_Ralts[] = INCBIN_U8("graphics/pokemon/ralts/shiny.gbapal.lz");
const u8 gMonIcon_Ralts[] = INCBIN_U8("graphics/pokemon/ralts/icon.4bpp");
const u8 gMonFootprint_Ralts[] = INCBIN_U8("graphics/pokemon/ralts/footprint.1bpp");
const u8 gMonFrontPic_Kirlia[] = INCBIN_U8("graphics/pokemon/kirlia/front.4bpp.lz");
const u8 gMonPalette_Kirlia[] = INCBIN_U8("graphics/pokemon/kirlia/normal.gbapal.lz");
const u8 gMonBackPic_Kirlia[] = INCBIN_U8("graphics/pokemon/kirlia/back.4bpp.lz");
const u8 gMonShinyPalette_Kirlia[] = INCBIN_U8("graphics/pokemon/kirlia/shiny.gbapal.lz");
const u8 gMonIcon_Kirlia[] = INCBIN_U8("graphics/pokemon/kirlia/icon.4bpp");
const u8 gMonFootprint_Kirlia[] = INCBIN_U8("graphics/pokemon/kirlia/footprint.1bpp");
const u8 gMonFrontPic_Gardevoir[] = INCBIN_U8("graphics/pokemon/gardevoir/front.4bpp.lz");
const u8 gMonPalette_Gardevoir[] = INCBIN_U8("graphics/pokemon/gardevoir/normal.gbapal.lz");
const u8 gMonBackPic_Gardevoir[] = INCBIN_U8("graphics/pokemon/gardevoir/back.4bpp.lz");
const u8 gMonShinyPalette_Gardevoir[] = INCBIN_U8("graphics/pokemon/gardevoir/shiny.gbapal.lz");
const u8 gMonIcon_Gardevoir[] = INCBIN_U8("graphics/pokemon/gardevoir/icon.4bpp");
const u8 gMonFootprint_Gardevoir[] = INCBIN_U8("graphics/pokemon/gardevoir/footprint.1bpp");
const u8 gMonFrontPic_Bagon[] = INCBIN_U8("graphics/pokemon/bagon/front.4bpp.lz");
const u8 gMonPalette_Bagon[] = INCBIN_U8("graphics/pokemon/bagon/normal.gbapal.lz");
const u8 gMonBackPic_Bagon[] = INCBIN_U8("graphics/pokemon/bagon/back.4bpp.lz");
const u8 gMonShinyPalette_Bagon[] = INCBIN_U8("graphics/pokemon/bagon/shiny.gbapal.lz");
const u8 gMonIcon_Bagon[] = INCBIN_U8("graphics/pokemon/bagon/icon.4bpp");
const u8 gMonFootprint_Bagon[] = INCBIN_U8("graphics/pokemon/bagon/footprint.1bpp");
const u8 gMonFrontPic_Shelgon[] = INCBIN_U8("graphics/pokemon/shelgon/front.4bpp.lz");
const u8 gMonPalette_Shelgon[] = INCBIN_U8("graphics/pokemon/shelgon/normal.gbapal.lz");
const u8 gMonBackPic_Shelgon[] = INCBIN_U8("graphics/pokemon/shelgon/back.4bpp.lz");
const u8 gMonShinyPalette_Shelgon[] = INCBIN_U8("graphics/pokemon/shelgon/shiny.gbapal.lz");
const u8 gMonIcon_Shelgon[] = INCBIN_U8("graphics/pokemon/shelgon/icon.4bpp");
const u8 gMonFootprint_Shelgon[] = INCBIN_U8("graphics/pokemon/shelgon/footprint.1bpp");
const u8 gMonFrontPic_Salamence[] = INCBIN_U8("graphics/pokemon/salamence/front.4bpp.lz");
const u8 gMonPalette_Salamence[] = INCBIN_U8("graphics/pokemon/salamence/normal.gbapal.lz");
const u8 gMonBackPic_Salamence[] = INCBIN_U8("graphics/pokemon/salamence/back.4bpp.lz");
const u8 gMonShinyPalette_Salamence[] = INCBIN_U8("graphics/pokemon/salamence/shiny.gbapal.lz");
const u8 gMonIcon_Salamence[] = INCBIN_U8("graphics/pokemon/salamence/icon.4bpp");
const u8 gMonFootprint_Salamence[] = INCBIN_U8("graphics/pokemon/salamence/footprint.1bpp");
const u8 gMonFrontPic_Beldum[] = INCBIN_U8("graphics/pokemon/beldum/front.4bpp.lz");
const u8 gMonPalette_Beldum[] = INCBIN_U8("graphics/pokemon/beldum/normal.gbapal.lz");
const u8 gMonBackPic_Beldum[] = INCBIN_U8("graphics/pokemon/beldum/back.4bpp.lz");
const u8 gMonShinyPalette_Beldum[] = INCBIN_U8("graphics/pokemon/beldum/shiny.gbapal.lz");
const u8 gMonIcon_Beldum[] = INCBIN_U8("graphics/pokemon/beldum/icon.4bpp");
const u8 gMonFootprint_Beldum[] = INCBIN_U8("graphics/pokemon/beldum/footprint.1bpp");
const u8 gMonFrontPic_Metang[] = INCBIN_U8("graphics/pokemon/metang/front.4bpp.lz");
const u8 gMonPalette_Metang[] = INCBIN_U8("graphics/pokemon/metang/normal.gbapal.lz");
const u8 gMonBackPic_Metang[] = INCBIN_U8("graphics/pokemon/metang/back.4bpp.lz");
const u8 gMonShinyPalette_Metang[] = INCBIN_U8("graphics/pokemon/metang/shiny.gbapal.lz");
const u8 gMonIcon_Metang[] = INCBIN_U8("graphics/pokemon/metang/icon.4bpp");
const u8 gMonFootprint_Metang[] = INCBIN_U8("graphics/pokemon/metang/footprint.1bpp");
const u8 gMonFrontPic_Metagross[] = INCBIN_U8("graphics/pokemon/metagross/front.4bpp.lz");
const u8 gMonPalette_Metagross[] = INCBIN_U8("graphics/pokemon/metagross/normal.gbapal.lz");
const u8 gMonBackPic_Metagross[] = INCBIN_U8("graphics/pokemon/metagross/back.4bpp.lz");
const u8 gMonShinyPalette_Metagross[] = INCBIN_U8("graphics/pokemon/metagross/shiny.gbapal.lz");
const u8 gMonIcon_Metagross[] = INCBIN_U8("graphics/pokemon/metagross/icon.4bpp");
const u8 gMonFootprint_Metagross[] = INCBIN_U8("graphics/pokemon/metagross/footprint.1bpp");
const u8 gMonFrontPic_Regirock[] = INCBIN_U8("graphics/pokemon/regirock/front.4bpp.lz");
const u8 gMonPalette_Regirock[] = INCBIN_U8("graphics/pokemon/regirock/normal.gbapal.lz");
const u8 gMonBackPic_Regirock[] = INCBIN_U8("graphics/pokemon/regirock/back.4bpp.lz");
const u8 gMonShinyPalette_Regirock[] = INCBIN_U8("graphics/pokemon/regirock/shiny.gbapal.lz");
const u8 gMonIcon_Regirock[] = INCBIN_U8("graphics/pokemon/regirock/icon.4bpp");
const u8 gMonFootprint_Regirock[] = INCBIN_U8("graphics/pokemon/regirock/footprint.1bpp");
const u8 gMonFrontPic_Regice[] = INCBIN_U8("graphics/pokemon/regice/front.4bpp.lz");
const u8 gMonPalette_Regice[] = INCBIN_U8("graphics/pokemon/regice/normal.gbapal.lz");
const u8 gMonBackPic_Regice[] = INCBIN_U8("graphics/pokemon/regice/back.4bpp.lz");
const u8 gMonShinyPalette_Regice[] = INCBIN_U8("graphics/pokemon/regice/shiny.gbapal.lz");
const u8 gMonIcon_Regice[] = INCBIN_U8("graphics/pokemon/regice/icon.4bpp");
const u8 gMonFootprint_Regice[] = INCBIN_U8("graphics/pokemon/regice/footprint.1bpp");
const u8 gMonFrontPic_Registeel[] = INCBIN_U8("graphics/pokemon/registeel/front.4bpp.lz");
const u8 gMonPalette_Registeel[] = INCBIN_U8("graphics/pokemon/registeel/normal.gbapal.lz");
const u8 gMonBackPic_Registeel[] = INCBIN_U8("graphics/pokemon/registeel/back.4bpp.lz");
const u8 gMonShinyPalette_Registeel[] = INCBIN_U8("graphics/pokemon/registeel/shiny.gbapal.lz");
const u8 gMonIcon_Registeel[] = INCBIN_U8("graphics/pokemon/registeel/icon.4bpp");
const u8 gMonFootprint_Registeel[] = INCBIN_U8("graphics/pokemon/registeel/footprint.1bpp");
const u8 gMonFrontPic_Kyogre[] = INCBIN_U8("graphics/pokemon/kyogre/front.4bpp.lz");
const u8 gMonPalette_Kyogre[] = INCBIN_U8("graphics/pokemon/kyogre/normal.gbapal.lz");
const u8 gMonBackPic_Kyogre[] = INCBIN_U8("graphics/pokemon/kyogre/back.4bpp.lz");
const u8 gMonShinyPalette_Kyogre[] = INCBIN_U8("graphics/pokemon/kyogre/shiny.gbapal.lz");
const u8 gMonIcon_Kyogre[] = INCBIN_U8("graphics/pokemon/kyogre/icon.4bpp");
const u8 gMonFootprint_Kyogre[] = INCBIN_U8("graphics/pokemon/kyogre/footprint.1bpp");
const u8 gMonFrontPic_Groudon[] = INCBIN_U8("graphics/pokemon/groudon/front.4bpp.lz");
const u8 gMonPalette_Groudon[] = INCBIN_U8("graphics/pokemon/groudon/normal.gbapal.lz");
const u8 gMonBackPic_Groudon[] = INCBIN_U8("graphics/pokemon/groudon/back.4bpp.lz");
const u8 gMonShinyPalette_Groudon[] = INCBIN_U8("graphics/pokemon/groudon/shiny.gbapal.lz");
const u8 gMonIcon_Groudon[] = INCBIN_U8("graphics/pokemon/groudon/icon.4bpp");
const u8 gMonFootprint_Groudon[] = INCBIN_U8("graphics/pokemon/groudon/footprint.1bpp");
const u8 gMonFrontPic_Rayquaza[] = INCBIN_U8("graphics/pokemon/rayquaza/front.4bpp.lz");
const u8 gMonPalette_Rayquaza[] = INCBIN_U8("graphics/pokemon/rayquaza/normal.gbapal.lz");
const u8 gMonBackPic_Rayquaza[] = INCBIN_U8("graphics/pokemon/rayquaza/back.4bpp.lz");
const u8 gMonShinyPalette_Rayquaza[] = INCBIN_U8("graphics/pokemon/rayquaza/shiny.gbapal.lz");
const u8 gMonIcon_Rayquaza[] = INCBIN_U8("graphics/pokemon/rayquaza/icon.4bpp");
const u8 gMonFootprint_Rayquaza[] = INCBIN_U8("graphics/pokemon/rayquaza/footprint.1bpp");
const u8 gMonFrontPic_Latias[] = INCBIN_U8("graphics/pokemon/latias/front.4bpp.lz");
const u8 gMonPalette_Latias[] = INCBIN_U8("graphics/pokemon/latias/normal.gbapal.lz");
const u8 gMonBackPic_Latias[] = INCBIN_U8("graphics/pokemon/latias/back.4bpp.lz");
const u8 gMonShinyPalette_Latias[] = INCBIN_U8("graphics/pokemon/latias/shiny.gbapal.lz");
const u8 gMonIcon_Latias[] = INCBIN_U8("graphics/pokemon/latias/icon.4bpp");
const u8 gMonFootprint_Latias[] = INCBIN_U8("graphics/pokemon/latias/footprint.1bpp");
const u8 gMonFrontPic_Latios[] = INCBIN_U8("graphics/pokemon/latios/front.4bpp.lz");
const u8 gMonPalette_Latios[] = INCBIN_U8("graphics/pokemon/latios/normal.gbapal.lz");
const u8 gMonBackPic_Latios[] = INCBIN_U8("graphics/pokemon/latios/back.4bpp.lz");
const u8 gMonShinyPalette_Latios[] = INCBIN_U8("graphics/pokemon/latios/shiny.gbapal.lz");
const u8 gMonIcon_Latios[] = INCBIN_U8("graphics/pokemon/latios/icon.4bpp");
const u8 gMonFootprint_Latios[] = INCBIN_U8("graphics/pokemon/latios/footprint.1bpp");
const u8 gMonFrontPic_Jirachi[] = INCBIN_U8("graphics/pokemon/jirachi/front.4bpp.lz");
const u8 gMonPalette_Jirachi[] = INCBIN_U8("graphics/pokemon/jirachi/normal.gbapal.lz");
const u8 gMonBackPic_Jirachi[] = INCBIN_U8("graphics/pokemon/jirachi/back.4bpp.lz");
const u8 gMonShinyPalette_Jirachi[] = INCBIN_U8("graphics/pokemon/jirachi/shiny.gbapal.lz");
const u8 gMonIcon_Jirachi[] = INCBIN_U8("graphics/pokemon/jirachi/icon.4bpp");
const u8 gMonFootprint_Jirachi[] = INCBIN_U8("graphics/pokemon/jirachi/footprint.1bpp");
const u8 gMonFrontPic_Deoxys[] = INCBIN_U8("graphics/pokemon/deoxys/front.4bpp.lz");
const u8 gMonPalette_Deoxys[] = INCBIN_U8("graphics/pokemon/deoxys/normal.gbapal.lz");
const u8 gMonBackPic_Deoxys[] = INCBIN_U8("graphics/pokemon/deoxys/back.4bpp.lz");
const u8 gMonShinyPalette_Deoxys[] = INCBIN_U8("graphics/pokemon/deoxys/shiny.gbapal.lz");
const u8 gMonIcon_Deoxys[] = INCBIN_U8("graphics/pokemon/deoxys/icon.4bpp");
const u8 gMonFootprint_Deoxys[] = INCBIN_U8("graphics/pokemon/deoxys/footprint.1bpp");
const u8 gMonFrontPic_Chimecho[] = INCBIN_U8("graphics/pokemon/chimecho/front.4bpp.lz");
const u8 gMonPalette_Chimecho[] = INCBIN_U8("graphics/pokemon/chimecho/normal.gbapal.lz");
const u8 gMonBackPic_Chimecho[] = INCBIN_U8("graphics/pokemon/chimecho/back.4bpp.lz");
const u8 gMonShinyPalette_Chimecho[] = INCBIN_U8("graphics/pokemon/chimecho/shiny.gbapal.lz");
const u8 gMonIcon_Chimecho[] = INCBIN_U8("graphics/pokemon/chimecho/icon.4bpp");
const u8 gMonFootprint_Chimecho[] = INCBIN_U8("graphics/pokemon/chimecho/footprint.1bpp");
const u8 gMonPic_Egg[] = INCBIN_U8("graphics/pokemon/egg/pic.4bpp.lz");
const u8 gMonPalette_Egg[] = INCBIN_U8("graphics/pokemon/egg/palette.gbapal.lz");
const u8 gMonFrontPic_UnownB[] = INCBIN_U8("graphics/pokemon/unown/front_b.4bpp.lz");
const u8 gMonBackPic_UnownB[] = INCBIN_U8("graphics/pokemon/unown/back_b.4bpp.lz");
const u8 gMonIcon_UnownB[] = INCBIN_U8("graphics/pokemon/unown/icon_b.4bpp");
const u8 gMonFrontPic_UnownC[] = INCBIN_U8("graphics/pokemon/unown/front_c.4bpp.lz");
const u8 gMonBackPic_UnownC[] = INCBIN_U8("graphics/pokemon/unown/back_c.4bpp.lz");
const u8 gMonIcon_UnownC[] = INCBIN_U8("graphics/pokemon/unown/icon_c.4bpp");
const u8 gMonFrontPic_UnownD[] = INCBIN_U8("graphics/pokemon/unown/front_d.4bpp.lz");
const u8 gMonBackPic_UnownD[] = INCBIN_U8("graphics/pokemon/unown/back_d.4bpp.lz");
const u8 gMonIcon_UnownD[] = INCBIN_U8("graphics/pokemon/unown/icon_d.4bpp");
const u8 gMonFrontPic_UnownE[] = INCBIN_U8("graphics/pokemon/unown/front_e.4bpp.lz");
const u8 gMonBackPic_UnownE[] = INCBIN_U8("graphics/pokemon/unown/back_e.4bpp.lz");
const u8 gMonIcon_UnownE[] = INCBIN_U8("graphics/pokemon/unown/icon_e.4bpp");
const u8 gMonFrontPic_UnownF[] = INCBIN_U8("graphics/pokemon/unown/front_f.4bpp.lz");
const u8 gMonBackPic_UnownF[] = INCBIN_U8("graphics/pokemon/unown/back_f.4bpp.lz");
const u8 gMonIcon_UnownF[] = INCBIN_U8("graphics/pokemon/unown/icon_f.4bpp");
const u8 gMonFrontPic_UnownG[] = INCBIN_U8("graphics/pokemon/unown/front_g.4bpp.lz");
const u8 gMonBackPic_UnownG[] = INCBIN_U8("graphics/pokemon/unown/back_g.4bpp.lz");
const u8 gMonIcon_UnownG[] = INCBIN_U8("graphics/pokemon/unown/icon_g.4bpp");
const u8 gMonFrontPic_UnownH[] = INCBIN_U8("graphics/pokemon/unown/front_h.4bpp.lz");
const u8 gMonBackPic_UnownH[] = INCBIN_U8("graphics/pokemon/unown/back_h.4bpp.lz");
const u8 gMonIcon_UnownH[] = INCBIN_U8("graphics/pokemon/unown/icon_h.4bpp");
const u8 gMonFrontPic_UnownI[] = INCBIN_U8("graphics/pokemon/unown/front_i.4bpp.lz");
const u8 gMonBackPic_UnownI[] = INCBIN_U8("graphics/pokemon/unown/back_i.4bpp.lz");
const u8 gMonIcon_UnownI[] = INCBIN_U8("graphics/pokemon/unown/icon_i.4bpp");
const u8 gMonFrontPic_UnownJ[] = INCBIN_U8("graphics/pokemon/unown/front_j.4bpp.lz");
const u8 gMonBackPic_UnownJ[] = INCBIN_U8("graphics/pokemon/unown/back_j.4bpp.lz");
const u8 gMonIcon_UnownJ[] = INCBIN_U8("graphics/pokemon/unown/icon_j.4bpp");
const u8 gMonFrontPic_UnownK[] = INCBIN_U8("graphics/pokemon/unown/front_k.4bpp.lz");
const u8 gMonBackPic_UnownK[] = INCBIN_U8("graphics/pokemon/unown/back_k.4bpp.lz");
const u8 gMonIcon_UnownK[] = INCBIN_U8("graphics/pokemon/unown/icon_k.4bpp");
const u8 gMonFrontPic_UnownL[] = INCBIN_U8("graphics/pokemon/unown/front_l.4bpp.lz");
const u8 gMonBackPic_UnownL[] = INCBIN_U8("graphics/pokemon/unown/back_l.4bpp.lz");
const u8 gMonIcon_UnownL[] = INCBIN_U8("graphics/pokemon/unown/icon_l.4bpp");
const u8 gMonFrontPic_UnownM[] = INCBIN_U8("graphics/pokemon/unown/front_m.4bpp.lz");
const u8 gMonBackPic_UnownM[] = INCBIN_U8("graphics/pokemon/unown/back_m.4bpp.lz");
const u8 gMonIcon_UnownM[] = INCBIN_U8("graphics/pokemon/unown/icon_m.4bpp");
const u8 gMonFrontPic_UnownN[] = INCBIN_U8("graphics/pokemon/unown/front_n.4bpp.lz");
const u8 gMonBackPic_UnownN[] = INCBIN_U8("graphics/pokemon/unown/back_n.4bpp.lz");
const u8 gMonIcon_UnownN[] = INCBIN_U8("graphics/pokemon/unown/icon_n.4bpp");
const u8 gMonFrontPic_UnownO[] = INCBIN_U8("graphics/pokemon/unown/front_o.4bpp.lz");
const u8 gMonBackPic_UnownO[] = INCBIN_U8("graphics/pokemon/unown/back_o.4bpp.lz");
const u8 gMonIcon_UnownO[] = INCBIN_U8("graphics/pokemon/unown/icon_o.4bpp");
const u8 gMonFrontPic_UnownP[] = INCBIN_U8("graphics/pokemon/unown/front_p.4bpp.lz");
const u8 gMonBackPic_UnownP[] = INCBIN_U8("graphics/pokemon/unown/back_p.4bpp.lz");
const u8 gMonIcon_UnownP[] = INCBIN_U8("graphics/pokemon/unown/icon_p.4bpp");
const u8 gMonFrontPic_UnownQ[] = INCBIN_U8("graphics/pokemon/unown/front_q.4bpp.lz");
const u8 gMonBackPic_UnownQ[] = INCBIN_U8("graphics/pokemon/unown/back_q.4bpp.lz");
const u8 gMonIcon_UnownQ[] = INCBIN_U8("graphics/pokemon/unown/icon_q.4bpp");
const u8 gMonFrontPic_UnownR[] = INCBIN_U8("graphics/pokemon/unown/front_r.4bpp.lz");
const u8 gMonBackPic_UnownR[] = INCBIN_U8("graphics/pokemon/unown/back_r.4bpp.lz");
const u8 gMonIcon_UnownR[] = INCBIN_U8("graphics/pokemon/unown/icon_r.4bpp");
const u8 gMonFrontPic_UnownS[] = INCBIN_U8("graphics/pokemon/unown/front_s.4bpp.lz");
const u8 gMonBackPic_UnownS[] = INCBIN_U8("graphics/pokemon/unown/back_s.4bpp.lz");
const u8 gMonIcon_UnownS[] = INCBIN_U8("graphics/pokemon/unown/icon_s.4bpp");
const u8 gMonFrontPic_UnownT[] = INCBIN_U8("graphics/pokemon/unown/front_t.4bpp.lz");
const u8 gMonBackPic_UnownT[] = INCBIN_U8("graphics/pokemon/unown/back_t.4bpp.lz");
const u8 gMonIcon_UnownT[] = INCBIN_U8("graphics/pokemon/unown/icon_t.4bpp");
const u8 gMonFrontPic_UnownU[] = INCBIN_U8("graphics/pokemon/unown/front_u.4bpp.lz");
const u8 gMonBackPic_UnownU[] = INCBIN_U8("graphics/pokemon/unown/back_u.4bpp.lz");
const u8 gMonIcon_UnownU[] = INCBIN_U8("graphics/pokemon/unown/icon_u.4bpp");
const u8 gMonFrontPic_UnownV[] = INCBIN_U8("graphics/pokemon/unown/front_v.4bpp.lz");
const u8 gMonBackPic_UnownV[] = INCBIN_U8("graphics/pokemon/unown/back_v.4bpp.lz");
const u8 gMonIcon_UnownV[] = INCBIN_U8("graphics/pokemon/unown/icon_v.4bpp");
const u8 gMonFrontPic_UnownW[] = INCBIN_U8("graphics/pokemon/unown/front_w.4bpp.lz");
const u8 gMonBackPic_UnownW[] = INCBIN_U8("graphics/pokemon/unown/back_w.4bpp.lz");
const u8 gMonIcon_UnownW[] = INCBIN_U8("graphics/pokemon/unown/icon_w.4bpp");
const u8 gMonFrontPic_UnownX[] = INCBIN_U8("graphics/pokemon/unown/front_x.4bpp.lz");
const u8 gMonBackPic_UnownX[] = INCBIN_U8("graphics/pokemon/unown/back_x.4bpp.lz");
const u8 gMonIcon_UnownX[] = INCBIN_U8("graphics/pokemon/unown/icon_x.4bpp");
const u8 gMonFrontPic_UnownY[] = INCBIN_U8("graphics/pokemon/unown/front_y.4bpp.lz");
const u8 gMonBackPic_UnownY[] = INCBIN_U8("graphics/pokemon/unown/back_y.4bpp.lz");
const u8 gMonIcon_UnownY[] = INCBIN_U8("graphics/pokemon/unown/icon_y.4bpp");
const u8 gMonFrontPic_UnownZ[] = INCBIN_U8("graphics/pokemon/unown/front_z.4bpp.lz");
const u8 gMonBackPic_UnownZ[] = INCBIN_U8("graphics/pokemon/unown/back_z.4bpp.lz");
const u8 gMonIcon_UnownZ[] = INCBIN_U8("graphics/pokemon/unown/icon_z.4bpp");