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
|
//
// Created by Scott Norton on 6/27/17.
//
#ifndef POKERUBY_TMHM_LEARNSETS_H
#define POKERUBY_TMHM_LEARNSETS_H
// TO-DO: Rewrite this declaration to allow assignment of TM/HM learns by name.
// These are 58-bit numbers aligned to 64 bits. The least significant bit represents TM01,
// while the most significant bit represents HM08.
const u32 gTMHMLearnsets[][2] = {
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (??????????)
{0x84350720, 0x00e41e08}, // 0b0011100100000111100000100010000100001101010000011100100000 (Bulbasaur)
{0x84350720, 0x00e41e08}, // 0b0011100100000111100000100010000100001101010000011100100000 (Ivysaur)
{0x86354730, 0x00e41e08}, // 0b0011100100000111100000100010000110001101010100011100110000 (Venusaur)
{0xcc510623, 0x00a61ea4}, // 0b0010100110000111101010010011001100010100010000011000100011 (Charmander)
{0xcc510623, 0x00a61ea4}, // 0b0010100110000111101010010011001100010100010000011000100011 (Charmeleon)
{0xce514633, 0x00ae5ea4}, // 0b0010101110010111101010010011001110010100010100011000110011 (Charizard)
{0xcc533265, 0x03b01e00}, // 0b1110110000000111100000000011001100010100110011001001100101 (Squirtle)
{0xcc533265, 0x03b01e00}, // 0b1110110000000111100000000011001100010100110011001001100101 (Wartortle)
{0xce537275, 0x03b01e00}, // 0b1110110000000111100000000011001110010100110111001001110101 (Blastoise)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Caterpie)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Metapod)
{0xb43f4620, 0x0040be80}, // 0b0001000000101111101000000010110100001111110100011000100000 (Butterfree)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Weedle)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Kakuna)
{0xc4354620, 0x00843e88}, // 0b0010000100001111101000100011000100001101010100011000100000 (Beedrill)
{0x84130620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110000011000100000 (Pidgey)
{0x84130620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110000011000100000 (Pidgeotto)
{0x84134620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110100011000100000 (Pidgeot)
{0xadd33e20, 0x00843e02}, // 0b0010000100001111100000001010101101110100110011111000100000 (Rattata)
{0xadd37e30, 0x00a43e02}, // 0b0010100100001111100000001010101101110100110111111000110000 (Raticate)
{0x84130620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110000011000100000 (Spearow)
{0x84134620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110100011000100000 (Fearow)
{0x8e570620, 0x00213f08}, // 0b0000100001001111110000100010001110010101110000011000100000 (Ekans)
{0x8e574620, 0x00213f08}, // 0b0000100001001111110000100010001110010101110100011000100000 (Arbok)
{0xcdd38221, 0x00e01e02}, // 0b0011100000000111100000001011001101110100111000001000100001 (Pikachu)
{0xcdd3c221, 0x00e03e02}, // 0b0011100000001111100000001011001101110100111100001000100001 (Raichu)
{0xce510621, 0x00a43ed0}, // 0b0010100100001111101101000011001110010100010000011000100001 (Sandshrew)
{0xce514621, 0x00a43ed0}, // 0b0010100100001111101101000011001110010100010100011000100001 (Sandslash)
{0x8dd33624, 0x00a43e8a}, // 0b0010100100001111101000101010001101110100110011011000100100 (Nidoran♀)
{0x8dd33624, 0x00a43e8a}, // 0b0010100100001111101000101010001101110100110011011000100100 (Nidorina)
{0xefd37e35, 0x00b43ffe}, // 0b0010110100001111111111111011101111110100110111111000110101 (Nidoqueen)
{0x8dd33624, 0x00a43e0a}, // 0b0010100100001111100000101010001101110100110011011000100100 (Nidoran♂)
{0x8dd33624, 0x00a43e0a}, // 0b0010100100001111100000101010001101110100110011011000100100 (Nidorino)
{0xefd37e35, 0x00b43f7e}, // 0b0010110100001111110111111011101111110100110111111000110101 (Nidoking)
{0xfdfbb62d, 0x00611e27}, // 0b0001100001000111100010011111111101111110111011011000101101 (Clefairy)
{0xfdfbf62d, 0x00611e27}, // 0b0001100001000111100010011111111101111110111111011000101101 (Clefable)
{0x8c590630, 0x00021e24}, // 0b0000000010000111100010010010001100010110010000011000110000 (Vulpix)
{0x8c594630, 0x00021e24}, // 0b0000000010000111100010010010001100010110010100011000110000 (Ninetales)
{0xfdbbb625, 0x00611e27}, // 0b0001100001000111100010011111111101101110111011011000100101 (Jigglypuff)
{0xfdbbf625, 0x00611e27}, // 0b0001100001000111100010011111111101101110111111011000100101 (Wigglytuff)
{0xa4170e20, 0x00017f88}, // 0b0000000001011111111000100010100100000101110000111000100000 (Zubat)
{0xa4174e20, 0x00017f88}, // 0b0000000001011111111000100010100100000101110100111000100000 (Golbat)
{0x84350720, 0x00441e08}, // 0b0001000100000111100000100010000100001101010000011100100000 (Oddish)
{0x84350720, 0x00441e08}, // 0b0001000100000111100000100010000100001101010000011100100000 (Gloom)
{0x84354720, 0x00441e08}, // 0b0001000100000111100000100010000100001101010100011100100000 (Vileplume)
{0x8c350720, 0x00c43e88}, // 0b0011000100001111101000100010001100001101010000011100100000 (Paras)
{0x8c354720, 0x00c43e88}, // 0b0011000100001111101000100010001100001101010100011100100000 (Parasect)
{0x94350620, 0x0040be08}, // 0b0001000000101111100000100010010100001101010000011000100000 (Venonat)
{0x94354620, 0x0040be88}, // 0b0001000000101111101000100010010100001101010100011000100000 (Venomoth)
{0x8e110620, 0x00843ec8}, // 0b0010000100001111101100100010001110000100010000011000100000 (Diglett)
{0x8e114620, 0x00843ec8}, // 0b0010000100001111101100100010001110000100010100011000100000 (Dugtrio)
{0xadd30e24, 0x00453f82}, // 0b0001000101001111111000001010101101110100110000111000100100 (Meowth)
{0xadd34e34, 0x00453f82}, // 0b0001000101001111111000001010101101110100110100111000110100 (Persian)
{0xcc53326d, 0x03f01e80}, // 0b1111110000000111101000000011001100010100110011001001101101 (Psyduck)
{0xcc53726d, 0x03f01e80}, // 0b1111110000000111101000000011001100010100110111001001101101 (Golduck)
{0xcfd30ea1, 0x00a23ec0}, // 0b0010100010001111101100000011001111110100110000111010100001 (Mankey)
{0xcfd34ea1, 0x00a23ec0}, // 0b0010100010001111101100000011001111110100110100111010100001 (Primeape)
{0x8c510630, 0x00a23ea4}, // 0b0010100010001111101010010010001100010100010000011000110000 (Growlithe)
{0x8c514630, 0x00a23ea4}, // 0b0010100010001111101010010010001100010100010100011000110000 (Arcanine)
{0x9c133264, 0x03103e00}, // 0b1100010000001111100000000010011100000100110011001001100100 (Poliwag)
{0xde133265, 0x03b03e00}, // 0b1110110000001111100000000011011110000100110011001001100101 (Poliwhirl)
{0xde1372e5, 0x03b03e40}, // 0b1110110000001111100100000011011110000100110111001011100101 (Poliwrath)
{0xb45b8e29, 0x0041bf03}, // 0b0001000001101111110000001110110100010110111000111000101001 (Abra)
{0xb45b8e29, 0x0041bf03}, // 0b0001000001101111110000001110110100010110111000111000101001 (Kadabra)
{0xb45bce29, 0x0041bf03}, // 0b0001000001101111110000001110110100010110111100111000101001 (Alakazam)
{0xce1306a1, 0x00a03e64}, // 0b0010100000001111100110010011001110000100110000011010100001 (Machop)
{0xce1306a1, 0x00a03e64}, // 0b0010100000001111100110010011001110000100110000011010100001 (Machoke)
{0xce1346a1, 0x00a03e64}, // 0b0010100000001111100110010011001110000100110100011010100001 (Machamp)
{0x84350720, 0x00443e08}, // 0b0001000100001111100000100010000100001101010000011100100000 (Bellsprout)
{0x84350720, 0x00443e08}, // 0b0001000100001111100000100010000100001101010000011100100000 (Weepinbell)
{0x84354720, 0x00443e08}, // 0b0001000100001111100000100010000100001101010100011100100000 (Victreebel)
{0x84173264, 0x03143e08}, // 0b1100010100001111100000100010000100000101110011001001100100 (Tentacool)
{0x84177264, 0x03143e08}, // 0b1100010100001111100000100010000100000101110111001001100100 (Tentacruel)
{0xce110621, 0x00a01e74}, // 0b0010100000000111100111010011001110000100010000011000100001 (Geodude)
{0xce110621, 0x00a01e74}, // 0b0010100000000111100111010011001110000100010000011000100001 (Graveler)
{0xce114631, 0x00a01e74}, // 0b0010100000000111100111010011001110000100010100011000110001 (Golem)
{0x84710620, 0x00221e24}, // 0b0000100010000111100010010010000100011100010000011000100000 (Ponyta)
{0x84714620, 0x00221e24}, // 0b0000100010000111100010010010000100011100010100011000100000 (Rapidash)
{0xbe5b366c, 0x02709e24}, // 0b1001110000100111100010010010111110010110110011011001101100 (Slowpoke)
{0xfe5b766d, 0x02f09e24}, // 0b1011110000100111100010010011111110010110110111011001101101 (Slowbro)
{0x85930620, 0x00400e03}, // 0b0001000000000011100000001110000101100100110000011000100000 (Magnemite)
{0x85934620, 0x00400e03}, // 0b0001000000000011100000001110000101100100110100011000100000 (Magneton)
{0x84510620, 0x000c7e80}, // 0b0000001100011111101000000010000100010100010000011000100000 (Farfetch'd)
{0x84110620, 0x00087e80}, // 0b0000001000011111101000000010000100000100010000011000100000 (Doduo)
{0x84114e20, 0x00087f80}, // 0b0000001000011111111000000010000100000100010100111000100000 (Dodrio)
{0x841b3264, 0x03103e00}, // 0b1100010000001111100000000010000100000110110011001001100100 (Seel)
{0x841b7264, 0x03103e00}, // 0b1100010000001111100000000010000100000110110111001001100100 (Dewgong)
{0x8d970e20, 0x00003f6e}, // 0b0000000000001111110110111010001101100101110000111000100000 (Grimer)
{0xcd974e21, 0x00a03f6e}, // 0b0010100000001111110110111011001101100101110100111000100001 (Muk)
{0x84133264, 0x02101e00}, // 0b1000010000000111100000000010000100000100110011001001100100 (Shellder)
{0x84137264, 0x02101f00}, // 0b1000010000000111110000000010000100000100110111001001100100 (Cloyster)
{0xb4970e20, 0x0001bf08}, // 0b0000000001101111110000100010110100100101110000111000100000 (Gastly)
{0xb4970e20, 0x0001bf08}, // 0b0000000001101111110000100010110100100101110000111000100000 (Haunter)
{0xf5974e21, 0x00a1bf08}, // 0b0010100001101111110000100011110101100101110100111000100001 (Gengar)
{0x8e510e30, 0x00a01f50}, // 0b0010100000000111110101000010001110010100010000111000110000 (Onix)
{0xf41b8e29, 0x0041bf01}, // 0b0001000001101111110000000111110100000110111000111000101001 (Drowzee)
{0xf41bce29, 0x0041bf01}, // 0b0001000001101111110000000111110100000110111100111000101001 (Hypno)
{0x8c133264, 0x02b43e40}, // 0b1010110100001111100100000010001100000100110011001001100100 (Krabby)
{0x8c137264, 0x02b43e40}, // 0b1010110100001111100100000010001100000100110111001001100100 (Kingler)
{0x85938a20, 0x00402f02}, // 0b0001000000001011110000001010000101100100111000101000100000 (Voltorb)
{0x8593ca20, 0x00402f02}, // 0b0001000000001011110000001010000101100100111100101000100000 (Electrode)
{0x94358720, 0x0060be09}, // 0b0001100000101111100000100110010100001101011000011100100000 (Exeggcute)
{0x9435c720, 0x0060be09}, // 0b0001100000101111100000100110010100001101011100011100100000 (Exeggutor)
{0xce513621, 0x00a03ef4}, // 0b0010100000001111101111010011001110010100010011011000100001 (Cubone)
{0xce517621, 0x00a03ef4}, // 0b0010100000001111101111010011001110010100010111011000100001 (Marowak)
{0xc61306a1, 0x00a03e40}, // 0b0010100000001111100100000011000110000100110000011010100001 (Hitmonlee)
{0xc61306a1, 0x00a03e40}, // 0b0010100000001111100100000011000110000100110000011010100001 (Hitmonchan)
{0xeff37625, 0x00b43e76}, // 0b0010110100001111100111011011101111111100110111011000100101 (Lickitung)
{0xa5930e20, 0x00403f2e}, // 0b0001000000001111110010111010100101100100110000111000100000 (Koffing)
{0xa5934e20, 0x00403f2e}, // 0b0001000000001111110010111010100101100100110100111000100000 (Weezing)
{0x8fd33630, 0x00a03e76}, // 0b0010100000001111100111011010001111110100110011011000110000 (Rhyhorn)
{0xcfd37631, 0x00b43e76}, // 0b0010110100001111100111011011001111110100110111011000110001 (Rhydon)
{0xf7fbf66d, 0x00e19e76}, // 0b0011100001100111100111011011110111111110111111011001101101 (Chansey)
{0x84354720, 0x00c43e08}, // 0b0011000100001111100000100010000100001101010100011100100000 (Tangela)
{0xeff37675, 0x00b43ef6}, // 0b0010110100001111101111011011101111111100110111011001110101 (Kangaskhan)
{0x84133264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110011001001100100 (Horsea)
{0x84137264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110111001001100100 (Seadra)
{0x84133264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110011001001100100 (Goldeen)
{0x84137264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110111001001100100 (Seaking)
{0x9593b264, 0x03500e01}, // 0b1101010000000011100000000110010101100100111011001001100100 (Staryu)
{0x9593f264, 0x03508e01}, // 0b1101010000100011100000000110010101100100111111001001100100 (Starmie)
{0xf5bbce29, 0x0041bf03}, // 0b0001000001101111110000001111110101101110111100111000101001 (Mr. mime)
{0x84134620, 0x00847e80}, // 0b0010000100011111101000000010000100000100110100011000100000 (Scyther)
{0xf413fa6d, 0x0040bf01}, // 0b0001000000101111110000000111110100000100111111101001101101 (Jynx)
{0xd5d3c221, 0x00e03e02}, // 0b0011100000001111100000001011010101110100111100001000100001 (Electabuzz)
{0xd4514621, 0x00a03e24}, // 0b0010100000001111100010010011010100010100010100011000100001 (Magmar)
{0xce1346a1, 0x00a43e40}, // 0b0010100100001111100100000011001110000100110100011010100001 (Pinsir)
{0x87f37624, 0x00b01e76}, // 0b0010110000000111100111011010000111111100110111011000100100 (Tauros)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Magikarp)
{0x87937a74, 0x03b01f34}, // 0b1110110000000111110011010010000111100100110111101001110100 (Gyarados)
{0x95db7274, 0x03b01e02}, // 0b1110110000000111100000001010010101110110110111001001110100 (Lapras)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Ditto)
{0xac530620, 0x00001e00}, // 0b0000000000000111100000000010101100010100110000011000100000 (Eevee)
{0xac537674, 0x03101e00}, // 0b1100010000000111100000000010101100010100110111011001110100 (Vaporeon)
{0xadd34630, 0x00401e02}, // 0b0001000000000111100000001010101101110100110100011000110000 (Jolteon)
{0xac534630, 0x00021e24}, // 0b0000000010000111100010010010101100010100110100011000110000 (Flareon)
{0xb5f37620, 0x00402e82}, // 0b0001000000001011101000001010110101111100110111011000100000 (Porygon)
{0x84133264, 0x03903e50}, // 0b1110010000001111100101000010000100000100110011001001100100 (Omanyte)
{0x84137264, 0x03903e50}, // 0b1110010000001111100101000010000100000100110111001001100100 (Omastar)
{0x8c173264, 0x01903ed0}, // 0b0110010000001111101101000010001100000101110011001001100100 (Kabuto)
{0xcc177264, 0x03943ed0}, // 0b1110010100001111101101000011001100000101110111001001100100 (Kabutops)
{0x86534e32, 0x00a87ff4}, // 0b0010101000011111111111010010000110010100110100111000110010 (Aerodactyl)
{0xf7b37625, 0x00301e76}, // 0b0000110000000111100111011011110111101100110111011000100101 (Snorlax)
{0x84137674, 0x00884e91}, // 0b0010001000010011101001000110000100000100110111011001110100 (Articuno)
{0x8593c630, 0x00c84e92}, // 0b0011001000010011101001001010000101100100111100011000110000 (Zapdos)
{0x841b4630, 0x008a4eb4}, // 0b0010001010010011101011010010000100000110110100011000110000 (Moltres)
{0x85db7664, 0x01101e26}, // 0b0100010000000111100010011010000101110110110111011001100100 (Dratini)
{0x85db7664, 0x01101e26}, // 0b0100010000000111100010011010000101110110110111011001100100 (Dragonair)
{0xc7db7677, 0x03bc5ef6}, // 0b1110111100010111101111011011000111110110110111011001110111 (Dragonite)
{0xf7fbfeed, 0x00e18ff7}, // 0b0011100001100011111111011111110111111110111111111011101101 (Mewtwo)
{0xffffffff, 0x03ffffff}, // 0b1111111111111111111111111111111111111111111111111111111111 (Mew)
{0x847d8720, 0x00441e01}, // 0b0001000100000111100000000110000100011111011000011100100000 (Chikorita)
{0x847d8720, 0x00e41e01}, // 0b0011100100000111100000000110000100011111011000011100100000 (Bayleef)
{0x867dc720, 0x00e41e01}, // 0b0011100100000111100000000110000110011111011100011100100000 (Meganium)
{0x8c110620, 0x00061ea4}, // 0b0000000110000111101010010010001100000100010000011000100000 (Cyndaquil)
{0xcc110631, 0x00a61ea4}, // 0b0010100110000111101010010011001100000100010000011000110001 (Quilava)
{0xce114631, 0x00a61ea4}, // 0b0010100110000111101010010011001110000100010100011000110001 (Typhlosion)
{0xcc533265, 0x03141e80}, // 0b1100010100000111101000000011001100010100110011001001100101 (Totodile)
{0xcc533275, 0x03b41e80}, // 0b1110110100000111101000000011001100010100110011001001110101 (Croconaw)
{0xce537277, 0x03b41e80}, // 0b1110110100000111101000000011001110010100110111001001110111 (Feraligatr)
{0xecf31625, 0x00143e06}, // 0b0000010100001111100000011011101100111100110001011000100101 (Sentret)
{0xedf37625, 0x00b43e06}, // 0b0010110100001111100000011011101101111100110111011000100101 (Furret)
{0xb4130620, 0x00487e81}, // 0b0001001000011111101000000110110100000100110000011000100000 (Hoothoot)
{0xb4134620, 0x00487e81}, // 0b0001001000011111101000000110110100000100110100011000100000 (Noctowl)
{0xcc3d8621, 0x00403e81}, // 0b0001000000001111101000000111001100001111011000011000100001 (Ledyba)
{0xcc3dc621, 0x00403e81}, // 0b0001000000001111101000000111001100001111011100011000100001 (Ledian)
{0x9c350620, 0x00403e08}, // 0b0001000000001111100000100010011100001101010000011000100000 (Spinarak)
{0x9c354620, 0x00403e08}, // 0b0001000000001111100000100010011100001101010100011000100000 (Ariados)
{0xa4174e20, 0x00097f88}, // 0b0000001001011111111000100010100100000101110100111000100000 (Crobat)
{0x85933264, 0x03501e02}, // 0b1101010000000111100000001010000101100100110011001001100100 (Chinchou)
{0x85937264, 0x03501e02}, // 0b1101010000000111100000001010000101100100110111001001100100 (Lanturn)
{0x85d38220, 0x00401e02}, // 0b0001000000000111100000001010000101110100111000001000100000 (Pichu)
{0xbc7b8624, 0x00401e27}, // 0b0001000000000111100010011110111100011110111000011000100100 (Cleffa)
{0xbc3b8624, 0x00401e27}, // 0b0001000000000111100010011110111100001110111000011000100100 (Igglybuff)
{0xb43b8624, 0x00c01e27}, // 0b0011000000000111100010011110110100001110111000011000100100 (Togepi)
{0xf43bc625, 0x00c85ea7}, // 0b0011001000010111101010011111110100001110111100011000100101 (Togetic)
{0xb4378628, 0x0040fe81}, // 0b0001000000111111101000000110110100001101111000011000101000 (Natu)
{0xb437c628, 0x0048fe81}, // 0b0001001000111111101000000110110100001101111100011000101000 (Xatu)
{0x85d38220, 0x00401e02}, // 0b0001000000000111100000001010000101110100111000001000100000 (Mareep)
{0xc5d38221, 0x00e01e02}, // 0b0011100000000111100000001011000101110100111000001000100001 (Flaaffy)
{0xc5d3c221, 0x00e01e02}, // 0b0011100000000111100000001011000101110100111100001000100001 (Ampharos)
{0x843d4720, 0x00441e08}, // 0b0001000100000111100000100010000100001111010100011100100000 (Bellossom)
{0xcc533265, 0x03b01e00}, // 0b1110110000000111100000000011001100010100110011001001100101 (Marill)
{0xcc537265, 0x03b01e00}, // 0b1110110000000111100000000011001100010100110111001001100101 (Azumarill)
{0xce110e29, 0x00a03e50}, // 0b0010100000001111100101000011001110000100010000111000101001 (Sudowoodo)
{0xde137265, 0x03b03e00}, // 0b1110110000001111100000000011011110000100110111001001100101 (Politoed)
{0x84350720, 0x00401e80}, // 0b0001000000000111101000000010000100001101010000011100100000 (Hoppip)
{0x84350720, 0x00401e80}, // 0b0001000000000111101000000010000100001101010000011100100000 (Skiploom)
{0x84354720, 0x00401e80}, // 0b0001000000000111101000000010000100001101010100011100100000 (Jumpluff)
{0xedf30e25, 0x00a53e82}, // 0b0010100101001111101000001011101101111100110000111000100101 (Aipom)
{0x843d8720, 0x00441e08}, // 0b0001000100000111100000100010000100001111011000011100100000 (Sunkern)
{0x843dc720, 0x00441e08}, // 0b0001000100000111100000100010000100001111011100011100100000 (Sunflora)
{0xb4350620, 0x00407e80}, // 0b0001000000011111101000000010110100001101010000011000100000 (Yanma)
{0x8e533264, 0x03d01e18}, // 0b1111010000000111100001100010001110010100110011001001100100 (Wooper)
{0xce537265, 0x03f01e58}, // 0b1111110000000111100101100011001110010100110111001001100101 (Quagsire)
{0xbc53c628, 0x00449e01}, // 0b0001000100100111100000000110111100010100111100011000101000 (Espeon)
{0xbc534e20, 0x00451f00}, // 0b0001000101000111110000000010111100010100110100111000100000 (Umbreon)
{0xa4130e28, 0x00097f80}, // 0b0000001001011111111000000010100100000100110000111000101000 (Murkrow)
{0xfe5b766d, 0x02f09e24}, // 0b1011110000100111100010010011111110010110110111011001101101 (Slowking)
{0xb5930e28, 0x0041bf82}, // 0b0001000001101111111000001010110101100100110000111000101000 (Misdreavus)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Unown)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Wobbuffet)
{0xb7d38628, 0x00e0be03}, // 0b0011100000101111100000001110110111110100111000011000101000 (Girafarig)
{0x8e358620, 0x00a01e11}, // 0b0010100000000111100001000110001110001101011000011000100000 (Pineco)
{0x8e35c620, 0x00a01e11}, // 0b0010100000000111100001000110001110001101011100011000100000 (Forretress)
{0xaff3362c, 0x00a03e66}, // 0b0010100000001111100110011010101111111100110011011000101100 (Dunsparce)
{0x8e530620, 0x00a47ed8}, // 0b0010100100011111101101100010001110010100110000011000100000 (Gligar)
{0x8e514e30, 0x00a41f50}, // 0b0010100100000111110101000010001110010100010100111000110000 (Steelix)
{0xefb30eb5, 0x00a23f2e}, // 0b0010100010001111110010111011101111101100110000111010110101 (Snubbull)
{0xeff34eb5, 0x00a23f6e}, // 0b0010100010001111110110111011101111111100110100111010110101 (Granbull)
{0xa4133264, 0x03101e0a}, // 0b1100010000000111100000101010100100000100110011001001100100 (Qwilfish)
{0x84134620, 0x00a47e90}, // 0b0010100100011111101001000010000100000100110100011000100000 (Scizor)
{0x8e190620, 0x00e01e58}, // 0b0011100000000111100101100010001110000110010000011000100000 (Shuckle)
{0xce1346a1, 0x00a43e40}, // 0b0010100100001111100100000011001110000100110100011010100001 (Heracross)
{0xec533e69, 0x00b53f80}, // 0b0010110101001111111000000011101100010100110011111001101001 (Sneasel)
{0xce130eb1, 0x00a43f80}, // 0b0010100100001111111000000011001110000100110000111010110001 (Teddiursa)
{0xce134eb1, 0x00a43fc0}, // 0b0010100100001111111100000011001110000100110100111010110001 (Ursaring)
{0x84118620, 0x00821e25}, // 0b0010000010000111100010010110000100000100011000011000100000 (Slugma)
{0x8611c620, 0x00a21e75}, // 0b0010100010000111100111010110000110000100011100011000100000 (Magcargo)
{0x8e13b270, 0x00a01e51}, // 0b0010100000000111100101000110001110000100111011001001110000 (Swinub)
{0x8e13f270, 0x00a01e51}, // 0b0010100000000111100101000110001110000100111111001001110000 (Piloswine)
{0xbe1bb66c, 0x00b01e51}, // 0b0010110000000111100101000110111110000110111011011001101100 (Corsola)
{0x94137624, 0x03103e24}, // 0b1100010000001111100010010010010100000100110111011000100100 (Remoraid)
{0x94137724, 0x03103e2c}, // 0b1100010000001111100010110010010100000100110111011100100100 (Octillery)
{0x84133265, 0x00083e80}, // 0b0000001000001111101000000010000100000100110011001001100101 (Delibird)
{0x86133264, 0x03101e80}, // 0b1100010000000111101000000010000110000100110011001001100100 (Mantine)
{0x84110e30, 0x008c7f90}, // 0b0010001100011111111001000010000100000100010000111000110000 (Skarmory)
{0xa4710e30, 0x00833f2c}, // 0b0010000011001111110010110010100100011100010000111000110000 (Houndour)
{0xa4714e30, 0x00a33f2c}, // 0b0010100011001111110010110010100100011100010100111000110000 (Houndoom)
{0x84137264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110111001001100100 (Kingdra)
{0x86510630, 0x00a01e50}, // 0b0010100000000111100101000010000110010100010000011000110000 (Phanpy)
{0x86514630, 0x00a01e50}, // 0b0010100000000111100101000010000110010100010100011000110000 (Donphan)
{0xb5f37620, 0x00402e82}, // 0b0001000000001011101000001010110101111100110111011000100000 (Porygon2)
{0xb7f38638, 0x0040be03}, // 0b0001000000101111100000001110110111111100111000011000111000 (Stantler)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Smeargle)
{0xc61306a0, 0x00a03e00}, // 0b0010100000001111100000000011000110000100110000011010100000 (Tyrogue)
{0xce1306a0, 0x00a03e10}, // 0b0010100000001111100001000011001110000100110000011010100000 (Hitmontop)
{0xb413b26c, 0x0040be01}, // 0b0001000000101111100000000110110100000100111011001001101100 (Smoochum)
{0xd5938221, 0x00c03e02}, // 0b0011000000001111100000001011010101100100111000001000100001 (Elekid)
{0xd4510621, 0x00803e24}, // 0b0010000000001111100010010011010100010100010000011000100001 (Magby)
{0xe7f37625, 0x00b01e52}, // 0b0010110000000111100101001011100111111100110111011000100101 (Miltank)
{0xf7fbf66d, 0x00e19e76}, // 0b0011100001100111100111011011110111111110111111011001101101 (Blissey)
{0x8dd34638, 0x00e40e13}, // 0b0011100100000011100001001110001101110100110100011000111000 (Raikou)
{0x8c734638, 0x00e40e35}, // 0b0011100100000011100011010110001100011100110100011000111000 (Entei)
{0x8c53767c, 0x03940e11}, // 0b1110010100000011100001000110001100010100110111011001111100 (Suicune)
{0xce134e20, 0x00801f10}, // 0b0010000000000111110001000011001110000100110100111000100000 (Larvitar)
{0xce134e20, 0x00801f10}, // 0b0010000000000111110001000011001110000100110100111000100000 (Pupitar)
{0xcfd37e37, 0x00b41ff6}, // 0b0010110100000111111111011011001111110100110111111000110111 (Tyranitar)
{0xb7dff67c, 0x03b8ce93}, // 0b1110111000110011101001001110110111110111111111011001111100 (Lugia)
{0xb7bfc638, 0x00ea4eb7}, // 0b0011101010010011101011011110110111101111111100011000111000 (Ho-Oh)
{0xb43fc62c, 0x00448e93}, // 0b0001000100100011101001001110110100001111111100011000101100 (Celebi)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (?)
{0xcc7d0721, 0x00e41ec0}, // 0b0011100100000111101100000011001100011111010000011100100001 (Treecko)
{0xcc7d0721, 0x00e41ec0}, // 0b0011100100000111101100000011001100011111010000011100100001 (Grovyle)
{0xce7d4733, 0x00e41ec0}, // 0b0011100100000111101100000011001110011111010100011100110011 (Sceptile)
{0x8c110620, 0x00a61ee4}, // 0b0010100110000111101110010010001100000100010000011000100000 (Torchic)
{0xcc1106a1, 0x00a61ee4}, // 0b0010100110000111101110010011001100000100010000011010100001 (Combusken)
{0xce1146b1, 0x00a61ee4}, // 0b0010100110000111101110010011001110000100010100011010110001 (Blaziken)
{0x8c533264, 0x03b01e40}, // 0b1110110000000111100100000010001100010100110011001001100100 (Mudkip)
{0x8e533264, 0x03b01e40}, // 0b1110110000000111100100000010001110010100110011001001100100 (Marshtomp)
{0xce537275, 0x03b01e40}, // 0b1110110000000111100100000011001110010100110111001001110101 (Swampert)
{0xac530e30, 0x00813f00}, // 0b0010000001001111110000000010101100010100110000111000110000 (Poochyena)
{0xac534e30, 0x00a13f00}, // 0b0010100001001111110000000010101100010100110100111000110000 (Mightyena)
{0xadd33624, 0x00943e02}, // 0b0010010100001111100000001010101101110100110011011000100100 (Zigzagoon)
{0xadd37634, 0x00b43e02}, // 0b0010110100001111100000001010101101110100110111011000110100 (Linoone)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Wurmple)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Silcoon)
{0xb43d4620, 0x00403e80}, // 0b0001000000001111101000000010110100001111010100011000100000 (Beautifly)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Cascoon)
{0xb435c620, 0x00403e88}, // 0b0001000000001111101000100010110100001101011100011000100000 (Dustox)
{0x84373764, 0x00503e00}, // 0b0001010000001111100000000010000100001101110011011101100100 (Lotad)
{0xc4373764, 0x03f03e00}, // 0b1111110000001111100000000011000100001101110011011101100100 (Lombre)
{0xc4377765, 0x03f03e00}, // 0b1111110000001111100000000011000100001101110111011101100101 (Ludicolo)
{0xac350720, 0x00c01e00}, // 0b0011000000000111100000000010101100001101010000011100100000 (Seedot)
{0xec354720, 0x00e43f40}, // 0b0011100100001111110100000011101100001101010100011100100000 (Nuzleaf)
{0xec354720, 0x00e43fc0}, // 0b0011100100001111111100000011101100001101010100011100100000 (Shiftry)
{0xac350620, 0x00440e90}, // 0b0001000100000011101001000010101100001101010000011000100000 (Nincada)
{0xac354620, 0x00443e90}, // 0b0001000100001111101001000010101100001101010100011000100000 (Ninjask)
{0xac354620, 0x00442e90}, // 0b0001000100001011101001000010101100001101010100011000100000 (Shedinja)
{0x84130620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110000011000100000 (Taillow)
{0x84134620, 0x00087e80}, // 0b0000001000011111101000000010000100000100110100011000100000 (Swellow)
{0x843d0720, 0x00411e08}, // 0b0001000001000111100000100010000100001111010000011100100000 (Shroomish)
{0xc47d47a1, 0x00e51e08}, // 0b0011100101000111100000100011000100011111010100011110100001 (Breloom)
{0xfc1b062d, 0x00e1be42}, // 0b0011100001101111100100001011111100000110110000011000101101 (Spinda)
{0x84133264, 0x00087e82}, // 0b0000001000011111101000001010000100000100110011001001100100 (Wingull)
{0x84137264, 0x00187e82}, // 0b0000011000011111101000001010000100000100110111001001100100 (Pelipper)
{0xa4373624, 0x00403e00}, // 0b0001000000001111100000000010100100001101110011011000100100 (Surskit)
{0xa4377624, 0x00403e80}, // 0b0001000000001111101000000010100100001101110111011000100100 (Masquerain)
{0x86133274, 0x03b01e40}, // 0b1110110000000111100100000010000110000100110011001001110100 (Wailmer)
{0x86137274, 0x03b01e40}, // 0b1110110000000111100100000010000110000100110111001001110100 (Wailord)
{0xadfb362c, 0x00401e02}, // 0b0001000000000111100000001010101101111110110011011000101100 (Skitty)
{0xadfb762c, 0x00e01e02}, // 0b0011100000000111100000001010101101111110110111011000101100 (Delcatty)
{0xedf33625, 0x00e5bee6}, // 0b0011100101101111101110011011101101111100110011011000100101 (Kecleon)
{0xbe339620, 0x00408e51}, // 0b0001000000100011100101000110111110001100111001011000100000 (Baltoy)
{0xbe33d620, 0x00e08e51}, // 0b0011100000100011100101000110111110001100111101011000100000 (Claydol)
{0x87910e20, 0x00a01f52}, // 0b0010100000000111110101001010000111100100010000111000100000 (Nosepass)
{0x84510620, 0x00a21e2c}, // 0b0010100010000111100010110010000100010100010000011000100000 (Torkoal)
{0xfc130e2d, 0x00c53fc2}, // 0b0011000101001111111100001011111100000100110000111000101101 (Sableye)
{0x86133264, 0x03101e50}, // 0b1100010000000111100101000010000110000100110011001001100100 (Barboach)
{0x86137264, 0x03b01e50}, // 0b1110110000000111100101000010000110000100110111001001100100 (Whiscash)
{0x841b3264, 0x03101e00}, // 0b1100010000000111100000000010000100000110110011001001100100 (Luvdisc)
{0xcc133a64, 0x01b41ec8}, // 0b0110110100000111101100100011001100000100110011101001100100 (Corphish)
{0xcc137a64, 0x03b41ec8}, // 0b1110110100000111101100100011001100000100110111101001100100 (Crawdaunt)
{0x84133264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110011001001100100 (Feebas)
{0x845b7264, 0x03101e00}, // 0b1100010000000111100000000010000100010110110111001001100100 (Milotic)
{0x84133a64, 0x03103f00}, // 0b1100010000001111110000000010000100000100110011101001100100 (Carvanha)
{0x86137a74, 0x03b03f40}, // 0b1110110000001111110100000010000110000100110111101001110100 (Sharpedo)
{0x8e354620, 0x00a01e50}, // 0b0010100000000111100101000010001110001101010100011000100000 (Trapinch)
{0x8e354620, 0x00a85e50}, // 0b0010101000010111100101000010001110001101010100011000100000 (Vibrava)
{0x8e754622, 0x00a85e74}, // 0b0010101000010111100111010010001110011101010100011000100010 (Flygon)
{0xce1306a1, 0x00b01e40}, // 0b0010110000000111100100000011001110000100110000011010100001 (Makuhita)
{0xce1346a1, 0x00b01e40}, // 0b0010110000000111100100000011001110000100110100011010100001 (Hariyama)
{0x85d30230, 0x00603e02}, // 0b0001100000001111100000001010000101110100110000001000110000 (Electrike)
{0x85d34230, 0x00603e02}, // 0b0001100000001111100000001010000101110100110100001000110000 (Manectric)
{0x8e110620, 0x00a21e74}, // 0b0010100010000111100111010010001110000100010000011000100000 (Numel)
{0x8e114630, 0x00a21e74}, // 0b0010100010000111100111010010001110000100010100011000110000 (Camerupt)
{0x86533264, 0x03b01e40}, // 0b1110110000000111100100000010000110010100110011001001100100 (Spheal)
{0x86533274, 0x03b01e40}, // 0b1110110000000111100100000010000110010100110011001001110100 (Sealeo)
{0x86537274, 0x03b01e40}, // 0b1110110000000111100100000010000110010100110111001001110100 (Walrein)
{0x84350721, 0x00441e10}, // 0b0001000100000111100001000010000100001101010000011100100001 (Cacnea)
{0x84354721, 0x00641e10}, // 0b0001100100000111100001000010000100001101010100011100100001 (Cacturne)
{0xa41bb264, 0x00401e00}, // 0b0001000000000111100000000010100100000110111011001001100100 (Snorunt)
{0xa61bfa64, 0x00401f00}, // 0b0001000000000111110000000010100110000110111111101001100100 (Glalie)
{0xb61bd228, 0x00408e51}, // 0b0001000000100011100101000110110110000110111101001000101000 (Lunatone)
{0xb639c628, 0x00428e75}, // 0b0001000010100011100111010110110110001110011100011000101000 (Solrock)
{0x84533264, 0x01101e00}, // 0b0100010000000111100000000010000100010100110011001001100100 (Azurill)
{0xb4538e28, 0x0041bf03}, // 0b0001000001101111110000001110110100010100111000111000101000 (Spoink)
{0xb453ce29, 0x0041bf03}, // 0b0001000001101111110000001110110100010100111100111000101001 (Grumpig)
{0x85d38220, 0x00401e02}, // 0b0001000000000111100000001010000101110100111000001000100000 (Plusle)
{0x85d38220, 0x00401e02}, // 0b0001000000000111100000001010000101110100111000001000100000 (Minun)
{0xc4335e21, 0x00a01f7c}, // 0b0010100000000111110111110011000100001100110101111000100001 (Mawile)
{0xf41386a9, 0x00e01e41}, // 0b0011100000000111100100000111110100000100111000011010101001 (Meditite)
{0xf413c6a9, 0x00e01e41}, // 0b0011100000000111100100000111110100000100111100011010101001 (Medicham)
{0x843b1620, 0x00087e80}, // 0b0000001000011111101000000010000100001110110001011000100000 (Swablu)
{0x867b5632, 0x00887ea4}, // 0b0010001000011111101010010010000110011110110101011000110010 (Altaria)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Wynaut)
{0xb4133e28, 0x0041bf00}, // 0b0001000001101111110000000010110100000100110011111000101000 (Duskull)
{0xb6137e29, 0x00e1bf40}, // 0b0011100001101111110100000010110110000100110111111000101001 (Dusclops)
{0xa4350720, 0x00441e08}, // 0b0001000100000111100000100010100100001101010000011100100000 (Roselia)
{0xe5b336a5, 0x00a41ea6}, // 0b0010100100000111101010011011100101101100110011011010100101 (Slakoth)
{0xe7b33eb5, 0x00a41ea6}, // 0b0010100100000111101010011011100111101100110011111010110101 (Vigoroth)
{0xe7b37eb5, 0x00a41ea6}, // 0b0010100100000111101010011011100111101100110111111010110101 (Slaking)
{0xa4371724, 0x00a11e0a}, // 0b0010100001000111100000101010100100001101110001011100100100 (Gulpin)
{0xa4375724, 0x00a11e0a}, // 0b0010100001000111100000101010100100001101110101011100100100 (Swalot)
{0x863d4730, 0x00ec5e80}, // 0b0011101100010111101000000010000110001111010100011100110000 (Tropius)
{0xa4333634, 0x00001e26}, // 0b0000000000000111100010011010100100001100110011011000110100 (Whismur)
{0xe6333e34, 0x00a21f26}, // 0b0010100010000111110010011011100110001100110011111000110100 (Loudred)
{0xe6337e34, 0x00a21f26}, // 0b0010100010000111110010011011100110001100110111111000110100 (Exploud)
{0x84133264, 0x03101e00}, // 0b1100010000000111100000000010000100000100110011001001100100 (Clamperl)
{0x84137264, 0x03111e40}, // 0b1100010001000111100100000010000100000100110111001001100100 (Huntail)
{0xb41b7264, 0x03101e00}, // 0b1100010000000111100000000010110100000110110111001001100100 (Gorebyss)
{0xa5d37e6c, 0x00e53fb6}, // 0b0011100101001111111011011010100101110100110111111001101100 (Absol)
{0xb5930e28, 0x0041bf02}, // 0b0001000001101111110000001010110101100100110000111000101000 (Shuppet)
{0xb5934e28, 0x0041bf02}, // 0b0001000001101111110000001010110101100100110100111000101000 (Banette)
{0x8e570e20, 0x00a13e0c}, // 0b0010100001001111100000110010001110010101110000111000100000 (Seviper)
{0xedf73e35, 0x00a03ea6}, // 0b0010100000001111101010011011101101111101110011111000110101 (Zangoose)
{0x861b726c, 0x03901e50}, // 0b1110010000000111100101000010000110000110110111001001101100 (Relicanth)
{0x8e530634, 0x00a41ed2}, // 0b0010100100000111101101001010001110010100110000011000110100 (Aron)
{0x8e530634, 0x00a41ed2}, // 0b0010100100000111101101001010001110010100110000011000110100 (Lairon)
{0xcff37e37, 0x00b41ef6}, // 0b0010110100000111101111011011001111111100110111111000110111 (Aggron)
{0xa5b33664, 0x00403e36}, // 0b0001000000001111100011011010100101101100110011011001100100 (Castform)
{0xe5b78625, 0x00403e82}, // 0b0001000000001111101000001011100101101101111000011000100101 (Volbeat)
{0xe5b78625, 0x00403e82}, // 0b0001000000001111101000001011100101101101111000011000100101 (Illumise)
{0x84350720, 0x00001e18}, // 0b0000000000000111100001100010000100001101010000011100100000 (Lileep)
{0x86354720, 0x00a01e58}, // 0b0010100000000111100101100010000110001101010100011100100000 (Cradily)
{0xcc110624, 0x00841ed0}, // 0b0010000100000111101101000011001100000100010000011000100100 (Anorith)
{0xce514624, 0x00a41ed0}, // 0b0010100100000111101101000011001110010100010100011000100100 (Armaldo)
{0xb49b8e28, 0x0041bf03}, // 0b0001000001101111110000001110110100100110111000111000101000 (Ralts)
{0xb49b8e28, 0x0041bf03}, // 0b0001000001101111110000001110110100100110111000111000101000 (Kirlia)
{0xb49bce28, 0x0041bf03}, // 0b0001000001101111110000001110110100100110111100111000101000 (Gardevoir)
{0xc4130632, 0x00a41ee4}, // 0b0010100100000111101110010011000100000100110000011000110010 (Bagon)
{0xc4130632, 0x00a41ee4}, // 0b0010100100000111101110010011000100000100110000011000110010 (Shelgon)
{0xc6534632, 0x00ac5ee4}, // 0b0010101100010111101110010011000110010100110100011000110010 (Salamence)
{0x00000000, 0x00000000}, // 0b0000000000000000000000000000000000000000000000000000000000 (Beldum)
{0xf613c620, 0x00e40ed9}, // 0b0011100100000011101101100111110110000100111100011000100000 (Metang)
{0xf613c620, 0x00e40ed9}, // 0b0011100100000011101101100111110110000100111100011000100000 (Metagross)
{0xcf994621, 0x00a00e52}, // 0b0010100000000011100101001011001111100110010100011000100001 (Regirock)
{0xc79b7261, 0x00a00e02}, // 0b0010100000000011100000001011000111100110110111001001100001 (Regice)
{0xc79b4621, 0x00a00ed2}, // 0b0010100000000011101101001011000111100110110100011000100001 (Registeel)
{0xc79b727c, 0x03b00e42}, // 0b1110110000000011100100001011000111100110110111001001111100 (Kyogre)
{0xcff946b2, 0x00a60ef6}, // 0b0010100110000011101111011011001111111110010100011010110010 (Groudon)
{0xc7f376b6, 0x03ba0eb6}, // 0b1110111010000011101011011011000111111100110111011010110110 (Rayquaza)
{0xb7bbd63e, 0x035c5e93}, // 0b1101011100010111101001001110110111101110111101011000111110 (Latias)
{0xb7bbd63e, 0x035c5e93}, // 0b1101011100010111101001001110110111101110111101011000111110 (Latios)
{0xb59bc62c, 0x00408e93}, // 0b0001000000100011101001001110110101100110111100011000101100 (Jirachi)
{0xf5bbde2d, 0x00e58fc3}, // 0b0011100101100011111100001111110101101110111101111000101101 (Deoxys)
{0xb41b8e28, 0x00419f03}, // 0b0001000001100111110000001110110100000110111000111000101000 (Chimecho)
};
#endif //POKERUBY_TMHM_LEARNSETS_H
|