Updating the input image sizes to have a higher resolution. Currently unclean data is reaching 70% accuracy.

This commit is contained in:
Lucas Oskorep
2019-04-14 18:50:53 -05:00
parent aabd88d4fb
commit de117a55ae
23 changed files with 1869 additions and 7 deletions
+117
View File
@@ -0,0 +1,117 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
.idea/*
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
+108
View File
@@ -0,0 +1,108 @@
import glob
import subprocess
import os
import re
import logging
import traceback
from random import randint
import imghdr
import PIL
from PIL import Image
import sys
directory = "downloads"
def random_with_N_digits(n):
range_start = 10 ** (n - 1)
range_end = (10 ** n) - 1
return randint(range_start, range_end)
def change_file_extension(file_obj, extension):
old_path = os.path.splitext(file_obj)
if not os.path.isfile(old_path[0] + extension):
new_file = old_path[0] + extension
elif not os.path.isfile(file_obj + extension):
new_file = file_obj + extension
else:
print(f"Found {extension} hiding as JPEG but couldn't rename:", file_obj)
return
print(f"Found {extension} hiding as JPEG, renaming:", file_obj, '->', new_file)
subprocess.run(['mv', file_obj, new_file])
def get_frames_from_gif(infile):
try:
im = Image.open(infile)
except IOError:
print
"Cant load", infile
sys.exit(1)
i = 0
try:
while 1:
im2 = im.convert('RGBA')
im2.load()
filename = os.path.join(os.path.dirname(infile), 'foo' + str(i) + '.jpg')
background = Image.new("RGB", im2.size, (255, 255, 255))
background.paste(im2, mask=im2.split()[3])
background.save(filename, 'JPEG', quality=80)
print(f"FOUND GIF, SAVING FRAME AS {filename}")
i += 1
im.seek(im.tell() + 1)
except EOFError:
pass # end of sequence
for root, dirs, files in os.walk(directory):
for file in files:
try:
file_obj = os.path.join(root, file)
exten = os.path.splitext(file)[1].lower()
img_type = imghdr.what(file_obj)
# print(file_obj)
if img_type is None:
os.remove(file_obj)
elif "jpeg" in img_type:
if "jpeg" not in exten and "jpg" not in exten:
change_file_extension(file_obj, ".jpeg")
elif "png" in img_type:
if "png" not in exten:
change_file_extension(file_obj, ".png")
elif "gif" in img_type:
get_frames_from_gif(file_obj)
os.remove(file_obj)
else:
os.remove(file_obj)
except Exception as e:
logging.error(traceback.format_exc())
i = 1
for root, dirs, files in os.walk(directory):
for file in files:
try:
file_obj = os.path.join(root, file)
path, file_base_name = os.path.split(file_obj)
old_path = os.path.splitext(file_base_name)
old_ext = old_path[1]
old_name = old_path[0]
new_file = os.path.join(path, str(i) + "-" + str(random_with_N_digits(10)) + old_ext)
if file_obj != new_file and "foo" not in old_name:
print(f"Moving file\n"
f"{new_file}\n"
f"{file_obj}")
subprocess.run(['mv', file_obj, new_file])
i += 1
except Exception as e:
logging.error(traceback.format_exc())
print("Cleaning JPEGs done")
+20
View File
@@ -0,0 +1,20 @@
import pandas as pd
from google_images_download import google_images_download
df = pd.read_csv("pokemon.csv")
response = google_images_download.googleimagesdownload()
for pokemon in ["abra", "xatu", "yanma", "zapdos", "zubat"]: # df["identifier"][:251]:
absolute_image_paths = response.download(
{
"keywords": pokemon,
"limit": 250,
"chromedriver": "/usr/lib/chromium-browser/chromedriver",
# This needs to be changed based on the computer trying to download the images
"format": "jpg"
}
)
# TODO: Need to clean data up here.... really should be added to another class as well you lazy asshole
+12
View File
@@ -0,0 +1,12 @@
from tensorflow import keras
from tensorflow.contrib import lite
keras_file = "weights.mobilenet.non-transfer.best.hdf5"
keras.models.load_model(keras_file)
h5_model = keras.models.load_model(keras_file)
converter = lite.TocoConverter.from_keras_model_file(keras_file)
tflite_model = converter.convert()
with open('mobilenet.tflite', 'wb') as f:
f.write(tflite_model)
+80
View File
@@ -0,0 +1,80 @@
import os
from random import random
from shutil import copyfile, rmtree
train_dir = "./data/train/"
test_dir = "./data/test/"
val_dir = "./data/val/"
train = .75
test = .20
val = .05
def add_train_data(file, filename, label):
dest = train_dir + label + "/" + filename
print(dest, label, filename)
if not os.path.exists(os.path.dirname(dest)):
try:
os.makedirs(os.path.dirname(dest))
except Exception as e:
print(e)
try:
copyfile(file, dest)
except Exception as e:
print(e)
print("INVALID FILE")
os.remove(file)
# TODO: Remove the files
def add_val_data(file, filename, label):
dest = val_dir + label + "/" + filename
if not os.path.exists(os.path.dirname(dest)):
try:
os.makedirs(os.path.dirname(dest))
except Exception as e:
print(e)
copyfile(file, dest)
def add_test_data(file, filename, label):
dest = test_dir + label + "/" + filename
if not os.path.exists(os.path.dirname(dest)):
try:
os.makedirs(os.path.dirname(dest))
except Exception as e:
print(e)
copyfile(file, dest)
def remove_previous():
if os.path.exists(os.path.dirname(test_dir)):
rmtree(test_dir)
if os.path.exists(os.path.dirname(train_dir)):
rmtree(train_dir)
if os.path.exists(os.path.dirname(val_dir)):
rmtree(val_dir)
remove_previous()
files_processed = 0
for root, dirs, files in os.walk("downloads/"):
for file in files:
print(file)
if file is ".DS_Store":
continue
c = random()
if c < train:
add_train_data(os.path.join(root, file), file, root.split("/")[-1])
elif c < (train + val):
add_val_data(os.path.join(root, file), file, root.split("/")[-1])
else:
add_test_data(os.path.join(root, file), file, root.split("/")[-1])
files_processed += 1
print(root.split("/")[-1])
print(files_processed)
print(file)
+166
View File
@@ -0,0 +1,166 @@
import tensorflow as tf
import pandas as pd
import numpy as np
import os
import seaborn as sn
import matplotlib.pyplot as plt
from tensorflow import keras
from time import time
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
input_shape = (299, 299, 3)
batch_size = 32
model_name = "MobileNetV2FullDatasetNoTransfer"
from keras.preprocessing.image import ImageDataGenerator
from keras.applications.inception_v3 import preprocess_input
train_idg = ImageDataGenerator(
# horizontal_flip=True,
preprocessing_function=preprocess_input
)
train_gen = train_idg.flow_from_directory(
'./data/train',
target_size=(input_shape[0], input_shape[1]),
batch_size=batch_size
)
val_idg = ImageDataGenerator(
# horizontal_flip=True,
preprocessing_function=preprocess_input
)
val_gen = val_idg.flow_from_directory(
'./data/val',
target_size=(input_shape[0], input_shape[1]),
batch_size=batch_size
)
from keras.applications import inception_v3, mobilenet_v2, vgg16
from keras.models import Sequential
from keras.callbacks import ModelCheckpoint, EarlyStopping, TensorBoard
from keras import optimizers
from keras.layers import Dense, Dropout, GlobalAveragePooling2D
nclass = len(train_gen.class_indices)
# base_model = vgg16.VGG16(
# weights='imagenet',
# include_top=False,
# input_shape=input_shape
# )
# base_model = inception_v3.InceptionV3(
# weights='imagenet',
# include_top=False,
# input_shape=input_shape
# )
base_model = mobilenet_v2.MobileNetV2(
weights='imagenet',
include_top=False,
input_shape=input_shape
)
add_model = Sequential()
add_model.add(base_model)
add_model.add(GlobalAveragePooling2D())
add_model.add(Dropout(0.5))
add_model.add(
Dense(1024, activation='relu')) # Adding some dense layers in order to learn complex functions from the base model
# Potentially throw another dropout layer here if you seem to be overfitting your
add_model.add(Dropout(0.5))
add_model.add(Dense(512, activation='relu'))
add_model.add(Dense(nclass, activation='softmax')) # Decision layer
model = add_model
model.compile(loss='categorical_crossentropy',
# optimizer=optimizers.SGD(lr=1e-4, momentum=0.9),
optimizer=optimizers.Adam(lr=1e-4),
metrics=['accuracy'])
model.summary()
# Train the model
file_path = "weights.mobilenet.non-transfer.best.hdf5"
checkpoint = ModelCheckpoint(file_path, monitor='val_acc', verbose=1, save_best_only=True, mode='max')
early = EarlyStopping(monitor="val_acc", mode="max", patience=15)
tensorboard = TensorBoard(
log_dir="logs/" + model_name + "{}".format(time()), histogram_freq=0, batch_size=batch_size,
write_graph=True,
write_grads=True,
write_images=True,
update_freq=batch_size
)
callbacks_list = [checkpoint, early, tensorboard] # early
history = model.fit_generator(
train_gen,
validation_data=val_gen,
steps_per_epoch=len(train_gen),
validation_steps=len(val_gen),
epochs=2,
shuffle=True,
verbose=True,
callbacks=callbacks_list
)
# Create Test generator
test_idg = ImageDataGenerator(
preprocessing_function=preprocess_input,
)
test_gen = test_idg.flow_from_directory(
'./data/test',
target_size=(input_shape[0], input_shape[1]),
batch_size=batch_size,
shuffle=False
)
len(test_gen.filenames)
# predicts
predicts = model.predict_generator(test_gen, verbose=True, workers=1, steps=len(test_gen))
keras_file = 'finished.h5'
keras.models.save_model(model, keras_file)
print(predicts)
print(type(predicts))
print(predicts.shape)
# Process the predictions
predicts = np.argmax(predicts,
axis=1)
# test_gen.reset()
label_index = {v: k for k, v in train_gen.class_indices.items()}
predicts = [label_index[p] for p in predicts]
reals = [label_index[p] for p in test_gen.classes]
# Save the results
print(label_index)
print(test_gen.classes)
print(test_gen.classes.shape)
print(type(test_gen.classes))
df = pd.DataFrame(columns=['fname', 'prediction', 'true_val'])
df['fname'] = [x for x in test_gen.filenames]
df['prediction'] = predicts
df["true_val"] = reals
df.to_csv("sub1_non_transfer.csv", index=False)
# Processed the saved results
from sklearn.metrics import accuracy_score, confusion_matrix
acc = accuracy_score(reals, predicts)
conf_mat = confusion_matrix(reals, predicts)
print("Testing accuracy score is ", acc)
print("Confusion Matrix", conf_mat)
df_cm = pd.DataFrame(conf_mat, index=[i for i in list(set(reals))],
columns=[i for i in list(set(reals))])
plt.figure(figsize=(10, 7))
sn.heatmap(df_cm, annot=True)
plt.show()
+169
View File
@@ -0,0 +1,169 @@
import pandas as pd
import numpy as np
import seaborn as sn
import matplotlib.pyplot as plt
from time import time
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
input_shape = (244, 244, 3)
batch_size = 60
model_name = "MobileNetV2FullDataset"
from keras.preprocessing.image import ImageDataGenerator
from keras.applications.inception_v3 import preprocess_input
train_idg = ImageDataGenerator(
# horizontal_flip=True,
preprocessing_function=preprocess_input
)
train_gen = train_idg.flow_from_directory(
'./data/train',
target_size=(input_shape[0], input_shape[1]),
batch_size=batch_size
)
val_idg = ImageDataGenerator(
# horizontal_flip=True,
preprocessing_function=preprocess_input
)
val_gen = val_idg.flow_from_directory(
'./data/val',
target_size=(input_shape[0], input_shape[1]),
batch_size=batch_size
)
from keras.applications import inception_v3, mobilenet_v2, vgg16
from keras.models import Sequential
from keras.callbacks import ModelCheckpoint, EarlyStopping, TensorBoard
from keras import optimizers
from keras.layers import Dense, Dropout, GlobalAveragePooling2D
nclass = len(train_gen.class_indices)
# base_model = vgg16.VGG16(
# weights='imagenet',
# include_top=False,
# input_shape=input_shape
# )
# base_model = inception_v3.InceptionV3(
# weights='imagenet',
# include_top=False,
# input_shape=input_shape
# )
base_model = mobilenet_v2.MobileNetV2(
weights='imagenet',
include_top=False,
input_shape=input_shape
)
base_model.trainable = False
add_model = Sequential()
add_model.add(base_model)
add_model.add(GlobalAveragePooling2D())
add_model.add(Dropout(0.5))
add_model.add(Dense(1024, activation='relu'))
# Adding some dense layers in order to learn complex functions from the base model
add_model.add(Dropout(0.5))
add_model.add(Dense(512, activation='relu'))
add_model.add(Dense(nclass, activation='softmax')) # Decision layer
model = add_model
model.compile(loss='categorical_crossentropy',
# optimizer=optimizers.SGD(lr=1e-4, momentum=0.9),
optimizer=optimizers.Adam(lr=1e-4),
metrics=['accuracy'])
model.summary()
# Train the model
file_path = "weights.mobilenet.best.hdf5"
checkpoint = ModelCheckpoint(file_path, monitor='val_acc', verbose=1, save_best_only=True, mode='max')
early = EarlyStopping(monitor="val_acc", mode="max", patience=15)
tensorboard = TensorBoard(
log_dir="logs/" + model_name + "{}".format(time()), histogram_freq=0, batch_size=batch_size,
write_graph=True,
write_grads=True,
write_images=True,
update_freq=batch_size
)
callbacks_list = [checkpoint, early, tensorboard] # early
history = model.fit_generator(
train_gen,
steps_per_epoch=len(train_gen),
validation_data=val_gen,
validation_steps=len(val_gen),
epochs=5,
shuffle=True,
verbose=True,
callbacks=callbacks_list
)
# Create Test generator
test_idg = ImageDataGenerator(
preprocessing_function=preprocess_input,
)
test_gen = test_idg.flow_from_directory(
'./data/test',
target_size=(input_shape[0], input_shape[1]),
batch_size=batch_size,
shuffle=False
)
len(test_gen.filenames)
score = model.evaluate_generator(test_gen, workers=1, steps=len(test_gen))
# predicts
predicts = model.predict_generator(test_gen, verbose=True, workers=1, steps=len(test_gen))
print("Loss: ", score[0], "Accuracy: ", score[1])
print(score)
print(predicts)
print(type(predicts))
print(predicts.shape)
# Process the predictions
predicts = np.argmax(predicts,
axis=1)
# test_gen.reset()
label_index = {v: k for k, v in train_gen.class_indices.items()}
predicts = [label_index[p] for p in predicts]
reals = [label_index[p] for p in test_gen.classes]
# Save the results
print(label_index)
print(test_gen.classes)
print(test_gen.classes.shape)
print(type(test_gen.classes))
df = pd.DataFrame(columns=['fname', 'prediction', 'true_val'])
df['fname'] = [x for x in test_gen.filenames]
df['prediction'] = predicts
df["true_val"] = reals
df.to_csv("sub1.csv", index=False)
# Processed the saved results
from sklearn.metrics import accuracy_score, confusion_matrix
acc = accuracy_score(reals, predicts)
conf_mat = confusion_matrix(reals, predicts)
print("Testing accuracy score is ", acc)
print("Confusion Matrix", conf_mat)
df_cm = pd.DataFrame(conf_mat, index=[i for i in list(set(reals))],
columns=[i for i in list(set(reals))])
plt.figure(figsize=(10, 7))
sn.heatmap(df_cm, annot=True)
plt.show()
BIN
View File
Binary file not shown.
+62
View File
@@ -0,0 +1,62 @@
import tensorflow as tf
import pandas as pd
import numpy as np
import os
import seaborn as sn
import matplotlib.pyplot as plt
from sklearn.metrics import accuracy_score, confusion_matrix
def print_preds(reals, preds):
acc = accuracy_score(reals, predicts)
conf_mat = confusion_matrix(reals, predicts)
print("Testing accuracy score is ", acc)
print("Confusion Matrix", conf_mat)
df_cm = pd.DataFrame(conf_mat, index=[i for i in ["Block", "Meter", "Sign"]],
columns=[i for i in ["Block", "Meter", "Sign"]])
plt.figure(figsize=(10, 7))
sn.heatmap(df_cm, annot=True)
plt.show()
data = pd.read_csv("sub1_non_transfer.csv")
files_list = list(data["fname"])
reals = list(data["true_val"])
predicts = list(data["prediction"])
reals2 = []
wrong_files = []
for root, dirs, files in os.walk(".\\photos"):
for file in files:
if file in files_list:
x = data.loc[data["fname"] == file].values[0]
if (x[1] != x[2]):
print(x)
wrong_files.append((os.path.join(root, file), x[1]))
reals2.append(root.split("\\")[-1])
print_preds(reals, predicts)
print_preds(reals2, predicts)
import matplotlib.image as mpimg
from shutil import copyfile, rmtree
for file, pred in wrong_files:
print(file)
# img = mpimg.imread(file)
# # end
# # from now on you can use img as an image, but make sure you know what you are doing!
# imgplot = plt.imshow(img)
dest = file.split("\\")
dest[1] = "failed"
dest[-1] = pred + dest[-1]
dest = "\\".join(dest)
if not os.path.exists(os.path.dirname(dest)):
try:
os.makedirs(os.path.dirname(dest))
except Exception as e:
print(e)
copyfile(file, dest)
plt.show()
+965
View File
@@ -0,0 +1,965 @@
id,identifier,species_id,height,weight,base_experience,order,is_default
1,bulbasaur,1,7,69,64,1,1
2,ivysaur,2,10,130,142,2,1
3,venusaur,3,20,1000,236,3,1
4,charmander,4,6,85,62,5,1
5,charmeleon,5,11,190,142,6,1
6,charizard,6,17,905,240,7,1
7,squirtle,7,5,90,63,10,1
8,wartortle,8,10,225,142,11,1
9,blastoise,9,16,855,239,12,1
10,caterpie,10,3,29,39,14,1
11,metapod,11,7,99,72,15,1
12,butterfree,12,11,320,178,16,1
13,weedle,13,3,32,39,17,1
14,kakuna,14,6,100,72,18,1
15,beedrill,15,10,295,178,19,1
16,pidgey,16,3,18,50,21,1
17,pidgeotto,17,11,300,122,22,1
18,pidgeot,18,15,395,216,23,1
19,rattata,19,3,35,51,25,1
20,raticate,20,7,185,145,27,1
21,spearow,21,3,20,52,30,1
22,fearow,22,12,380,155,31,1
23,ekans,23,20,69,58,32,1
24,arbok,24,35,650,157,33,1
25,pikachu,25,4,60,112,35,1
26,raichu,26,8,300,218,43,1
27,sandshrew,27,6,120,60,45,1
28,sandslash,28,10,295,158,47,1
29,nidoran-f,29,4,70,55,49,1
30,nidorina,30,8,200,128,50,1
31,nidoqueen,31,13,600,227,51,1
32,nidoran-m,32,5,90,55,52,1
33,nidorino,33,9,195,128,53,1
34,nidoking,34,14,620,227,54,1
35,clefairy,35,6,75,113,56,1
36,clefable,36,13,400,217,57,1
37,vulpix,37,6,99,60,58,1
38,ninetales,38,11,199,177,60,1
39,jigglypuff,39,5,55,95,63,1
40,wigglytuff,40,10,120,196,64,1
41,zubat,41,8,75,49,65,1
42,golbat,42,16,550,159,66,1
43,oddish,43,5,54,64,68,1
44,gloom,44,8,86,138,69,1
45,vileplume,45,12,186,221,70,1
46,paras,46,3,54,57,72,1
47,parasect,47,10,295,142,73,1
48,venonat,48,10,300,61,74,1
49,venomoth,49,15,125,158,75,1
50,diglett,50,2,8,53,76,1
51,dugtrio,51,7,333,149,78,1
52,meowth,52,4,42,58,80,1
53,persian,53,10,320,154,82,1
54,psyduck,54,8,196,64,84,1
55,golduck,55,17,766,175,85,1
56,mankey,56,5,280,61,86,1
57,primeape,57,10,320,159,87,1
58,growlithe,58,7,190,70,88,1
59,arcanine,59,19,1550,194,89,1
60,poliwag,60,6,124,60,90,1
61,poliwhirl,61,10,200,135,91,1
62,poliwrath,62,13,540,230,92,1
63,abra,63,9,195,62,94,1
64,kadabra,64,13,565,140,95,1
65,alakazam,65,15,480,225,96,1
66,machop,66,8,195,61,98,1
67,machoke,67,15,705,142,99,1
68,machamp,68,16,1300,227,100,1
69,bellsprout,69,7,40,60,101,1
70,weepinbell,70,10,64,137,102,1
71,victreebel,71,17,155,221,103,1
72,tentacool,72,9,455,67,104,1
73,tentacruel,73,16,550,180,105,1
74,geodude,74,4,200,60,106,1
75,graveler,75,10,1050,137,108,1
76,golem,76,14,3000,223,110,1
77,ponyta,77,10,300,82,112,1
78,rapidash,78,17,950,175,113,1
79,slowpoke,79,12,360,63,114,1
80,slowbro,80,16,785,172,115,1
81,magnemite,81,3,60,65,118,1
82,magneton,82,10,600,163,119,1
83,farfetchd,83,8,150,132,121,1
84,doduo,84,14,392,62,122,1
85,dodrio,85,18,852,165,123,1
86,seel,86,11,900,65,124,1
87,dewgong,87,17,1200,166,125,1
88,grimer,88,9,300,65,126,1
89,muk,89,12,300,175,128,1
90,shellder,90,3,40,61,130,1
91,cloyster,91,15,1325,184,131,1
92,gastly,92,13,1,62,132,1
93,haunter,93,16,1,142,133,1
94,gengar,94,15,405,225,134,1
95,onix,95,88,2100,77,136,1
96,drowzee,96,10,324,66,139,1
97,hypno,97,16,756,169,140,1
98,krabby,98,4,65,65,141,1
99,kingler,99,13,600,166,142,1
100,voltorb,100,5,104,66,143,1
101,electrode,101,12,666,172,144,1
102,exeggcute,102,4,25,65,145,1
103,exeggutor,103,20,1200,186,146,1
104,cubone,104,4,65,64,148,1
105,marowak,105,10,450,149,149,1
106,hitmonlee,106,15,498,159,153,1
107,hitmonchan,107,14,502,159,154,1
108,lickitung,108,12,655,77,156,1
109,koffing,109,6,10,68,158,1
110,weezing,110,12,95,172,159,1
111,rhyhorn,111,10,1150,69,160,1
112,rhydon,112,19,1200,170,161,1
113,chansey,113,11,346,395,164,1
114,tangela,114,10,350,87,166,1
115,kangaskhan,115,22,800,172,168,1
116,horsea,116,4,80,59,170,1
117,seadra,117,12,250,154,171,1
118,goldeen,118,6,150,64,173,1
119,seaking,119,13,390,158,174,1
120,staryu,120,8,345,68,175,1
121,starmie,121,11,800,182,176,1
122,mr-mime,122,13,545,161,178,1
123,scyther,123,15,560,100,179,1
124,jynx,124,14,406,159,183,1
125,electabuzz,125,11,300,172,185,1
126,magmar,126,13,445,173,188,1
127,pinsir,127,15,550,175,190,1
128,tauros,128,14,884,172,192,1
129,magikarp,129,9,100,40,193,1
130,gyarados,130,65,2350,189,194,1
131,lapras,131,25,2200,187,196,1
132,ditto,132,3,40,101,197,1
133,eevee,133,3,65,65,198,1
134,vaporeon,134,10,290,184,199,1
135,jolteon,135,8,245,184,200,1
136,flareon,136,9,250,184,201,1
137,porygon,137,8,365,79,207,1
138,omanyte,138,4,75,71,210,1
139,omastar,139,10,350,173,211,1
140,kabuto,140,5,115,71,212,1
141,kabutops,141,13,405,173,213,1
142,aerodactyl,142,18,590,180,214,1
143,snorlax,143,21,4600,189,217,1
144,articuno,144,17,554,261,218,1
145,zapdos,145,16,526,261,219,1
146,moltres,146,20,600,261,220,1
147,dratini,147,18,33,60,221,1
148,dragonair,148,40,165,147,222,1
149,dragonite,149,22,2100,270,223,1
150,mewtwo,150,20,1220,306,224,1
151,mew,151,4,40,270,227,1
152,chikorita,152,9,64,64,228,1
153,bayleef,153,12,158,142,229,1
154,meganium,154,18,1005,236,230,1
155,cyndaquil,155,5,79,62,231,1
156,quilava,156,9,190,142,232,1
157,typhlosion,157,17,795,240,233,1
158,totodile,158,6,95,63,234,1
159,croconaw,159,11,250,142,235,1
160,feraligatr,160,23,888,239,236,1
161,sentret,161,8,60,43,237,1
162,furret,162,18,325,145,238,1
163,hoothoot,163,7,212,52,239,1
164,noctowl,164,16,408,158,240,1
165,ledyba,165,10,108,53,241,1
166,ledian,166,14,356,137,242,1
167,spinarak,167,5,85,50,243,1
168,ariados,168,11,335,140,244,1
169,crobat,169,18,750,241,67,1
170,chinchou,170,5,120,66,245,1
171,lanturn,171,12,225,161,246,1
172,pichu,172,3,20,41,34,1
173,cleffa,173,3,30,44,55,1
174,igglybuff,174,3,10,42,62,1
175,togepi,175,3,15,49,247,1
176,togetic,176,6,32,142,248,1
177,natu,177,2,20,64,250,1
178,xatu,178,15,150,165,251,1
179,mareep,179,6,78,56,252,1
180,flaaffy,180,8,133,128,253,1
181,ampharos,181,14,615,230,254,1
182,bellossom,182,4,58,221,71,1
183,marill,183,4,85,88,257,1
184,azumarill,184,8,285,189,258,1
185,sudowoodo,185,12,380,144,260,1
186,politoed,186,11,339,225,93,1
187,hoppip,187,4,5,50,261,1
188,skiploom,188,6,10,119,262,1
189,jumpluff,189,8,30,207,263,1
190,aipom,190,8,115,72,264,1
191,sunkern,191,3,18,36,266,1
192,sunflora,192,8,85,149,267,1
193,yanma,193,12,380,78,268,1
194,wooper,194,4,85,42,270,1
195,quagsire,195,14,750,151,271,1
196,espeon,196,9,265,184,202,1
197,umbreon,197,10,270,184,203,1
198,murkrow,198,5,21,81,272,1
199,slowking,199,20,795,172,117,1
200,misdreavus,200,7,10,87,274,1
201,unown,201,5,50,118,276,1
202,wobbuffet,202,13,285,142,278,1
203,girafarig,203,15,415,159,279,1
204,pineco,204,6,72,58,280,1
205,forretress,205,12,1258,163,281,1
206,dunsparce,206,15,140,145,282,1
207,gligar,207,11,648,86,283,1
208,steelix,208,92,4000,179,137,1
209,snubbull,209,6,78,60,285,1
210,granbull,210,14,487,158,286,1
211,qwilfish,211,5,39,88,287,1
212,scizor,212,18,1180,175,180,1
213,shuckle,213,6,205,177,288,1
214,heracross,214,15,540,175,289,1
215,sneasel,215,9,280,86,291,1
216,teddiursa,216,6,88,66,293,1
217,ursaring,217,18,1258,175,294,1
218,slugma,218,7,350,50,295,1
219,magcargo,219,8,550,151,296,1
220,swinub,220,4,65,50,297,1
221,piloswine,221,11,558,158,298,1
222,corsola,222,6,50,144,300,1
223,remoraid,223,6,120,60,301,1
224,octillery,224,9,285,168,302,1
225,delibird,225,9,160,116,303,1
226,mantine,226,21,2200,170,305,1
227,skarmory,227,17,505,163,306,1
228,houndour,228,6,108,66,307,1
229,houndoom,229,14,350,175,308,1
230,kingdra,230,18,1520,243,172,1
231,phanpy,231,5,335,66,310,1
232,donphan,232,11,1200,175,311,1
233,porygon2,233,6,325,180,208,1
234,stantler,234,14,712,163,312,1
235,smeargle,235,12,580,88,313,1
236,tyrogue,236,7,210,42,152,1
237,hitmontop,237,14,480,159,155,1
238,smoochum,238,4,60,61,182,1
239,elekid,239,6,235,72,184,1
240,magby,240,7,214,73,187,1
241,miltank,241,12,755,172,314,1
242,blissey,242,15,468,608,165,1
243,raikou,243,19,1780,261,315,1
244,entei,244,21,1980,261,316,1
245,suicune,245,20,1870,261,317,1
246,larvitar,246,6,720,60,318,1
247,pupitar,247,12,1520,144,319,1
248,tyranitar,248,20,2020,270,320,1
249,lugia,249,52,2160,306,322,1
250,ho-oh,250,38,1990,306,323,1
251,celebi,251,6,50,270,324,1
252,treecko,252,5,50,62,325,1
253,grovyle,253,9,216,142,326,1
254,sceptile,254,17,522,239,327,1
255,torchic,255,4,25,62,329,1
256,combusken,256,9,195,142,330,1
257,blaziken,257,19,520,239,331,1
258,mudkip,258,4,76,62,333,1
259,marshtomp,259,7,280,142,334,1
260,swampert,260,15,819,241,335,1
261,poochyena,261,5,136,56,337,1
262,mightyena,262,10,370,147,338,1
263,zigzagoon,263,4,175,56,339,1
264,linoone,264,5,325,147,340,1
265,wurmple,265,3,36,56,341,1
266,silcoon,266,6,100,72,342,1
267,beautifly,267,10,284,178,343,1
268,cascoon,268,7,115,72,344,1
269,dustox,269,12,316,173,345,1
270,lotad,270,5,26,44,346,1
271,lombre,271,12,325,119,347,1
272,ludicolo,272,15,550,216,348,1
273,seedot,273,5,40,44,349,1
274,nuzleaf,274,10,280,119,350,1
275,shiftry,275,13,596,216,351,1
276,taillow,276,3,23,54,352,1
277,swellow,277,7,198,159,353,1
278,wingull,278,6,95,54,354,1
279,pelipper,279,12,280,154,355,1
280,ralts,280,4,66,40,356,1
281,kirlia,281,8,202,97,357,1
282,gardevoir,282,16,484,233,358,1
283,surskit,283,5,17,54,362,1
284,masquerain,284,8,36,159,363,1
285,shroomish,285,4,45,59,364,1
286,breloom,286,12,392,161,365,1
287,slakoth,287,8,240,56,366,1
288,vigoroth,288,14,465,154,367,1
289,slaking,289,20,1305,252,368,1
290,nincada,290,5,55,53,369,1
291,ninjask,291,8,120,160,370,1
292,shedinja,292,8,12,83,371,1
293,whismur,293,6,163,48,372,1
294,loudred,294,10,405,126,373,1
295,exploud,295,15,840,221,374,1
296,makuhita,296,10,864,47,375,1
297,hariyama,297,23,2538,166,376,1
298,azurill,298,2,20,38,256,1
299,nosepass,299,10,970,75,377,1
300,skitty,300,6,110,52,379,1
301,delcatty,301,11,326,140,380,1
302,sableye,302,5,110,133,381,1
303,mawile,303,6,115,133,383,1
304,aron,304,4,600,66,385,1
305,lairon,305,9,1200,151,386,1
306,aggron,306,21,3600,239,387,1
307,meditite,307,6,112,56,389,1
308,medicham,308,13,315,144,390,1
309,electrike,309,6,152,59,392,1
310,manectric,310,15,402,166,393,1
311,plusle,311,4,42,142,395,1
312,minun,312,4,42,142,396,1
313,volbeat,313,7,177,151,397,1
314,illumise,314,6,177,151,398,1
315,roselia,315,3,20,140,400,1
316,gulpin,316,4,103,60,402,1
317,swalot,317,17,800,163,403,1
318,carvanha,318,8,208,61,404,1
319,sharpedo,319,18,888,161,405,1
320,wailmer,320,20,1300,80,407,1
321,wailord,321,145,3980,175,408,1
322,numel,322,7,240,61,409,1
323,camerupt,323,19,2200,161,410,1
324,torkoal,324,5,804,165,412,1
325,spoink,325,7,306,66,413,1
326,grumpig,326,9,715,165,414,1
327,spinda,327,11,50,126,415,1
328,trapinch,328,7,150,58,416,1
329,vibrava,329,11,153,119,417,1
330,flygon,330,20,820,234,418,1
331,cacnea,331,4,513,67,419,1
332,cacturne,332,13,774,166,420,1
333,swablu,333,4,12,62,421,1
334,altaria,334,11,206,172,422,1
335,zangoose,335,13,403,160,424,1
336,seviper,336,27,525,160,425,1
337,lunatone,337,10,1680,161,426,1
338,solrock,338,12,1540,161,427,1
339,barboach,339,4,19,58,428,1
340,whiscash,340,9,236,164,429,1
341,corphish,341,6,115,62,430,1
342,crawdaunt,342,11,328,164,431,1
343,baltoy,343,5,215,60,432,1
344,claydol,344,15,1080,175,433,1
345,lileep,345,10,238,71,434,1
346,cradily,346,15,604,173,435,1
347,anorith,347,7,125,71,436,1
348,armaldo,348,15,682,173,437,1
349,feebas,349,6,74,40,438,1
350,milotic,350,62,1620,189,439,1
351,castform,351,3,8,147,440,1
352,kecleon,352,10,220,154,444,1
353,shuppet,353,6,23,59,445,1
354,banette,354,11,125,159,446,1
355,duskull,355,8,150,59,448,1
356,dusclops,356,16,306,159,449,1
357,tropius,357,20,1000,161,451,1
358,chimecho,358,6,10,159,453,1
359,absol,359,12,470,163,454,1
360,wynaut,360,6,140,52,277,1
361,snorunt,361,7,168,60,456,1
362,glalie,362,15,2565,168,457,1
363,spheal,363,8,395,58,460,1
364,sealeo,364,11,876,144,461,1
365,walrein,365,14,1506,239,462,1
366,clamperl,366,4,525,69,463,1
367,huntail,367,17,270,170,464,1
368,gorebyss,368,18,226,170,465,1
369,relicanth,369,10,234,170,466,1
370,luvdisc,370,6,87,116,467,1
371,bagon,371,6,421,60,468,1
372,shelgon,372,11,1105,147,469,1
373,salamence,373,15,1026,270,470,1
374,beldum,374,6,952,60,472,1
375,metang,375,12,2025,147,473,1
376,metagross,376,16,5500,270,474,1
377,regirock,377,17,2300,261,476,1
378,regice,378,18,1750,261,477,1
379,registeel,379,19,2050,261,478,1
380,latias,380,14,400,270,479,1
381,latios,381,20,600,270,481,1
382,kyogre,382,45,3520,302,483,1
383,groudon,383,35,9500,302,485,1
384,rayquaza,384,70,2065,306,487,1
385,jirachi,385,3,11,270,489,1
386,deoxys-normal,386,17,608,270,490,1
387,turtwig,387,4,102,64,494,1
388,grotle,388,11,970,142,495,1
389,torterra,389,22,3100,236,496,1
390,chimchar,390,5,62,62,497,1
391,monferno,391,9,220,142,498,1
392,infernape,392,12,550,240,499,1
393,piplup,393,4,52,63,500,1
394,prinplup,394,8,230,142,501,1
395,empoleon,395,17,845,239,502,1
396,starly,396,3,20,49,503,1
397,staravia,397,6,155,119,504,1
398,staraptor,398,12,249,218,505,1
399,bidoof,399,5,200,50,506,1
400,bibarel,400,10,315,144,507,1
401,kricketot,401,3,22,39,508,1
402,kricketune,402,10,255,134,509,1
403,shinx,403,5,95,53,510,1
404,luxio,404,9,305,127,511,1
405,luxray,405,14,420,235,512,1
406,budew,406,2,12,56,399,1
407,roserade,407,9,145,232,401,1
408,cranidos,408,9,315,70,513,1
409,rampardos,409,16,1025,173,514,1
410,shieldon,410,5,570,70,515,1
411,bastiodon,411,13,1495,173,516,1
412,burmy,412,2,34,45,517,1
413,wormadam-plant,413,5,65,148,518,1
414,mothim,414,9,233,148,521,1
415,combee,415,3,55,49,522,1
416,vespiquen,416,12,385,166,523,1
417,pachirisu,417,4,39,142,524,1
418,buizel,418,7,295,66,525,1
419,floatzel,419,11,335,173,526,1
420,cherubi,420,4,33,55,527,1
421,cherrim,421,5,93,158,528,1
422,shellos,422,3,63,65,529,1
423,gastrodon,423,9,299,166,530,1
424,ambipom,424,12,203,169,265,1
425,drifloon,425,4,12,70,531,1
426,drifblim,426,12,150,174,532,1
427,buneary,427,4,55,70,533,1
428,lopunny,428,12,333,168,534,1
429,mismagius,429,9,44,173,275,1
430,honchkrow,430,9,273,177,273,1
431,glameow,431,5,39,62,536,1
432,purugly,432,10,438,158,537,1
433,chingling,433,2,6,57,452,1
434,stunky,434,4,192,66,538,1
435,skuntank,435,10,380,168,539,1
436,bronzor,436,5,605,60,540,1
437,bronzong,437,13,1870,175,541,1
438,bonsly,438,5,150,58,259,1
439,mime-jr,439,6,130,62,177,1
440,happiny,440,6,244,110,163,1
441,chatot,441,5,19,144,542,1
442,spiritomb,442,10,1080,170,543,1
443,gible,443,7,205,60,544,1
444,gabite,444,14,560,144,545,1
445,garchomp,445,19,950,270,546,1
446,munchlax,446,6,1050,78,216,1
447,riolu,447,7,202,57,548,1
448,lucario,448,12,540,184,549,1
449,hippopotas,449,8,495,66,551,1
450,hippowdon,450,20,3000,184,552,1
451,skorupi,451,8,120,66,553,1
452,drapion,452,13,615,175,554,1
453,croagunk,453,7,230,60,555,1
454,toxicroak,454,13,444,172,556,1
455,carnivine,455,14,270,159,557,1
456,finneon,456,4,70,66,558,1
457,lumineon,457,12,240,161,559,1
458,mantyke,458,10,650,69,304,1
459,snover,459,10,505,67,560,1
460,abomasnow,460,22,1355,173,561,1
461,weavile,461,11,340,179,292,1
462,magnezone,462,12,1800,241,120,1
463,lickilicky,463,17,1400,180,157,1
464,rhyperior,464,24,2828,241,162,1
465,tangrowth,465,20,1286,187,167,1
466,electivire,466,18,1386,243,186,1
467,magmortar,467,16,680,243,189,1
468,togekiss,468,15,380,245,249,1
469,yanmega,469,19,515,180,269,1
470,leafeon,470,10,255,184,204,1
471,glaceon,471,8,259,184,205,1
472,gliscor,472,20,425,179,284,1
473,mamoswine,473,25,2910,239,299,1
474,porygon-z,474,9,340,241,209,1
475,gallade,475,16,520,233,360,1
476,probopass,476,14,3400,184,378,1
477,dusknoir,477,22,1066,236,450,1
478,froslass,478,13,266,168,459,1
479,rotom,479,3,3,154,563,1
480,uxie,480,3,3,261,569,1
481,mesprit,481,3,3,261,570,1
482,azelf,482,3,3,261,571,1
483,dialga,483,54,6830,306,572,1
484,palkia,484,42,3360,306,573,1
485,heatran,485,17,4300,270,574,1
486,regigigas,486,37,4200,302,575,1
487,giratina-altered,487,45,7500,306,576,1
488,cresselia,488,15,856,270,578,1
489,phione,489,4,31,216,579,1
490,manaphy,490,3,14,270,580,1
491,darkrai,491,15,505,270,581,1
492,shaymin-land,492,2,21,270,582,1
493,arceus,493,32,3200,324,584,1
494,victini,494,4,40,270,585,1
495,snivy,495,6,81,62,586,1
496,servine,496,8,160,145,587,1
497,serperior,497,33,630,238,588,1
498,tepig,498,5,99,62,589,1
499,pignite,499,10,555,146,590,1
500,emboar,500,16,1500,238,591,1
501,oshawott,501,5,59,62,592,1
502,dewott,502,8,245,145,593,1
503,samurott,503,15,946,238,594,1
504,patrat,504,5,116,51,595,1
505,watchog,505,11,270,147,596,1
506,lillipup,506,4,41,55,597,1
507,herdier,507,9,147,130,598,1
508,stoutland,508,12,610,225,599,1
509,purrloin,509,4,101,56,600,1
510,liepard,510,11,375,156,601,1
511,pansage,511,6,105,63,602,1
512,simisage,512,11,305,174,603,1
513,pansear,513,6,110,63,604,1
514,simisear,514,10,280,174,605,1
515,panpour,515,6,135,63,606,1
516,simipour,516,10,290,174,607,1
517,munna,517,6,233,58,608,1
518,musharna,518,11,605,170,609,1
519,pidove,519,3,21,53,610,1
520,tranquill,520,6,150,125,611,1
521,unfezant,521,12,290,220,612,1
522,blitzle,522,8,298,59,613,1
523,zebstrika,523,16,795,174,614,1
524,roggenrola,524,4,180,56,615,1
525,boldore,525,9,1020,137,616,1
526,gigalith,526,17,2600,232,617,1
527,woobat,527,4,21,65,618,1
528,swoobat,528,9,105,149,619,1
529,drilbur,529,3,85,66,620,1
530,excadrill,530,7,404,178,621,1
531,audino,531,11,310,390,622,1
532,timburr,532,6,125,61,624,1
533,gurdurr,533,12,400,142,625,1
534,conkeldurr,534,14,870,227,626,1
535,tympole,535,5,45,59,627,1
536,palpitoad,536,8,170,134,628,1
537,seismitoad,537,15,620,229,629,1
538,throh,538,13,555,163,630,1
539,sawk,539,14,510,163,631,1
540,sewaddle,540,3,25,62,632,1
541,swadloon,541,5,73,133,633,1
542,leavanny,542,12,205,225,634,1
543,venipede,543,4,53,52,635,1
544,whirlipede,544,12,585,126,636,1
545,scolipede,545,25,2005,218,637,1
546,cottonee,546,3,6,56,638,1
547,whimsicott,547,7,66,168,639,1
548,petilil,548,5,66,56,640,1
549,lilligant,549,11,163,168,641,1
550,basculin-red-striped,550,10,180,161,642,1
551,sandile,551,7,152,58,644,1
552,krokorok,552,10,334,123,645,1
553,krookodile,553,15,963,234,646,1
554,darumaka,554,6,375,63,647,1
555,darmanitan-standard,555,13,929,168,648,1
556,maractus,556,10,280,161,650,1
557,dwebble,557,3,145,65,651,1
558,crustle,558,14,2000,170,652,1
559,scraggy,559,6,118,70,653,1
560,scrafty,560,11,300,171,654,1
561,sigilyph,561,14,140,172,655,1
562,yamask,562,5,15,61,656,1
563,cofagrigus,563,17,765,169,657,1
564,tirtouga,564,7,165,71,658,1
565,carracosta,565,12,810,173,659,1
566,archen,566,5,95,71,660,1
567,archeops,567,14,320,177,661,1
568,trubbish,568,6,310,66,662,1
569,garbodor,569,19,1073,166,663,1
570,zorua,570,7,125,66,664,1
571,zoroark,571,16,811,179,665,1
572,minccino,572,4,58,60,666,1
573,cinccino,573,5,75,165,667,1
574,gothita,574,4,58,58,668,1
575,gothorita,575,7,180,137,669,1
576,gothitelle,576,15,440,221,670,1
577,solosis,577,3,10,58,671,1
578,duosion,578,6,80,130,672,1
579,reuniclus,579,10,201,221,673,1
580,ducklett,580,5,55,61,674,1
581,swanna,581,13,242,166,675,1
582,vanillite,582,4,57,61,676,1
583,vanillish,583,11,410,138,677,1
584,vanilluxe,584,13,575,241,678,1
585,deerling,585,6,195,67,679,1
586,sawsbuck,586,19,925,166,680,1
587,emolga,587,4,50,150,681,1
588,karrablast,588,5,59,63,682,1
589,escavalier,589,10,330,173,683,1
590,foongus,590,2,10,59,684,1
591,amoonguss,591,6,105,162,685,1
592,frillish,592,12,330,67,686,1
593,jellicent,593,22,1350,168,687,1
594,alomomola,594,12,316,165,688,1
595,joltik,595,1,6,64,689,1
596,galvantula,596,8,143,165,690,1
597,ferroseed,597,6,188,61,691,1
598,ferrothorn,598,10,1100,171,692,1
599,klink,599,3,210,60,693,1
600,klang,600,6,510,154,694,1
601,klinklang,601,6,810,234,695,1
602,tynamo,602,2,3,55,696,1
603,eelektrik,603,12,220,142,697,1
604,eelektross,604,21,805,232,698,1
605,elgyem,605,5,90,67,699,1
606,beheeyem,606,10,345,170,700,1
607,litwick,607,3,31,55,701,1
608,lampent,608,6,130,130,702,1
609,chandelure,609,10,343,234,703,1
610,axew,610,6,180,64,704,1
611,fraxure,611,10,360,144,705,1
612,haxorus,612,18,1055,243,706,1
613,cubchoo,613,5,85,61,707,1
614,beartic,614,26,2600,177,708,1
615,cryogonal,615,11,1480,180,709,1
616,shelmet,616,4,77,61,710,1
617,accelgor,617,8,253,173,711,1
618,stunfisk,618,7,110,165,712,1
619,mienfoo,619,9,200,70,713,1
620,mienshao,620,14,355,179,714,1
621,druddigon,621,16,1390,170,715,1
622,golett,622,10,920,61,716,1
623,golurk,623,28,3300,169,717,1
624,pawniard,624,5,102,68,718,1
625,bisharp,625,16,700,172,719,1
626,bouffalant,626,16,946,172,720,1
627,rufflet,627,5,105,70,721,1
628,braviary,628,15,410,179,722,1
629,vullaby,629,5,90,74,723,1
630,mandibuzz,630,12,395,179,724,1
631,heatmor,631,14,580,169,725,1
632,durant,632,3,330,169,726,1
633,deino,633,8,173,60,727,1
634,zweilous,634,14,500,147,728,1
635,hydreigon,635,18,1600,270,729,1
636,larvesta,636,11,288,72,730,1
637,volcarona,637,16,460,248,731,1
638,cobalion,638,21,2500,261,732,1
639,terrakion,639,19,2600,261,733,1
640,virizion,640,20,2000,261,734,1
641,tornadus-incarnate,641,15,630,261,735,1
642,thundurus-incarnate,642,15,610,261,737,1
643,reshiram,643,32,3300,306,739,1
644,zekrom,644,29,3450,306,740,1
645,landorus-incarnate,645,15,680,270,741,1
646,kyurem,646,30,3250,297,743,1
647,keldeo-ordinary,647,14,485,261,746,1
648,meloetta-aria,648,6,65,270,748,1
649,genesect,649,15,825,270,750,1
650,chespin,650,4,90,63,751,1
651,quilladin,651,7,290,142,752,1
652,chesnaught,652,16,900,239,753,1
653,fennekin,653,4,94,61,754,1
654,braixen,654,10,145,143,755,1
655,delphox,655,15,390,240,756,1
656,froakie,656,3,70,63,757,1
657,frogadier,657,6,109,142,758,1
658,greninja,658,15,400,239,759,1
659,bunnelby,659,4,50,47,762,1
660,diggersby,660,10,424,148,763,1
661,fletchling,661,3,17,56,764,1
662,fletchinder,662,7,160,134,765,1
663,talonflame,663,12,245,175,766,1
664,scatterbug,664,3,25,40,767,1
665,spewpa,665,3,84,75,768,1
666,vivillon,666,12,170,185,769,1
667,litleo,667,6,135,74,770,1
668,pyroar,668,15,815,177,771,1
669,flabebe,669,1,1,61,772,1
670,floette,670,2,9,130,773,1
671,florges,671,11,100,248,775,1
672,skiddo,672,9,310,70,776,1
673,gogoat,673,17,910,186,777,1
674,pancham,674,6,80,70,778,1
675,pangoro,675,21,1360,173,779,1
676,furfrou,676,12,280,165,780,1
677,espurr,677,3,35,71,781,1
678,meowstic-male,678,6,85,163,782,1
679,honedge,679,8,20,65,784,1
680,doublade,680,8,45,157,785,1
681,aegislash-shield,681,17,530,234,786,1
682,spritzee,682,2,5,68,788,1
683,aromatisse,683,8,155,162,789,1
684,swirlix,684,4,35,68,790,1
685,slurpuff,685,8,50,168,791,1
686,inkay,686,4,35,58,792,1
687,malamar,687,15,470,169,793,1
688,binacle,688,5,310,61,794,1
689,barbaracle,689,13,960,175,795,1
690,skrelp,690,5,73,64,796,1
691,dragalge,691,18,815,173,797,1
692,clauncher,692,5,83,66,798,1
693,clawitzer,693,13,353,100,799,1
694,helioptile,694,5,60,58,800,1
695,heliolisk,695,10,210,168,801,1
696,tyrunt,696,8,260,72,802,1
697,tyrantrum,697,25,2700,182,803,1
698,amaura,698,13,252,72,804,1
699,aurorus,699,27,2250,104,805,1
700,sylveon,700,10,235,184,206,1
701,hawlucha,701,8,215,175,806,1
702,dedenne,702,2,22,151,807,1
703,carbink,703,3,57,100,808,1
704,goomy,704,3,28,60,809,1
705,sliggoo,705,8,175,158,810,1
706,goodra,706,20,1505,270,811,1
707,klefki,707,2,30,165,812,1
708,phantump,708,4,70,62,813,1
709,trevenant,709,15,710,166,814,1
710,pumpkaboo-average,710,4,50,67,815,1
711,gourgeist-average,711,9,125,173,819,1
712,bergmite,712,10,995,61,823,1
713,avalugg,713,20,5050,180,824,1
714,noibat,714,5,80,49,825,1
715,noivern,715,15,850,187,826,1
716,xerneas,716,30,2150,306,827,1
717,yveltal,717,58,2030,306,828,1
718,zygarde,718,50,3050,270,829,1
719,diancie,719,7,88,270,833,1
720,hoopa,720,5,90,270,835,1
721,volcanion,721,17,1950,270,837,1
722,rowlet,722,3,15,64,838,1
723,dartrix,723,7,160,147,839,1
724,decidueye,724,16,366,239,840,1
725,litten,725,4,43,64,841,1
726,torracat,726,7,250,147,842,1
727,incineroar,727,18,830,239,843,1
728,popplio,728,4,75,64,844,1
729,brionne,729,6,175,147,845,1
730,primarina,730,18,440,239,846,1
731,pikipek,731,3,12,53,847,1
732,trumbeak,732,6,148,124,848,1
733,toucannon,733,11,260,218,849,1
734,yungoos,734,4,60,51,850,1
735,gumshoos,735,7,142,146,851,1
736,grubbin,736,4,44,60,853,1
737,charjabug,737,5,105,140,854,1
738,vikavolt,738,15,450,225,855,1
739,crabrawler,739,6,70,68,857,1
740,crabominable,740,17,1800,167,858,1
741,oricorio-baile,741,6,34,167,859,1
742,cutiefly,742,1,2,61,863,1
743,ribombee,743,2,5,162,864,1
744,rockruff,744,5,92,56,866,1
745,lycanroc-midday,745,8,250,170,868,1
746,wishiwashi-solo,746,2,3,61,871,1
747,mareanie,747,4,80,61,873,1
748,toxapex,748,7,145,173,874,1
749,mudbray,749,10,1100,77,875,1
750,mudsdale,750,25,9200,175,876,1
751,dewpider,751,3,40,54,877,1
752,araquanid,752,18,820,159,878,1
753,fomantis,753,3,15,50,880,1
754,lurantis,754,9,185,168,881,1
755,morelull,755,2,15,57,883,1
756,shiinotic,756,10,115,142,884,1
757,salandit,757,6,48,64,885,1
758,salazzle,758,12,222,168,886,1
759,stufful,759,5,68,68,888,1
760,bewear,760,21,1350,175,889,1
761,bounsweet,761,3,32,42,890,1
762,steenee,762,7,82,102,891,1
763,tsareena,763,12,214,230,892,1
764,comfey,764,1,3,170,893,1
765,oranguru,765,15,760,172,894,1
766,passimian,766,20,828,172,895,1
767,wimpod,767,5,120,46,896,1
768,golisopod,768,20,1080,186,897,1
769,sandygast,769,5,700,64,898,1
770,palossand,770,13,2500,168,899,1
771,pyukumuku,771,3,12,144,900,1
772,type-null,772,19,1205,107,901,1
773,silvally,773,23,1005,257,902,1
774,minior-red-meteor,774,3,400,154,903,1
775,komala,775,4,199,168,917,1
776,turtonator,776,20,2120,170,918,1
777,togedemaru,777,3,33,152,919,1
778,mimikyu-disguised,778,2,7,167,921,1
779,bruxish,779,9,190,166,925,1
780,drampa,780,30,1850,170,926,1
781,dhelmise,781,39,2100,181,927,1
782,jangmo-o,782,6,297,60,928,1
783,hakamo-o,783,12,470,147,929,1
784,kommo-o,784,16,782,270,930,1
785,tapu-koko,785,18,205,257,932,1
786,tapu-lele,786,12,186,257,933,1
787,tapu-bulu,787,19,455,257,934,1
788,tapu-fini,788,13,212,257,935,1
789,cosmog,789,2,1,40,936,1
790,cosmoem,790,1,9999,140,937,1
791,solgaleo,791,34,2300,306,938,1
792,lunala,792,40,1200,306,939,1
793,nihilego,793,12,555,257,940,1
794,buzzwole,794,24,3336,257,941,1
795,pheromosa,795,18,250,257,942,1
796,xurkitree,796,38,1000,257,943,1
797,celesteela,797,92,9999,257,944,1
798,kartana,798,3,1,257,945,1
799,guzzlord,799,55,8880,257,946,1
800,necrozma,800,24,2300,270,947,1
801,magearna,801,10,805,270,951,1
802,marshadow,802,7,222,270,953,1
803,poipole,803,6,18,189,954,1
804,naganadel,804,36,1500,243,955,1
805,stakataka,805,55,8200,257,956,1
806,blacephalon,806,18,130,257,957,1
807,zeraora,807,15,445,270,958,1
10001,deoxys-attack,386,17,608,270,491,0
10002,deoxys-defense,386,17,608,270,492,0
10003,deoxys-speed,386,17,608,270,493,0
10004,wormadam-sandy,413,5,65,148,519,0
10005,wormadam-trash,413,5,65,148,520,0
10006,shaymin-sky,492,4,52,270,583,0
10007,giratina-origin,487,69,6500,306,577,0
10008,rotom-heat,479,3,3,182,564,0
10009,rotom-wash,479,3,3,182,565,0
10010,rotom-frost,479,3,3,182,566,0
10011,rotom-fan,479,3,3,182,567,0
10012,rotom-mow,479,3,3,182,568,0
10013,castform-sunny,351,3,8,147,441,0
10014,castform-rainy,351,3,8,147,442,0
10015,castform-snowy,351,3,8,147,443,0
10016,basculin-blue-striped,550,10,180,161,643,0
10017,darmanitan-zen,555,13,929,189,649,0
10018,meloetta-pirouette,648,6,65,270,749,0
10019,tornadus-therian,641,14,630,261,736,0
10020,thundurus-therian,642,30,610,261,738,0
10021,landorus-therian,645,13,680,270,742,0
10022,kyurem-black,646,33,3250,315,745,0
10023,kyurem-white,646,36,3250,315,744,0
10024,keldeo-resolute,647,14,485,261,747,0
10025,meowstic-female,678,6,85,163,783,0
10026,aegislash-blade,681,17,530,234,787,0
10027,pumpkaboo-small,710,3,35,67,816,0
10028,pumpkaboo-large,710,5,75,67,817,0
10029,pumpkaboo-super,710,8,150,67,818,0
10030,gourgeist-small,711,7,95,173,820,0
10031,gourgeist-large,711,11,140,173,821,0
10032,gourgeist-super,711,17,390,173,822,0
10033,venusaur-mega,3,24,1555,281,4,0
10034,charizard-mega-x,6,17,1105,285,8,0
10035,charizard-mega-y,6,17,1005,285,9,0
10036,blastoise-mega,9,16,1011,284,13,0
10037,alakazam-mega,65,12,480,270,97,0
10038,gengar-mega,94,14,405,270,135,0
10039,kangaskhan-mega,115,22,1000,207,169,0
10040,pinsir-mega,127,17,590,210,191,0
10041,gyarados-mega,130,65,3050,224,195,0
10042,aerodactyl-mega,142,21,790,215,215,0
10043,mewtwo-mega-x,150,23,1270,351,225,0
10044,mewtwo-mega-y,150,15,330,351,226,0
10045,ampharos-mega,181,14,615,275,255,0
10046,scizor-mega,212,20,1250,210,181,0
10047,heracross-mega,214,17,625,210,290,0
10048,houndoom-mega,229,19,495,210,309,0
10049,tyranitar-mega,248,25,2550,315,321,0
10050,blaziken-mega,257,19,520,284,332,0
10051,gardevoir-mega,282,16,484,278,359,0
10052,mawile-mega,303,10,235,168,384,0
10053,aggron-mega,306,22,3950,284,388,0
10054,medicham-mega,308,13,315,179,391,0
10055,manectric-mega,310,18,440,201,394,0
10056,banette-mega,354,12,130,194,447,0
10057,absol-mega,359,12,490,198,455,0
10058,garchomp-mega,445,19,950,315,547,0
10059,lucario-mega,448,13,575,219,550,0
10060,abomasnow-mega,460,27,1850,208,562,0
10061,floette-eternal,670,2,9,243,774,0
10062,latias-mega,380,18,520,315,480,0
10063,latios-mega,381,23,700,315,482,0
10064,swampert-mega,260,19,1020,286,336,0
10065,sceptile-mega,254,19,552,284,328,0
10066,sableye-mega,302,5,1610,168,382,0
10067,altaria-mega,334,15,206,207,423,0
10068,gallade-mega,475,16,564,278,361,0
10069,audino-mega,531,15,320,425,623,0
10070,sharpedo-mega,319,25,1303,196,406,0
10071,slowbro-mega,80,20,1200,207,116,0
10072,steelix-mega,208,105,7400,214,138,0
10073,pidgeot-mega,18,22,505,261,24,0
10074,glalie-mega,362,21,3502,203,458,0
10075,diancie-mega,719,11,278,315,834,0
10076,metagross-mega,376,25,9429,315,475,0
10077,kyogre-primal,382,98,4300,347,484,0
10078,groudon-primal,383,50,9997,347,486,0
10079,rayquaza-mega,384,108,3920,351,488,0
10080,pikachu-rock-star,25,4,60,112,37,0
10081,pikachu-belle,25,4,60,112,38,0
10082,pikachu-pop-star,25,4,60,112,39,0
10083,pikachu-phd,25,4,60,112,40,0
10084,pikachu-libre,25,4,60,112,41,0
10085,pikachu-cosplay,25,4,60,112,36,0
10086,hoopa-unbound,720,65,4900,306,836,0
10087,camerupt-mega,323,25,3205,196,411,0
10088,lopunny-mega,428,13,283,203,535,0
10089,salamence-mega,373,18,1126,315,471,0
10090,beedrill-mega,15,14,405,223,20,0
10091,rattata-alola,19,3,38,51,26,0
10092,raticate-alola,20,7,255,145,28,0
10093,raticate-totem-alola,20,14,1050,145,29,0
10094,pikachu-original-cap,25,4,60,112,36,0
10095,pikachu-hoenn-cap,25,4,60,112,37,0
10096,pikachu-sinnoh-cap,25,4,60,112,38,0
10097,pikachu-unova-cap,25,4,60,112,39,0
10098,pikachu-kalos-cap,25,4,60,112,40,0
10099,pikachu-alola-cap,25,4,60,112,41,0
10100,raichu-alola,26,7,210,218,44,0
10101,sandshrew-alola,27,7,400,60,46,0
10102,sandslash-alola,28,12,550,158,48,0
10103,vulpix-alola,37,6,99,60,59,0
10104,ninetales-alola,38,11,199,177,61,0
10105,diglett-alola,50,2,10,53,77,0
10106,dugtrio-alola,51,7,666,149,79,0
10107,meowth-alola,52,4,42,58,81,0
10108,persian-alola,53,11,330,154,83,0
10109,geodude-alola,74,4,203,60,107,0
10110,graveler-alola,75,10,1100,137,109,0
10111,golem-alola,76,17,3160,223,111,0
10112,grimer-alola,88,7,420,65,127,0
10113,muk-alola,89,10,520,175,129,0
10114,exeggutor-alola,103,109,4156,186,147,0
10115,marowak-alola,105,10,340,149,150,0
10116,greninja-battle-bond,658,15,400,239,760,0
10117,greninja-ash,658,15,400,288,761,0
10118,zygarde-10,718,12,335,219,830,0
10119,zygarde-50,718,50,3050,270,831,0
10120,zygarde-complete,718,45,6100,319,832,0
10121,gumshoos-totem,735,14,600,146,852,0
10122,vikavolt-totem,738,26,1475,225,856,0
10123,oricorio-pom-pom,741,6,34,167,860,0
10124,oricorio-pau,741,6,34,167,861,0
10125,oricorio-sensu,741,6,34,167,862,0
10126,lycanroc-midnight,745,11,250,170,869,0
10127,wishiwashi-school,746,82,786,217,872,0
10128,lurantis-totem,754,15,580,168,882,0
10129,salazzle-totem,758,21,810,168,887,0
10130,minior-orange-meteor,774,3,400,154,904,0
10131,minior-yellow-meteor,774,3,400,154,905,0
10132,minior-green-meteor,774,3,400,154,906,0
10133,minior-blue-meteor,774,3,400,154,907,0
10134,minior-indigo-meteor,774,3,400,154,908,0
10135,minior-violet-meteor,774,3,400,154,909,0
10136,minior-red,774,3,3,175,910,0
10137,minior-orange,774,3,3,175,911,0
10138,minior-yellow,774,3,3,175,912,0
10139,minior-green,774,3,3,175,913,0
10140,minior-blue,774,3,3,175,914,0
10141,minior-indigo,774,3,3,175,915,0
10142,minior-violet,774,3,3,175,916,0
10143,mimikyu-busted,778,2,7,167,922,0
10144,mimikyu-totem-disguised,778,4,28,167,923,0
10145,mimikyu-totem-busted,778,4,28,167,924,0
10146,kommo-o-totem,784,24,2075,270,931,0
10147,magearna-original,801,10,805,270,952,0
10148,pikachu-partner-cap,25,4,60,112,42,0
10149,marowak-totem,105,17,980,149,151,0
10150,ribombee-totem,743,4,20,162,865,0
10151,rockruff-own-tempo,744,5,92,56,867,0
10152,lycanroc-dusk,745,8,250,170,870,0
10153,araquanid-totem,752,31,2175,159,879,0
10154,togedemaru-totem,777,6,130,152,920,0
10155,necrozma-dusk,800,38,4600,306,948,0
10156,necrozma-dawn,800,42,3500,306,949,0
10157,necrozma-ultra,800,75,2300,339,950,0
1 id identifier species_id height weight base_experience order is_default
2 1 bulbasaur 1 7 69 64 1 1
3 2 ivysaur 2 10 130 142 2 1
4 3 venusaur 3 20 1000 236 3 1
5 4 charmander 4 6 85 62 5 1
6 5 charmeleon 5 11 190 142 6 1
7 6 charizard 6 17 905 240 7 1
8 7 squirtle 7 5 90 63 10 1
9 8 wartortle 8 10 225 142 11 1
10 9 blastoise 9 16 855 239 12 1
11 10 caterpie 10 3 29 39 14 1
12 11 metapod 11 7 99 72 15 1
13 12 butterfree 12 11 320 178 16 1
14 13 weedle 13 3 32 39 17 1
15 14 kakuna 14 6 100 72 18 1
16 15 beedrill 15 10 295 178 19 1
17 16 pidgey 16 3 18 50 21 1
18 17 pidgeotto 17 11 300 122 22 1
19 18 pidgeot 18 15 395 216 23 1
20 19 rattata 19 3 35 51 25 1
21 20 raticate 20 7 185 145 27 1
22 21 spearow 21 3 20 52 30 1
23 22 fearow 22 12 380 155 31 1
24 23 ekans 23 20 69 58 32 1
25 24 arbok 24 35 650 157 33 1
26 25 pikachu 25 4 60 112 35 1
27 26 raichu 26 8 300 218 43 1
28 27 sandshrew 27 6 120 60 45 1
29 28 sandslash 28 10 295 158 47 1
30 29 nidoran-f 29 4 70 55 49 1
31 30 nidorina 30 8 200 128 50 1
32 31 nidoqueen 31 13 600 227 51 1
33 32 nidoran-m 32 5 90 55 52 1
34 33 nidorino 33 9 195 128 53 1
35 34 nidoking 34 14 620 227 54 1
36 35 clefairy 35 6 75 113 56 1
37 36 clefable 36 13 400 217 57 1
38 37 vulpix 37 6 99 60 58 1
39 38 ninetales 38 11 199 177 60 1
40 39 jigglypuff 39 5 55 95 63 1
41 40 wigglytuff 40 10 120 196 64 1
42 41 zubat 41 8 75 49 65 1
43 42 golbat 42 16 550 159 66 1
44 43 oddish 43 5 54 64 68 1
45 44 gloom 44 8 86 138 69 1
46 45 vileplume 45 12 186 221 70 1
47 46 paras 46 3 54 57 72 1
48 47 parasect 47 10 295 142 73 1
49 48 venonat 48 10 300 61 74 1
50 49 venomoth 49 15 125 158 75 1
51 50 diglett 50 2 8 53 76 1
52 51 dugtrio 51 7 333 149 78 1
53 52 meowth 52 4 42 58 80 1
54 53 persian 53 10 320 154 82 1
55 54 psyduck 54 8 196 64 84 1
56 55 golduck 55 17 766 175 85 1
57 56 mankey 56 5 280 61 86 1
58 57 primeape 57 10 320 159 87 1
59 58 growlithe 58 7 190 70 88 1
60 59 arcanine 59 19 1550 194 89 1
61 60 poliwag 60 6 124 60 90 1
62 61 poliwhirl 61 10 200 135 91 1
63 62 poliwrath 62 13 540 230 92 1
64 63 abra 63 9 195 62 94 1
65 64 kadabra 64 13 565 140 95 1
66 65 alakazam 65 15 480 225 96 1
67 66 machop 66 8 195 61 98 1
68 67 machoke 67 15 705 142 99 1
69 68 machamp 68 16 1300 227 100 1
70 69 bellsprout 69 7 40 60 101 1
71 70 weepinbell 70 10 64 137 102 1
72 71 victreebel 71 17 155 221 103 1
73 72 tentacool 72 9 455 67 104 1
74 73 tentacruel 73 16 550 180 105 1
75 74 geodude 74 4 200 60 106 1
76 75 graveler 75 10 1050 137 108 1
77 76 golem 76 14 3000 223 110 1
78 77 ponyta 77 10 300 82 112 1
79 78 rapidash 78 17 950 175 113 1
80 79 slowpoke 79 12 360 63 114 1
81 80 slowbro 80 16 785 172 115 1
82 81 magnemite 81 3 60 65 118 1
83 82 magneton 82 10 600 163 119 1
84 83 farfetchd 83 8 150 132 121 1
85 84 doduo 84 14 392 62 122 1
86 85 dodrio 85 18 852 165 123 1
87 86 seel 86 11 900 65 124 1
88 87 dewgong 87 17 1200 166 125 1
89 88 grimer 88 9 300 65 126 1
90 89 muk 89 12 300 175 128 1
91 90 shellder 90 3 40 61 130 1
92 91 cloyster 91 15 1325 184 131 1
93 92 gastly 92 13 1 62 132 1
94 93 haunter 93 16 1 142 133 1
95 94 gengar 94 15 405 225 134 1
96 95 onix 95 88 2100 77 136 1
97 96 drowzee 96 10 324 66 139 1
98 97 hypno 97 16 756 169 140 1
99 98 krabby 98 4 65 65 141 1
100 99 kingler 99 13 600 166 142 1
101 100 voltorb 100 5 104 66 143 1
102 101 electrode 101 12 666 172 144 1
103 102 exeggcute 102 4 25 65 145 1
104 103 exeggutor 103 20 1200 186 146 1
105 104 cubone 104 4 65 64 148 1
106 105 marowak 105 10 450 149 149 1
107 106 hitmonlee 106 15 498 159 153 1
108 107 hitmonchan 107 14 502 159 154 1
109 108 lickitung 108 12 655 77 156 1
110 109 koffing 109 6 10 68 158 1
111 110 weezing 110 12 95 172 159 1
112 111 rhyhorn 111 10 1150 69 160 1
113 112 rhydon 112 19 1200 170 161 1
114 113 chansey 113 11 346 395 164 1
115 114 tangela 114 10 350 87 166 1
116 115 kangaskhan 115 22 800 172 168 1
117 116 horsea 116 4 80 59 170 1
118 117 seadra 117 12 250 154 171 1
119 118 goldeen 118 6 150 64 173 1
120 119 seaking 119 13 390 158 174 1
121 120 staryu 120 8 345 68 175 1
122 121 starmie 121 11 800 182 176 1
123 122 mr-mime 122 13 545 161 178 1
124 123 scyther 123 15 560 100 179 1
125 124 jynx 124 14 406 159 183 1
126 125 electabuzz 125 11 300 172 185 1
127 126 magmar 126 13 445 173 188 1
128 127 pinsir 127 15 550 175 190 1
129 128 tauros 128 14 884 172 192 1
130 129 magikarp 129 9 100 40 193 1
131 130 gyarados 130 65 2350 189 194 1
132 131 lapras 131 25 2200 187 196 1
133 132 ditto 132 3 40 101 197 1
134 133 eevee 133 3 65 65 198 1
135 134 vaporeon 134 10 290 184 199 1
136 135 jolteon 135 8 245 184 200 1
137 136 flareon 136 9 250 184 201 1
138 137 porygon 137 8 365 79 207 1
139 138 omanyte 138 4 75 71 210 1
140 139 omastar 139 10 350 173 211 1
141 140 kabuto 140 5 115 71 212 1
142 141 kabutops 141 13 405 173 213 1
143 142 aerodactyl 142 18 590 180 214 1
144 143 snorlax 143 21 4600 189 217 1
145 144 articuno 144 17 554 261 218 1
146 145 zapdos 145 16 526 261 219 1
147 146 moltres 146 20 600 261 220 1
148 147 dratini 147 18 33 60 221 1
149 148 dragonair 148 40 165 147 222 1
150 149 dragonite 149 22 2100 270 223 1
151 150 mewtwo 150 20 1220 306 224 1
152 151 mew 151 4 40 270 227 1
153 152 chikorita 152 9 64 64 228 1
154 153 bayleef 153 12 158 142 229 1
155 154 meganium 154 18 1005 236 230 1
156 155 cyndaquil 155 5 79 62 231 1
157 156 quilava 156 9 190 142 232 1
158 157 typhlosion 157 17 795 240 233 1
159 158 totodile 158 6 95 63 234 1
160 159 croconaw 159 11 250 142 235 1
161 160 feraligatr 160 23 888 239 236 1
162 161 sentret 161 8 60 43 237 1
163 162 furret 162 18 325 145 238 1
164 163 hoothoot 163 7 212 52 239 1
165 164 noctowl 164 16 408 158 240 1
166 165 ledyba 165 10 108 53 241 1
167 166 ledian 166 14 356 137 242 1
168 167 spinarak 167 5 85 50 243 1
169 168 ariados 168 11 335 140 244 1
170 169 crobat 169 18 750 241 67 1
171 170 chinchou 170 5 120 66 245 1
172 171 lanturn 171 12 225 161 246 1
173 172 pichu 172 3 20 41 34 1
174 173 cleffa 173 3 30 44 55 1
175 174 igglybuff 174 3 10 42 62 1
176 175 togepi 175 3 15 49 247 1
177 176 togetic 176 6 32 142 248 1
178 177 natu 177 2 20 64 250 1
179 178 xatu 178 15 150 165 251 1
180 179 mareep 179 6 78 56 252 1
181 180 flaaffy 180 8 133 128 253 1
182 181 ampharos 181 14 615 230 254 1
183 182 bellossom 182 4 58 221 71 1
184 183 marill 183 4 85 88 257 1
185 184 azumarill 184 8 285 189 258 1
186 185 sudowoodo 185 12 380 144 260 1
187 186 politoed 186 11 339 225 93 1
188 187 hoppip 187 4 5 50 261 1
189 188 skiploom 188 6 10 119 262 1
190 189 jumpluff 189 8 30 207 263 1
191 190 aipom 190 8 115 72 264 1
192 191 sunkern 191 3 18 36 266 1
193 192 sunflora 192 8 85 149 267 1
194 193 yanma 193 12 380 78 268 1
195 194 wooper 194 4 85 42 270 1
196 195 quagsire 195 14 750 151 271 1
197 196 espeon 196 9 265 184 202 1
198 197 umbreon 197 10 270 184 203 1
199 198 murkrow 198 5 21 81 272 1
200 199 slowking 199 20 795 172 117 1
201 200 misdreavus 200 7 10 87 274 1
202 201 unown 201 5 50 118 276 1
203 202 wobbuffet 202 13 285 142 278 1
204 203 girafarig 203 15 415 159 279 1
205 204 pineco 204 6 72 58 280 1
206 205 forretress 205 12 1258 163 281 1
207 206 dunsparce 206 15 140 145 282 1
208 207 gligar 207 11 648 86 283 1
209 208 steelix 208 92 4000 179 137 1
210 209 snubbull 209 6 78 60 285 1
211 210 granbull 210 14 487 158 286 1
212 211 qwilfish 211 5 39 88 287 1
213 212 scizor 212 18 1180 175 180 1
214 213 shuckle 213 6 205 177 288 1
215 214 heracross 214 15 540 175 289 1
216 215 sneasel 215 9 280 86 291 1
217 216 teddiursa 216 6 88 66 293 1
218 217 ursaring 217 18 1258 175 294 1
219 218 slugma 218 7 350 50 295 1
220 219 magcargo 219 8 550 151 296 1
221 220 swinub 220 4 65 50 297 1
222 221 piloswine 221 11 558 158 298 1
223 222 corsola 222 6 50 144 300 1
224 223 remoraid 223 6 120 60 301 1
225 224 octillery 224 9 285 168 302 1
226 225 delibird 225 9 160 116 303 1
227 226 mantine 226 21 2200 170 305 1
228 227 skarmory 227 17 505 163 306 1
229 228 houndour 228 6 108 66 307 1
230 229 houndoom 229 14 350 175 308 1
231 230 kingdra 230 18 1520 243 172 1
232 231 phanpy 231 5 335 66 310 1
233 232 donphan 232 11 1200 175 311 1
234 233 porygon2 233 6 325 180 208 1
235 234 stantler 234 14 712 163 312 1
236 235 smeargle 235 12 580 88 313 1
237 236 tyrogue 236 7 210 42 152 1
238 237 hitmontop 237 14 480 159 155 1
239 238 smoochum 238 4 60 61 182 1
240 239 elekid 239 6 235 72 184 1
241 240 magby 240 7 214 73 187 1
242 241 miltank 241 12 755 172 314 1
243 242 blissey 242 15 468 608 165 1
244 243 raikou 243 19 1780 261 315 1
245 244 entei 244 21 1980 261 316 1
246 245 suicune 245 20 1870 261 317 1
247 246 larvitar 246 6 720 60 318 1
248 247 pupitar 247 12 1520 144 319 1
249 248 tyranitar 248 20 2020 270 320 1
250 249 lugia 249 52 2160 306 322 1
251 250 ho-oh 250 38 1990 306 323 1
252 251 celebi 251 6 50 270 324 1
253 252 treecko 252 5 50 62 325 1
254 253 grovyle 253 9 216 142 326 1
255 254 sceptile 254 17 522 239 327 1
256 255 torchic 255 4 25 62 329 1
257 256 combusken 256 9 195 142 330 1
258 257 blaziken 257 19 520 239 331 1
259 258 mudkip 258 4 76 62 333 1
260 259 marshtomp 259 7 280 142 334 1
261 260 swampert 260 15 819 241 335 1
262 261 poochyena 261 5 136 56 337 1
263 262 mightyena 262 10 370 147 338 1
264 263 zigzagoon 263 4 175 56 339 1
265 264 linoone 264 5 325 147 340 1
266 265 wurmple 265 3 36 56 341 1
267 266 silcoon 266 6 100 72 342 1
268 267 beautifly 267 10 284 178 343 1
269 268 cascoon 268 7 115 72 344 1
270 269 dustox 269 12 316 173 345 1
271 270 lotad 270 5 26 44 346 1
272 271 lombre 271 12 325 119 347 1
273 272 ludicolo 272 15 550 216 348 1
274 273 seedot 273 5 40 44 349 1
275 274 nuzleaf 274 10 280 119 350 1
276 275 shiftry 275 13 596 216 351 1
277 276 taillow 276 3 23 54 352 1
278 277 swellow 277 7 198 159 353 1
279 278 wingull 278 6 95 54 354 1
280 279 pelipper 279 12 280 154 355 1
281 280 ralts 280 4 66 40 356 1
282 281 kirlia 281 8 202 97 357 1
283 282 gardevoir 282 16 484 233 358 1
284 283 surskit 283 5 17 54 362 1
285 284 masquerain 284 8 36 159 363 1
286 285 shroomish 285 4 45 59 364 1
287 286 breloom 286 12 392 161 365 1
288 287 slakoth 287 8 240 56 366 1
289 288 vigoroth 288 14 465 154 367 1
290 289 slaking 289 20 1305 252 368 1
291 290 nincada 290 5 55 53 369 1
292 291 ninjask 291 8 120 160 370 1
293 292 shedinja 292 8 12 83 371 1
294 293 whismur 293 6 163 48 372 1
295 294 loudred 294 10 405 126 373 1
296 295 exploud 295 15 840 221 374 1
297 296 makuhita 296 10 864 47 375 1
298 297 hariyama 297 23 2538 166 376 1
299 298 azurill 298 2 20 38 256 1
300 299 nosepass 299 10 970 75 377 1
301 300 skitty 300 6 110 52 379 1
302 301 delcatty 301 11 326 140 380 1
303 302 sableye 302 5 110 133 381 1
304 303 mawile 303 6 115 133 383 1
305 304 aron 304 4 600 66 385 1
306 305 lairon 305 9 1200 151 386 1
307 306 aggron 306 21 3600 239 387 1
308 307 meditite 307 6 112 56 389 1
309 308 medicham 308 13 315 144 390 1
310 309 electrike 309 6 152 59 392 1
311 310 manectric 310 15 402 166 393 1
312 311 plusle 311 4 42 142 395 1
313 312 minun 312 4 42 142 396 1
314 313 volbeat 313 7 177 151 397 1
315 314 illumise 314 6 177 151 398 1
316 315 roselia 315 3 20 140 400 1
317 316 gulpin 316 4 103 60 402 1
318 317 swalot 317 17 800 163 403 1
319 318 carvanha 318 8 208 61 404 1
320 319 sharpedo 319 18 888 161 405 1
321 320 wailmer 320 20 1300 80 407 1
322 321 wailord 321 145 3980 175 408 1
323 322 numel 322 7 240 61 409 1
324 323 camerupt 323 19 2200 161 410 1
325 324 torkoal 324 5 804 165 412 1
326 325 spoink 325 7 306 66 413 1
327 326 grumpig 326 9 715 165 414 1
328 327 spinda 327 11 50 126 415 1
329 328 trapinch 328 7 150 58 416 1
330 329 vibrava 329 11 153 119 417 1
331 330 flygon 330 20 820 234 418 1
332 331 cacnea 331 4 513 67 419 1
333 332 cacturne 332 13 774 166 420 1
334 333 swablu 333 4 12 62 421 1
335 334 altaria 334 11 206 172 422 1
336 335 zangoose 335 13 403 160 424 1
337 336 seviper 336 27 525 160 425 1
338 337 lunatone 337 10 1680 161 426 1
339 338 solrock 338 12 1540 161 427 1
340 339 barboach 339 4 19 58 428 1
341 340 whiscash 340 9 236 164 429 1
342 341 corphish 341 6 115 62 430 1
343 342 crawdaunt 342 11 328 164 431 1
344 343 baltoy 343 5 215 60 432 1
345 344 claydol 344 15 1080 175 433 1
346 345 lileep 345 10 238 71 434 1
347 346 cradily 346 15 604 173 435 1
348 347 anorith 347 7 125 71 436 1
349 348 armaldo 348 15 682 173 437 1
350 349 feebas 349 6 74 40 438 1
351 350 milotic 350 62 1620 189 439 1
352 351 castform 351 3 8 147 440 1
353 352 kecleon 352 10 220 154 444 1
354 353 shuppet 353 6 23 59 445 1
355 354 banette 354 11 125 159 446 1
356 355 duskull 355 8 150 59 448 1
357 356 dusclops 356 16 306 159 449 1
358 357 tropius 357 20 1000 161 451 1
359 358 chimecho 358 6 10 159 453 1
360 359 absol 359 12 470 163 454 1
361 360 wynaut 360 6 140 52 277 1
362 361 snorunt 361 7 168 60 456 1
363 362 glalie 362 15 2565 168 457 1
364 363 spheal 363 8 395 58 460 1
365 364 sealeo 364 11 876 144 461 1
366 365 walrein 365 14 1506 239 462 1
367 366 clamperl 366 4 525 69 463 1
368 367 huntail 367 17 270 170 464 1
369 368 gorebyss 368 18 226 170 465 1
370 369 relicanth 369 10 234 170 466 1
371 370 luvdisc 370 6 87 116 467 1
372 371 bagon 371 6 421 60 468 1
373 372 shelgon 372 11 1105 147 469 1
374 373 salamence 373 15 1026 270 470 1
375 374 beldum 374 6 952 60 472 1
376 375 metang 375 12 2025 147 473 1
377 376 metagross 376 16 5500 270 474 1
378 377 regirock 377 17 2300 261 476 1
379 378 regice 378 18 1750 261 477 1
380 379 registeel 379 19 2050 261 478 1
381 380 latias 380 14 400 270 479 1
382 381 latios 381 20 600 270 481 1
383 382 kyogre 382 45 3520 302 483 1
384 383 groudon 383 35 9500 302 485 1
385 384 rayquaza 384 70 2065 306 487 1
386 385 jirachi 385 3 11 270 489 1
387 386 deoxys-normal 386 17 608 270 490 1
388 387 turtwig 387 4 102 64 494 1
389 388 grotle 388 11 970 142 495 1
390 389 torterra 389 22 3100 236 496 1
391 390 chimchar 390 5 62 62 497 1
392 391 monferno 391 9 220 142 498 1
393 392 infernape 392 12 550 240 499 1
394 393 piplup 393 4 52 63 500 1
395 394 prinplup 394 8 230 142 501 1
396 395 empoleon 395 17 845 239 502 1
397 396 starly 396 3 20 49 503 1
398 397 staravia 397 6 155 119 504 1
399 398 staraptor 398 12 249 218 505 1
400 399 bidoof 399 5 200 50 506 1
401 400 bibarel 400 10 315 144 507 1
402 401 kricketot 401 3 22 39 508 1
403 402 kricketune 402 10 255 134 509 1
404 403 shinx 403 5 95 53 510 1
405 404 luxio 404 9 305 127 511 1
406 405 luxray 405 14 420 235 512 1
407 406 budew 406 2 12 56 399 1
408 407 roserade 407 9 145 232 401 1
409 408 cranidos 408 9 315 70 513 1
410 409 rampardos 409 16 1025 173 514 1
411 410 shieldon 410 5 570 70 515 1
412 411 bastiodon 411 13 1495 173 516 1
413 412 burmy 412 2 34 45 517 1
414 413 wormadam-plant 413 5 65 148 518 1
415 414 mothim 414 9 233 148 521 1
416 415 combee 415 3 55 49 522 1
417 416 vespiquen 416 12 385 166 523 1
418 417 pachirisu 417 4 39 142 524 1
419 418 buizel 418 7 295 66 525 1
420 419 floatzel 419 11 335 173 526 1
421 420 cherubi 420 4 33 55 527 1
422 421 cherrim 421 5 93 158 528 1
423 422 shellos 422 3 63 65 529 1
424 423 gastrodon 423 9 299 166 530 1
425 424 ambipom 424 12 203 169 265 1
426 425 drifloon 425 4 12 70 531 1
427 426 drifblim 426 12 150 174 532 1
428 427 buneary 427 4 55 70 533 1
429 428 lopunny 428 12 333 168 534 1
430 429 mismagius 429 9 44 173 275 1
431 430 honchkrow 430 9 273 177 273 1
432 431 glameow 431 5 39 62 536 1
433 432 purugly 432 10 438 158 537 1
434 433 chingling 433 2 6 57 452 1
435 434 stunky 434 4 192 66 538 1
436 435 skuntank 435 10 380 168 539 1
437 436 bronzor 436 5 605 60 540 1
438 437 bronzong 437 13 1870 175 541 1
439 438 bonsly 438 5 150 58 259 1
440 439 mime-jr 439 6 130 62 177 1
441 440 happiny 440 6 244 110 163 1
442 441 chatot 441 5 19 144 542 1
443 442 spiritomb 442 10 1080 170 543 1
444 443 gible 443 7 205 60 544 1
445 444 gabite 444 14 560 144 545 1
446 445 garchomp 445 19 950 270 546 1
447 446 munchlax 446 6 1050 78 216 1
448 447 riolu 447 7 202 57 548 1
449 448 lucario 448 12 540 184 549 1
450 449 hippopotas 449 8 495 66 551 1
451 450 hippowdon 450 20 3000 184 552 1
452 451 skorupi 451 8 120 66 553 1
453 452 drapion 452 13 615 175 554 1
454 453 croagunk 453 7 230 60 555 1
455 454 toxicroak 454 13 444 172 556 1
456 455 carnivine 455 14 270 159 557 1
457 456 finneon 456 4 70 66 558 1
458 457 lumineon 457 12 240 161 559 1
459 458 mantyke 458 10 650 69 304 1
460 459 snover 459 10 505 67 560 1
461 460 abomasnow 460 22 1355 173 561 1
462 461 weavile 461 11 340 179 292 1
463 462 magnezone 462 12 1800 241 120 1
464 463 lickilicky 463 17 1400 180 157 1
465 464 rhyperior 464 24 2828 241 162 1
466 465 tangrowth 465 20 1286 187 167 1
467 466 electivire 466 18 1386 243 186 1
468 467 magmortar 467 16 680 243 189 1
469 468 togekiss 468 15 380 245 249 1
470 469 yanmega 469 19 515 180 269 1
471 470 leafeon 470 10 255 184 204 1
472 471 glaceon 471 8 259 184 205 1
473 472 gliscor 472 20 425 179 284 1
474 473 mamoswine 473 25 2910 239 299 1
475 474 porygon-z 474 9 340 241 209 1
476 475 gallade 475 16 520 233 360 1
477 476 probopass 476 14 3400 184 378 1
478 477 dusknoir 477 22 1066 236 450 1
479 478 froslass 478 13 266 168 459 1
480 479 rotom 479 3 3 154 563 1
481 480 uxie 480 3 3 261 569 1
482 481 mesprit 481 3 3 261 570 1
483 482 azelf 482 3 3 261 571 1
484 483 dialga 483 54 6830 306 572 1
485 484 palkia 484 42 3360 306 573 1
486 485 heatran 485 17 4300 270 574 1
487 486 regigigas 486 37 4200 302 575 1
488 487 giratina-altered 487 45 7500 306 576 1
489 488 cresselia 488 15 856 270 578 1
490 489 phione 489 4 31 216 579 1
491 490 manaphy 490 3 14 270 580 1
492 491 darkrai 491 15 505 270 581 1
493 492 shaymin-land 492 2 21 270 582 1
494 493 arceus 493 32 3200 324 584 1
495 494 victini 494 4 40 270 585 1
496 495 snivy 495 6 81 62 586 1
497 496 servine 496 8 160 145 587 1
498 497 serperior 497 33 630 238 588 1
499 498 tepig 498 5 99 62 589 1
500 499 pignite 499 10 555 146 590 1
501 500 emboar 500 16 1500 238 591 1
502 501 oshawott 501 5 59 62 592 1
503 502 dewott 502 8 245 145 593 1
504 503 samurott 503 15 946 238 594 1
505 504 patrat 504 5 116 51 595 1
506 505 watchog 505 11 270 147 596 1
507 506 lillipup 506 4 41 55 597 1
508 507 herdier 507 9 147 130 598 1
509 508 stoutland 508 12 610 225 599 1
510 509 purrloin 509 4 101 56 600 1
511 510 liepard 510 11 375 156 601 1
512 511 pansage 511 6 105 63 602 1
513 512 simisage 512 11 305 174 603 1
514 513 pansear 513 6 110 63 604 1
515 514 simisear 514 10 280 174 605 1
516 515 panpour 515 6 135 63 606 1
517 516 simipour 516 10 290 174 607 1
518 517 munna 517 6 233 58 608 1
519 518 musharna 518 11 605 170 609 1
520 519 pidove 519 3 21 53 610 1
521 520 tranquill 520 6 150 125 611 1
522 521 unfezant 521 12 290 220 612 1
523 522 blitzle 522 8 298 59 613 1
524 523 zebstrika 523 16 795 174 614 1
525 524 roggenrola 524 4 180 56 615 1
526 525 boldore 525 9 1020 137 616 1
527 526 gigalith 526 17 2600 232 617 1
528 527 woobat 527 4 21 65 618 1
529 528 swoobat 528 9 105 149 619 1
530 529 drilbur 529 3 85 66 620 1
531 530 excadrill 530 7 404 178 621 1
532 531 audino 531 11 310 390 622 1
533 532 timburr 532 6 125 61 624 1
534 533 gurdurr 533 12 400 142 625 1
535 534 conkeldurr 534 14 870 227 626 1
536 535 tympole 535 5 45 59 627 1
537 536 palpitoad 536 8 170 134 628 1
538 537 seismitoad 537 15 620 229 629 1
539 538 throh 538 13 555 163 630 1
540 539 sawk 539 14 510 163 631 1
541 540 sewaddle 540 3 25 62 632 1
542 541 swadloon 541 5 73 133 633 1
543 542 leavanny 542 12 205 225 634 1
544 543 venipede 543 4 53 52 635 1
545 544 whirlipede 544 12 585 126 636 1
546 545 scolipede 545 25 2005 218 637 1
547 546 cottonee 546 3 6 56 638 1
548 547 whimsicott 547 7 66 168 639 1
549 548 petilil 548 5 66 56 640 1
550 549 lilligant 549 11 163 168 641 1
551 550 basculin-red-striped 550 10 180 161 642 1
552 551 sandile 551 7 152 58 644 1
553 552 krokorok 552 10 334 123 645 1
554 553 krookodile 553 15 963 234 646 1
555 554 darumaka 554 6 375 63 647 1
556 555 darmanitan-standard 555 13 929 168 648 1
557 556 maractus 556 10 280 161 650 1
558 557 dwebble 557 3 145 65 651 1
559 558 crustle 558 14 2000 170 652 1
560 559 scraggy 559 6 118 70 653 1
561 560 scrafty 560 11 300 171 654 1
562 561 sigilyph 561 14 140 172 655 1
563 562 yamask 562 5 15 61 656 1
564 563 cofagrigus 563 17 765 169 657 1
565 564 tirtouga 564 7 165 71 658 1
566 565 carracosta 565 12 810 173 659 1
567 566 archen 566 5 95 71 660 1
568 567 archeops 567 14 320 177 661 1
569 568 trubbish 568 6 310 66 662 1
570 569 garbodor 569 19 1073 166 663 1
571 570 zorua 570 7 125 66 664 1
572 571 zoroark 571 16 811 179 665 1
573 572 minccino 572 4 58 60 666 1
574 573 cinccino 573 5 75 165 667 1
575 574 gothita 574 4 58 58 668 1
576 575 gothorita 575 7 180 137 669 1
577 576 gothitelle 576 15 440 221 670 1
578 577 solosis 577 3 10 58 671 1
579 578 duosion 578 6 80 130 672 1
580 579 reuniclus 579 10 201 221 673 1
581 580 ducklett 580 5 55 61 674 1
582 581 swanna 581 13 242 166 675 1
583 582 vanillite 582 4 57 61 676 1
584 583 vanillish 583 11 410 138 677 1
585 584 vanilluxe 584 13 575 241 678 1
586 585 deerling 585 6 195 67 679 1
587 586 sawsbuck 586 19 925 166 680 1
588 587 emolga 587 4 50 150 681 1
589 588 karrablast 588 5 59 63 682 1
590 589 escavalier 589 10 330 173 683 1
591 590 foongus 590 2 10 59 684 1
592 591 amoonguss 591 6 105 162 685 1
593 592 frillish 592 12 330 67 686 1
594 593 jellicent 593 22 1350 168 687 1
595 594 alomomola 594 12 316 165 688 1
596 595 joltik 595 1 6 64 689 1
597 596 galvantula 596 8 143 165 690 1
598 597 ferroseed 597 6 188 61 691 1
599 598 ferrothorn 598 10 1100 171 692 1
600 599 klink 599 3 210 60 693 1
601 600 klang 600 6 510 154 694 1
602 601 klinklang 601 6 810 234 695 1
603 602 tynamo 602 2 3 55 696 1
604 603 eelektrik 603 12 220 142 697 1
605 604 eelektross 604 21 805 232 698 1
606 605 elgyem 605 5 90 67 699 1
607 606 beheeyem 606 10 345 170 700 1
608 607 litwick 607 3 31 55 701 1
609 608 lampent 608 6 130 130 702 1
610 609 chandelure 609 10 343 234 703 1
611 610 axew 610 6 180 64 704 1
612 611 fraxure 611 10 360 144 705 1
613 612 haxorus 612 18 1055 243 706 1
614 613 cubchoo 613 5 85 61 707 1
615 614 beartic 614 26 2600 177 708 1
616 615 cryogonal 615 11 1480 180 709 1
617 616 shelmet 616 4 77 61 710 1
618 617 accelgor 617 8 253 173 711 1
619 618 stunfisk 618 7 110 165 712 1
620 619 mienfoo 619 9 200 70 713 1
621 620 mienshao 620 14 355 179 714 1
622 621 druddigon 621 16 1390 170 715 1
623 622 golett 622 10 920 61 716 1
624 623 golurk 623 28 3300 169 717 1
625 624 pawniard 624 5 102 68 718 1
626 625 bisharp 625 16 700 172 719 1
627 626 bouffalant 626 16 946 172 720 1
628 627 rufflet 627 5 105 70 721 1
629 628 braviary 628 15 410 179 722 1
630 629 vullaby 629 5 90 74 723 1
631 630 mandibuzz 630 12 395 179 724 1
632 631 heatmor 631 14 580 169 725 1
633 632 durant 632 3 330 169 726 1
634 633 deino 633 8 173 60 727 1
635 634 zweilous 634 14 500 147 728 1
636 635 hydreigon 635 18 1600 270 729 1
637 636 larvesta 636 11 288 72 730 1
638 637 volcarona 637 16 460 248 731 1
639 638 cobalion 638 21 2500 261 732 1
640 639 terrakion 639 19 2600 261 733 1
641 640 virizion 640 20 2000 261 734 1
642 641 tornadus-incarnate 641 15 630 261 735 1
643 642 thundurus-incarnate 642 15 610 261 737 1
644 643 reshiram 643 32 3300 306 739 1
645 644 zekrom 644 29 3450 306 740 1
646 645 landorus-incarnate 645 15 680 270 741 1
647 646 kyurem 646 30 3250 297 743 1
648 647 keldeo-ordinary 647 14 485 261 746 1
649 648 meloetta-aria 648 6 65 270 748 1
650 649 genesect 649 15 825 270 750 1
651 650 chespin 650 4 90 63 751 1
652 651 quilladin 651 7 290 142 752 1
653 652 chesnaught 652 16 900 239 753 1
654 653 fennekin 653 4 94 61 754 1
655 654 braixen 654 10 145 143 755 1
656 655 delphox 655 15 390 240 756 1
657 656 froakie 656 3 70 63 757 1
658 657 frogadier 657 6 109 142 758 1
659 658 greninja 658 15 400 239 759 1
660 659 bunnelby 659 4 50 47 762 1
661 660 diggersby 660 10 424 148 763 1
662 661 fletchling 661 3 17 56 764 1
663 662 fletchinder 662 7 160 134 765 1
664 663 talonflame 663 12 245 175 766 1
665 664 scatterbug 664 3 25 40 767 1
666 665 spewpa 665 3 84 75 768 1
667 666 vivillon 666 12 170 185 769 1
668 667 litleo 667 6 135 74 770 1
669 668 pyroar 668 15 815 177 771 1
670 669 flabebe 669 1 1 61 772 1
671 670 floette 670 2 9 130 773 1
672 671 florges 671 11 100 248 775 1
673 672 skiddo 672 9 310 70 776 1
674 673 gogoat 673 17 910 186 777 1
675 674 pancham 674 6 80 70 778 1
676 675 pangoro 675 21 1360 173 779 1
677 676 furfrou 676 12 280 165 780 1
678 677 espurr 677 3 35 71 781 1
679 678 meowstic-male 678 6 85 163 782 1
680 679 honedge 679 8 20 65 784 1
681 680 doublade 680 8 45 157 785 1
682 681 aegislash-shield 681 17 530 234 786 1
683 682 spritzee 682 2 5 68 788 1
684 683 aromatisse 683 8 155 162 789 1
685 684 swirlix 684 4 35 68 790 1
686 685 slurpuff 685 8 50 168 791 1
687 686 inkay 686 4 35 58 792 1
688 687 malamar 687 15 470 169 793 1
689 688 binacle 688 5 310 61 794 1
690 689 barbaracle 689 13 960 175 795 1
691 690 skrelp 690 5 73 64 796 1
692 691 dragalge 691 18 815 173 797 1
693 692 clauncher 692 5 83 66 798 1
694 693 clawitzer 693 13 353 100 799 1
695 694 helioptile 694 5 60 58 800 1
696 695 heliolisk 695 10 210 168 801 1
697 696 tyrunt 696 8 260 72 802 1
698 697 tyrantrum 697 25 2700 182 803 1
699 698 amaura 698 13 252 72 804 1
700 699 aurorus 699 27 2250 104 805 1
701 700 sylveon 700 10 235 184 206 1
702 701 hawlucha 701 8 215 175 806 1
703 702 dedenne 702 2 22 151 807 1
704 703 carbink 703 3 57 100 808 1
705 704 goomy 704 3 28 60 809 1
706 705 sliggoo 705 8 175 158 810 1
707 706 goodra 706 20 1505 270 811 1
708 707 klefki 707 2 30 165 812 1
709 708 phantump 708 4 70 62 813 1
710 709 trevenant 709 15 710 166 814 1
711 710 pumpkaboo-average 710 4 50 67 815 1
712 711 gourgeist-average 711 9 125 173 819 1
713 712 bergmite 712 10 995 61 823 1
714 713 avalugg 713 20 5050 180 824 1
715 714 noibat 714 5 80 49 825 1
716 715 noivern 715 15 850 187 826 1
717 716 xerneas 716 30 2150 306 827 1
718 717 yveltal 717 58 2030 306 828 1
719 718 zygarde 718 50 3050 270 829 1
720 719 diancie 719 7 88 270 833 1
721 720 hoopa 720 5 90 270 835 1
722 721 volcanion 721 17 1950 270 837 1
723 722 rowlet 722 3 15 64 838 1
724 723 dartrix 723 7 160 147 839 1
725 724 decidueye 724 16 366 239 840 1
726 725 litten 725 4 43 64 841 1
727 726 torracat 726 7 250 147 842 1
728 727 incineroar 727 18 830 239 843 1
729 728 popplio 728 4 75 64 844 1
730 729 brionne 729 6 175 147 845 1
731 730 primarina 730 18 440 239 846 1
732 731 pikipek 731 3 12 53 847 1
733 732 trumbeak 732 6 148 124 848 1
734 733 toucannon 733 11 260 218 849 1
735 734 yungoos 734 4 60 51 850 1
736 735 gumshoos 735 7 142 146 851 1
737 736 grubbin 736 4 44 60 853 1
738 737 charjabug 737 5 105 140 854 1
739 738 vikavolt 738 15 450 225 855 1
740 739 crabrawler 739 6 70 68 857 1
741 740 crabominable 740 17 1800 167 858 1
742 741 oricorio-baile 741 6 34 167 859 1
743 742 cutiefly 742 1 2 61 863 1
744 743 ribombee 743 2 5 162 864 1
745 744 rockruff 744 5 92 56 866 1
746 745 lycanroc-midday 745 8 250 170 868 1
747 746 wishiwashi-solo 746 2 3 61 871 1
748 747 mareanie 747 4 80 61 873 1
749 748 toxapex 748 7 145 173 874 1
750 749 mudbray 749 10 1100 77 875 1
751 750 mudsdale 750 25 9200 175 876 1
752 751 dewpider 751 3 40 54 877 1
753 752 araquanid 752 18 820 159 878 1
754 753 fomantis 753 3 15 50 880 1
755 754 lurantis 754 9 185 168 881 1
756 755 morelull 755 2 15 57 883 1
757 756 shiinotic 756 10 115 142 884 1
758 757 salandit 757 6 48 64 885 1
759 758 salazzle 758 12 222 168 886 1
760 759 stufful 759 5 68 68 888 1
761 760 bewear 760 21 1350 175 889 1
762 761 bounsweet 761 3 32 42 890 1
763 762 steenee 762 7 82 102 891 1
764 763 tsareena 763 12 214 230 892 1
765 764 comfey 764 1 3 170 893 1
766 765 oranguru 765 15 760 172 894 1
767 766 passimian 766 20 828 172 895 1
768 767 wimpod 767 5 120 46 896 1
769 768 golisopod 768 20 1080 186 897 1
770 769 sandygast 769 5 700 64 898 1
771 770 palossand 770 13 2500 168 899 1
772 771 pyukumuku 771 3 12 144 900 1
773 772 type-null 772 19 1205 107 901 1
774 773 silvally 773 23 1005 257 902 1
775 774 minior-red-meteor 774 3 400 154 903 1
776 775 komala 775 4 199 168 917 1
777 776 turtonator 776 20 2120 170 918 1
778 777 togedemaru 777 3 33 152 919 1
779 778 mimikyu-disguised 778 2 7 167 921 1
780 779 bruxish 779 9 190 166 925 1
781 780 drampa 780 30 1850 170 926 1
782 781 dhelmise 781 39 2100 181 927 1
783 782 jangmo-o 782 6 297 60 928 1
784 783 hakamo-o 783 12 470 147 929 1
785 784 kommo-o 784 16 782 270 930 1
786 785 tapu-koko 785 18 205 257 932 1
787 786 tapu-lele 786 12 186 257 933 1
788 787 tapu-bulu 787 19 455 257 934 1
789 788 tapu-fini 788 13 212 257 935 1
790 789 cosmog 789 2 1 40 936 1
791 790 cosmoem 790 1 9999 140 937 1
792 791 solgaleo 791 34 2300 306 938 1
793 792 lunala 792 40 1200 306 939 1
794 793 nihilego 793 12 555 257 940 1
795 794 buzzwole 794 24 3336 257 941 1
796 795 pheromosa 795 18 250 257 942 1
797 796 xurkitree 796 38 1000 257 943 1
798 797 celesteela 797 92 9999 257 944 1
799 798 kartana 798 3 1 257 945 1
800 799 guzzlord 799 55 8880 257 946 1
801 800 necrozma 800 24 2300 270 947 1
802 801 magearna 801 10 805 270 951 1
803 802 marshadow 802 7 222 270 953 1
804 803 poipole 803 6 18 189 954 1
805 804 naganadel 804 36 1500 243 955 1
806 805 stakataka 805 55 8200 257 956 1
807 806 blacephalon 806 18 130 257 957 1
808 807 zeraora 807 15 445 270 958 1
809 10001 deoxys-attack 386 17 608 270 491 0
810 10002 deoxys-defense 386 17 608 270 492 0
811 10003 deoxys-speed 386 17 608 270 493 0
812 10004 wormadam-sandy 413 5 65 148 519 0
813 10005 wormadam-trash 413 5 65 148 520 0
814 10006 shaymin-sky 492 4 52 270 583 0
815 10007 giratina-origin 487 69 6500 306 577 0
816 10008 rotom-heat 479 3 3 182 564 0
817 10009 rotom-wash 479 3 3 182 565 0
818 10010 rotom-frost 479 3 3 182 566 0
819 10011 rotom-fan 479 3 3 182 567 0
820 10012 rotom-mow 479 3 3 182 568 0
821 10013 castform-sunny 351 3 8 147 441 0
822 10014 castform-rainy 351 3 8 147 442 0
823 10015 castform-snowy 351 3 8 147 443 0
824 10016 basculin-blue-striped 550 10 180 161 643 0
825 10017 darmanitan-zen 555 13 929 189 649 0
826 10018 meloetta-pirouette 648 6 65 270 749 0
827 10019 tornadus-therian 641 14 630 261 736 0
828 10020 thundurus-therian 642 30 610 261 738 0
829 10021 landorus-therian 645 13 680 270 742 0
830 10022 kyurem-black 646 33 3250 315 745 0
831 10023 kyurem-white 646 36 3250 315 744 0
832 10024 keldeo-resolute 647 14 485 261 747 0
833 10025 meowstic-female 678 6 85 163 783 0
834 10026 aegislash-blade 681 17 530 234 787 0
835 10027 pumpkaboo-small 710 3 35 67 816 0
836 10028 pumpkaboo-large 710 5 75 67 817 0
837 10029 pumpkaboo-super 710 8 150 67 818 0
838 10030 gourgeist-small 711 7 95 173 820 0
839 10031 gourgeist-large 711 11 140 173 821 0
840 10032 gourgeist-super 711 17 390 173 822 0
841 10033 venusaur-mega 3 24 1555 281 4 0
842 10034 charizard-mega-x 6 17 1105 285 8 0
843 10035 charizard-mega-y 6 17 1005 285 9 0
844 10036 blastoise-mega 9 16 1011 284 13 0
845 10037 alakazam-mega 65 12 480 270 97 0
846 10038 gengar-mega 94 14 405 270 135 0
847 10039 kangaskhan-mega 115 22 1000 207 169 0
848 10040 pinsir-mega 127 17 590 210 191 0
849 10041 gyarados-mega 130 65 3050 224 195 0
850 10042 aerodactyl-mega 142 21 790 215 215 0
851 10043 mewtwo-mega-x 150 23 1270 351 225 0
852 10044 mewtwo-mega-y 150 15 330 351 226 0
853 10045 ampharos-mega 181 14 615 275 255 0
854 10046 scizor-mega 212 20 1250 210 181 0
855 10047 heracross-mega 214 17 625 210 290 0
856 10048 houndoom-mega 229 19 495 210 309 0
857 10049 tyranitar-mega 248 25 2550 315 321 0
858 10050 blaziken-mega 257 19 520 284 332 0
859 10051 gardevoir-mega 282 16 484 278 359 0
860 10052 mawile-mega 303 10 235 168 384 0
861 10053 aggron-mega 306 22 3950 284 388 0
862 10054 medicham-mega 308 13 315 179 391 0
863 10055 manectric-mega 310 18 440 201 394 0
864 10056 banette-mega 354 12 130 194 447 0
865 10057 absol-mega 359 12 490 198 455 0
866 10058 garchomp-mega 445 19 950 315 547 0
867 10059 lucario-mega 448 13 575 219 550 0
868 10060 abomasnow-mega 460 27 1850 208 562 0
869 10061 floette-eternal 670 2 9 243 774 0
870 10062 latias-mega 380 18 520 315 480 0
871 10063 latios-mega 381 23 700 315 482 0
872 10064 swampert-mega 260 19 1020 286 336 0
873 10065 sceptile-mega 254 19 552 284 328 0
874 10066 sableye-mega 302 5 1610 168 382 0
875 10067 altaria-mega 334 15 206 207 423 0
876 10068 gallade-mega 475 16 564 278 361 0
877 10069 audino-mega 531 15 320 425 623 0
878 10070 sharpedo-mega 319 25 1303 196 406 0
879 10071 slowbro-mega 80 20 1200 207 116 0
880 10072 steelix-mega 208 105 7400 214 138 0
881 10073 pidgeot-mega 18 22 505 261 24 0
882 10074 glalie-mega 362 21 3502 203 458 0
883 10075 diancie-mega 719 11 278 315 834 0
884 10076 metagross-mega 376 25 9429 315 475 0
885 10077 kyogre-primal 382 98 4300 347 484 0
886 10078 groudon-primal 383 50 9997 347 486 0
887 10079 rayquaza-mega 384 108 3920 351 488 0
888 10080 pikachu-rock-star 25 4 60 112 37 0
889 10081 pikachu-belle 25 4 60 112 38 0
890 10082 pikachu-pop-star 25 4 60 112 39 0
891 10083 pikachu-phd 25 4 60 112 40 0
892 10084 pikachu-libre 25 4 60 112 41 0
893 10085 pikachu-cosplay 25 4 60 112 36 0
894 10086 hoopa-unbound 720 65 4900 306 836 0
895 10087 camerupt-mega 323 25 3205 196 411 0
896 10088 lopunny-mega 428 13 283 203 535 0
897 10089 salamence-mega 373 18 1126 315 471 0
898 10090 beedrill-mega 15 14 405 223 20 0
899 10091 rattata-alola 19 3 38 51 26 0
900 10092 raticate-alola 20 7 255 145 28 0
901 10093 raticate-totem-alola 20 14 1050 145 29 0
902 10094 pikachu-original-cap 25 4 60 112 36 0
903 10095 pikachu-hoenn-cap 25 4 60 112 37 0
904 10096 pikachu-sinnoh-cap 25 4 60 112 38 0
905 10097 pikachu-unova-cap 25 4 60 112 39 0
906 10098 pikachu-kalos-cap 25 4 60 112 40 0
907 10099 pikachu-alola-cap 25 4 60 112 41 0
908 10100 raichu-alola 26 7 210 218 44 0
909 10101 sandshrew-alola 27 7 400 60 46 0
910 10102 sandslash-alola 28 12 550 158 48 0
911 10103 vulpix-alola 37 6 99 60 59 0
912 10104 ninetales-alola 38 11 199 177 61 0
913 10105 diglett-alola 50 2 10 53 77 0
914 10106 dugtrio-alola 51 7 666 149 79 0
915 10107 meowth-alola 52 4 42 58 81 0
916 10108 persian-alola 53 11 330 154 83 0
917 10109 geodude-alola 74 4 203 60 107 0
918 10110 graveler-alola 75 10 1100 137 109 0
919 10111 golem-alola 76 17 3160 223 111 0
920 10112 grimer-alola 88 7 420 65 127 0
921 10113 muk-alola 89 10 520 175 129 0
922 10114 exeggutor-alola 103 109 4156 186 147 0
923 10115 marowak-alola 105 10 340 149 150 0
924 10116 greninja-battle-bond 658 15 400 239 760 0
925 10117 greninja-ash 658 15 400 288 761 0
926 10118 zygarde-10 718 12 335 219 830 0
927 10119 zygarde-50 718 50 3050 270 831 0
928 10120 zygarde-complete 718 45 6100 319 832 0
929 10121 gumshoos-totem 735 14 600 146 852 0
930 10122 vikavolt-totem 738 26 1475 225 856 0
931 10123 oricorio-pom-pom 741 6 34 167 860 0
932 10124 oricorio-pau 741 6 34 167 861 0
933 10125 oricorio-sensu 741 6 34 167 862 0
934 10126 lycanroc-midnight 745 11 250 170 869 0
935 10127 wishiwashi-school 746 82 786 217 872 0
936 10128 lurantis-totem 754 15 580 168 882 0
937 10129 salazzle-totem 758 21 810 168 887 0
938 10130 minior-orange-meteor 774 3 400 154 904 0
939 10131 minior-yellow-meteor 774 3 400 154 905 0
940 10132 minior-green-meteor 774 3 400 154 906 0
941 10133 minior-blue-meteor 774 3 400 154 907 0
942 10134 minior-indigo-meteor 774 3 400 154 908 0
943 10135 minior-violet-meteor 774 3 400 154 909 0
944 10136 minior-red 774 3 3 175 910 0
945 10137 minior-orange 774 3 3 175 911 0
946 10138 minior-yellow 774 3 3 175 912 0
947 10139 minior-green 774 3 3 175 913 0
948 10140 minior-blue 774 3 3 175 914 0
949 10141 minior-indigo 774 3 3 175 915 0
950 10142 minior-violet 774 3 3 175 916 0
951 10143 mimikyu-busted 778 2 7 167 922 0
952 10144 mimikyu-totem-disguised 778 4 28 167 923 0
953 10145 mimikyu-totem-busted 778 4 28 167 924 0
954 10146 kommo-o-totem 784 24 2075 270 931 0
955 10147 magearna-original 801 10 805 270 952 0
956 10148 pikachu-partner-cap 25 4 60 112 42 0
957 10149 marowak-totem 105 17 980 149 151 0
958 10150 ribombee-totem 743 4 20 162 865 0
959 10151 rockruff-own-tempo 744 5 92 56 867 0
960 10152 lycanroc-dusk 745 8 250 170 870 0
961 10153 araquanid-totem 752 31 2175 159 879 0
962 10154 togedemaru-totem 777 6 130 152 920 0
963 10155 necrozma-dusk 800 38 4600 306 948 0
964 10156 necrozma-dawn 800 42 3500 306 949 0
965 10157 necrozma-ultra 800 75 2300 339 950 0
+284
View File
@@ -0,0 +1,284 @@
fname,prediction,true_val
abra/107-2189546675.jpeg,aipom,abra
abra/108-2236583756.png,aipom,abra
abra/139-6713074833.png,aipom,abra
abra/149-2288996320.jpeg,aipom,abra
abra/16-9549054379.jpeg,aipom,abra
abra/172-3468813760.jpg,alakazam,abra
abra/183-5524447342.png,aipom,abra
abra/2-9970155874.png,azumarill,abra
abra/20-5843023427.jpeg,aipom,abra
abra/217-2397279042.jpg,aipom,abra
abra/244-2785523395.jpg,aipom,abra
abra/250-2589825010.jpg,aipom,abra
abra/314-9629981367.png,azumarill,abra
abra/362-2597183825.png,aipom,abra
abra/380-8413644465.jpg,aipom,abra
abra/418-1049732812.jpg,abra,abra
abra/423-6652374003.png,aipom,abra
abra/433-9674741044.jpg,aipom,abra
abra/434-9568550288.jpeg,aipom,abra
abra/51-7977303910.jpeg,aipom,abra
abra/54-2563836737.jpg,aipom,abra
abra/6-5767544522.jpg,aipom,abra
abra/62-8863884543.jpeg,aipom,abra
abra/87-6366265139.png,alakazam,abra
aerodactyl/465-3210824721.jpeg,alakazam,aerodactyl
aerodactyl/468-2126095359.png,aipom,aerodactyl
aerodactyl/470-2346420859.png,alakazam,aerodactyl
aerodactyl/478-2321497126.png,alakazam,aerodactyl
aerodactyl/488-6908267746.jpeg,alakazam,aerodactyl
aerodactyl/489-9697776749.jpeg,alakazam,aerodactyl
aerodactyl/495-3053133796.jpeg,alakazam,aerodactyl
aerodactyl/498-7989859628.jpeg,alakazam,aerodactyl
aerodactyl/499-5281063449.png,azumarill,aerodactyl
aerodactyl/500-2934377768.png,abra,aerodactyl
aerodactyl/504-8958678554.jpeg,alakazam,aerodactyl
aerodactyl/508-2980739160.jpeg,alakazam,aerodactyl
aerodactyl/515-1440739515.png,alakazam,aerodactyl
aerodactyl/516-8662970679.png,alakazam,aerodactyl
aerodactyl/519-2951716034.png,alakazam,aerodactyl
aerodactyl/547-4122880001.jpeg,alakazam,aerodactyl
aerodactyl/574-5504581237.jpeg,alakazam,aerodactyl
aerodactyl/575-1048779540.jpeg,alakazam,aerodactyl
aerodactyl/589-2902969727.jpeg,aipom,aerodactyl
aerodactyl/606-5806792604.png,aipom,aerodactyl
aerodactyl/608-5131335196.jpeg,alakazam,aerodactyl
aerodactyl/618-4342458124.jpeg,alakazam,aerodactyl
aerodactyl/621-5953319813.jpeg,ampharos,aerodactyl
aerodactyl/628-5720163980.jpeg,ampharos,aerodactyl
aerodactyl/629-3918397835.png,ampharos,aerodactyl
aerodactyl/634-2418332985.jpeg,ampharos,aerodactyl
aerodactyl/648-3316677096.png,ampharos,aerodactyl
aerodactyl/659-1268922181.jpeg,aipom,aerodactyl
aerodactyl/675-9195000543.jpeg,ampharos,aerodactyl
aerodactyl/676-8835461071.jpeg,ampharos,aerodactyl
aerodactyl/685-5361661497.png,azumarill,aerodactyl
aerodactyl/693-5527271760.jpeg,aipom,aerodactyl
aerodactyl/foo12.jpeg.jpeg.jpeg.jpeg,ampharos,aerodactyl
aipom/721-4589020992.png,aipom,aipom
aipom/743-1740865407.jpeg,ampharos,aipom
aipom/753-3615597532.png,ampharos,aipom
aipom/757-5646621475.png,ampharos,aipom
aipom/763-4520430521.png,ampharos,aipom
aipom/765-3141131859.jpeg,ampharos,aipom
aipom/786-6217268769.jpeg,ampharos,aipom
aipom/813-8019022990.jpeg,aipom,aipom
aipom/834-9307489115.jpeg,aipom,aipom
aipom/837-8849897302.jpeg,arbok,aipom
aipom/844-7749073684.png,ampharos,aipom
aipom/846-4755368689.jpeg,arbok,aipom
aipom/848-8115628416.jpeg,arbok,aipom
aipom/849-9051869514.jpeg,arbok,aipom
aipom/853-2833716157.png,arbok,aipom
aipom/856-7224095754.jpeg,arbok,aipom
aipom/865-5866468150.jpeg,aipom,aipom
aipom/875-4980974776.jpeg,aipom,aipom
aipom/894-2612878986.jpeg,ampharos,aipom
aipom/908-8474517286.png,arbok,aipom
aipom/910-3190747727.jpeg,arbok,aipom
aipom/912-6165380912.jpeg,aipom,aipom
aipom/913-8324389664.png,aipom,aipom
aipom/917-8367171558.jpeg,aipom,aipom
aipom/foo11.jpeg.jpeg,arbok,aipom
aipom/foo18.jpeg,aipom,aipom
alakazam/1000-7061962328.jpeg,arbok,alakazam
alakazam/1031-9151272720.jpeg,arbok,alakazam
alakazam/1035-7937090530.jpeg,aipom,alakazam
alakazam/1056-5849835340.jpeg,arbok,alakazam
alakazam/1062-8745297386.jpeg,arbok,alakazam
alakazam/1076-8570605605.jpeg,arbok,alakazam
alakazam/1077-4846293778.jpeg,aipom,alakazam
alakazam/1099-1620808408.jpeg,azumarill,alakazam
alakazam/1112-7078746680.png,arbok,alakazam
alakazam/1118-4108122277.jpeg,arbok,alakazam
alakazam/920-6833713396.png,ampharos,alakazam
alakazam/931-6873778001.png,arcanine,alakazam
alakazam/956-3021990456.jpeg,arcanine,alakazam
alakazam/960-2694340363.jpeg,alakazam,alakazam
alakazam/962-5099480633.jpeg,arcanine,alakazam
alakazam/963-5178274354.jpeg,azumarill,alakazam
alakazam/973-8779204871.jpeg,alakazam,alakazam
alakazam/974-4124440255.jpeg,arcanine,alakazam
alakazam/foo10.jpeg,articuno,alakazam
alakazam/foo212.jpeg,ampharos,alakazam
alakazam/foo218.jpeg,arcanine,alakazam
alakazam/foo5.jpg,arcanine,alakazam
alakazam/foo8.jpg,arcanine,alakazam
ampharos/1174-2202497957.jpeg,alakazam,ampharos
ampharos/1184-1881276205.png,ampharos,ampharos
ampharos/1185-5246231386.jpeg,arcanine,ampharos
ampharos/1230-1657265414.jpeg,abra,ampharos
ampharos/1231-1083799350.png,alakazam,ampharos
ampharos/1242-9664634939.png,azumarill,ampharos
ampharos/1247-1959740808.png,arcanine,ampharos
ampharos/1256-3145285474.png,arcanine,ampharos
ampharos/1260-6169529267.jpeg,aipom,ampharos
ampharos/1267-8822467930.jpeg,aipom,ampharos
ampharos/1277-3214623811.jpeg,arcanine,ampharos
ampharos/1283-6366943215.jpeg,arcanine,ampharos
ampharos/1353-6742653575.png,alakazam,ampharos
ampharos/1359-5113655166.jpeg,alakazam,ampharos
ampharos/foo2.jpg,ariados,ampharos
ampharos/foo6.jpg,abra,ampharos
ampharos/foo9.jpg,arcanine,ampharos
ampharos/foo93.jpg,alakazam,ampharos
arbok/1388-6797829841.jpeg,arcanine,arbok
arbok/1405-6323899503.jpeg,ariados,arbok
arbok/1413-3351309878.png,azumarill,arbok
arbok/1418-8164400474.jpeg,arbok,arbok
arbok/1428-5216845789.png,azumarill,arbok
arbok/1435-9029459638.png,alakazam,arbok
arbok/1449-4122890273.jpeg,azumarill,arbok
arbok/1450-2650813269.jpeg,ariados,arbok
arbok/1451-9879850634.png,abra,arbok
arbok/1461-2551259164.jpeg,ariados,arbok
arbok/1477-2542261184.jpeg,azumarill,arbok
arbok/1479-9196759509.png,ariados,arbok
arbok/1481-7958212812.jpeg,ariados,arbok
arbok/1484-3677226883.png,aipom,arbok
arbok/1489-5005322603.jpeg,ampharos,arbok
arbok/1500-6604716899.jpeg,ariados,arbok
arbok/1518-1780439881.png,aipom,arbok
arbok/1524-1118818965.jpeg,ariados,arbok
arbok/1533-8557716355.jpeg,ariados,arbok
arbok/1537-5644053937.jpeg,ampharos,arbok
arbok/1542-7501328153.jpeg,alakazam,arbok
arbok/1544-1433978852.png,ariados,arbok
arbok/1559-3265605154.jpeg,ampharos,arbok
arbok/1564-5200596997.png,ariados,arbok
arbok/1568-8397767068.jpeg,ariados,arbok
arbok/1575-8974133816.jpeg,ariados,arbok
arbok/1580-9607407200.jpeg,ariados,arbok
arbok/1584-2653445443.jpeg,azumarill,arbok
arbok/1591-7222134783.jpeg,azumarill,arbok
arbok/1596-5831443277.png,articuno,arbok
arcanine/1607-7510579623.png,articuno,arcanine
arcanine/1612-7070481462.png,articuno,arcanine
arcanine/1621-9447641440.jpeg,articuno,arcanine
arcanine/1623-7291071677.png,aipom,arcanine
arcanine/1629-2081851313.jpeg,azumarill,arcanine
arcanine/1646-5782610190.jpeg,alakazam,arcanine
arcanine/1647-3552511619.png,articuno,arcanine
arcanine/1654-1065340850.jpeg,azumarill,arcanine
arcanine/1658-3920956178.jpeg,articuno,arcanine
arcanine/1660-4994017812.png,alakazam,arcanine
arcanine/1661-4640938487.png,articuno,arcanine
arcanine/1662-5919666831.jpeg,articuno,arcanine
arcanine/1664-7884820000.png,articuno,arcanine
arcanine/1680-8034205709.jpeg,azumarill,arcanine
arcanine/1689-5218285906.jpeg,articuno,arcanine
arcanine/1707-4817433995.jpeg,articuno,arcanine
arcanine/1714-9206081098.jpeg,azumarill,arcanine
arcanine/1716-4788773315.jpeg,azumarill,arcanine
arcanine/1732-5439691267.jpeg,azumarill,arcanine
arcanine/1742-7273143996.jpeg,articuno,arcanine
arcanine/1748-7496739913.jpeg,aipom,arcanine
arcanine/1756-9534100354.jpeg,articuno,arcanine
arcanine/1772-3583766923.png,articuno,arcanine
arcanine/1779-8155708087.jpeg,articuno,arcanine
arcanine/1796-2542939891.jpeg,azumarill,arcanine
arcanine/1798-1316101128.jpeg,azumarill,arcanine
arcanine/1799-4037483287.jpeg,alakazam,arcanine
arcanine/1800-4298464904.jpeg,articuno,arcanine
arcanine/1801-5106783677.jpeg,azumarill,arcanine
arcanine/1824-4683113129.jpeg,articuno,arcanine
arcanine/1828-6443271536.png,aipom,arcanine
arcanine/foo1.jpg,azumarill,arcanine
ariados/1835-4688056901.jpeg,azumarill,ariados
ariados/1836-6172413729.jpeg,azumarill,ariados
ariados/1838-9202012379.jpeg,azumarill,ariados
ariados/1849-8842336642.png,azumarill,ariados
ariados/1868-7156106531.png,azumarill,ariados
ariados/1872-1187500170.jpeg,azumarill,ariados
ariados/1891-2764444315.png,azumarill,ariados
ariados/1902-2653071356.jpeg,azumarill,ariados
ariados/1942-8829792665.png,azumarill,ariados
ariados/1952-9193823104.jpeg,azumarill,ariados
ariados/1953-2645380504.jpeg,azumarill,ariados
ariados/1959-3300102490.png,azumarill,ariados
ariados/1981-7496749423.png,azumarill,ariados
ariados/1985-4948471665.png,aipom,ariados
ariados/1991-1777606010.png,azumarill,ariados
ariados/2003-3510735157.png,azumarill,ariados
ariados/2035-5158359644.jpeg,azumarill,ariados
ariados/2039-3431867516.jpeg,aipom,ariados
ariados/2059-7890530597.png,aipom,ariados
ariados/2060-5898858083.png,azumarill,ariados
ariados/2064-6682545262.jpeg,azumarill,ariados
ariados/foo11.jpg,azumarill,ariados
ariados/foo26.jpg,azumarill,ariados
ariados/foo44.jpg,azumarill,ariados
ariados/foo49.jpg,azumarill,ariados
articuno/2073-7809092541.jpeg,azumarill,articuno
articuno/2085-7052761748.jpeg,azumarill,articuno
articuno/2095-6921257459.jpeg,aipom,articuno
articuno/2096-6308378468.png,azumarill,articuno
articuno/2102-1329622956.png,azumarill,articuno
articuno/2107-8053345332.jpeg,azumarill,articuno
articuno/2113-1248647607.jpeg,azumarill,articuno
articuno/2114-6892333372.jpeg,azumarill,articuno
articuno/2125-7749020832.png,azumarill,articuno
articuno/2126-6858278053.png,azumarill,articuno
articuno/2139-9272965198.png,aipom,articuno
articuno/2142-3378770136.png,azumarill,articuno
articuno/2143-2355227677.jpeg,alakazam,articuno
articuno/2151-4399190319.jpeg,alakazam,articuno
articuno/2157-1665701945.jpeg,aipom,articuno
articuno/2164-3966760608.png,aipom,articuno
articuno/2165-4302966565.jpeg,alakazam,articuno
articuno/2174-4540338442.jpeg,alakazam,articuno
articuno/2176-5974052533.jpeg,aipom,articuno
articuno/2181-8410748754.png,alakazam,articuno
articuno/2193-3946018185.png,alakazam,articuno
articuno/2196-5459622128.jpeg,abra,articuno
articuno/2225-8392577088.jpeg,alakazam,articuno
articuno/2228-6870571712.png,arbok,articuno
articuno/2231-7810840201.jpeg,abra,articuno
articuno/2235-3199000946.jpeg,azumarill,articuno
articuno/2236-2271075971.jpeg,abra,articuno
articuno/2244-9237590036.jpeg,abra,articuno
articuno/2248-1457800987.jpeg,abra,articuno
articuno/2256-2321257546.jpeg,azumarill,articuno
articuno/2271-5636228793.jpeg,abra,articuno
articuno/2277-5851728134.jpeg,aipom,articuno
articuno/2278-2389148786.jpeg,abra,articuno
articuno/2288-6629601066.png,abra,articuno
azumarill/2299-9733152769.jpeg,azumarill,azumarill
azumarill/2304-9204876487.jpeg,alakazam,azumarill
azumarill/2306-7645494912.jpeg,alakazam,azumarill
azumarill/2322-5530381780.png,azumarill,azumarill
azumarill/2330-1958535550.png,aerodactyl,azumarill
azumarill/2336-1911923830.jpeg,azumarill,azumarill
azumarill/2341-6394340057.jpeg,azumarill,azumarill
azumarill/2344-2091443238.png,alakazam,azumarill
azumarill/2346-3184441527.png,abra,azumarill
azumarill/2354-1695422158.jpeg,alakazam,azumarill
azumarill/2358-9993711638.png,aipom,azumarill
azumarill/2361-3424510412.jpeg,aerodactyl,azumarill
azumarill/2362-1256305669.png,alakazam,azumarill
azumarill/2366-2433009018.jpeg,aipom,azumarill
azumarill/2370-4294479571.jpeg,aerodactyl,azumarill
azumarill/2372-4696431407.png,ariados,azumarill
azumarill/2381-4791483123.png,aerodactyl,azumarill
azumarill/2386-8098817128.png,alakazam,azumarill
azumarill/2390-6814193569.jpeg,alakazam,azumarill
azumarill/2392-5736579775.jpeg,alakazam,azumarill
azumarill/2395-9990891589.jpeg,azumarill,azumarill
azumarill/2405-8125189326.jpeg,ariados,azumarill
azumarill/2410-6187829728.png,alakazam,azumarill
azumarill/2412-2279205325.jpeg,aipom,azumarill
azumarill/2418-7547370639.jpeg,aerodactyl,azumarill
azumarill/2437-6117801568.jpeg,aerodactyl,azumarill
azumarill/2451-8330388016.jpeg,abra,azumarill
azumarill/2463-6299384668.png,aerodactyl,azumarill
azumarill/2467-6065322189.png,aipom,azumarill
azumarill/2468-5911493502.png,ampharos,azumarill
azumarill/2475-4840849837.jpeg,alakazam,azumarill
azumarill/2487-9173097107.png,aerodactyl,azumarill
azumarill/2495-4765204844.jpeg,aerodactyl,azumarill
azumarill/2501-5072132000.jpeg,arcanine,azumarill
azumarill/2503-8682756505.jpeg,azumarill,azumarill
azumarill/2514-8865586985.jpeg,aipom,azumarill
azumarill/2520-2969850156.png,aipom,azumarill
azumarill/foo7.jpg,aipom,azumarill
1 fname prediction true_val
2 abra/107-2189546675.jpeg aipom abra
3 abra/108-2236583756.png aipom abra
4 abra/139-6713074833.png aipom abra
5 abra/149-2288996320.jpeg aipom abra
6 abra/16-9549054379.jpeg aipom abra
7 abra/172-3468813760.jpg alakazam abra
8 abra/183-5524447342.png aipom abra
9 abra/2-9970155874.png azumarill abra
10 abra/20-5843023427.jpeg aipom abra
11 abra/217-2397279042.jpg aipom abra
12 abra/244-2785523395.jpg aipom abra
13 abra/250-2589825010.jpg aipom abra
14 abra/314-9629981367.png azumarill abra
15 abra/362-2597183825.png aipom abra
16 abra/380-8413644465.jpg aipom abra
17 abra/418-1049732812.jpg abra abra
18 abra/423-6652374003.png aipom abra
19 abra/433-9674741044.jpg aipom abra
20 abra/434-9568550288.jpeg aipom abra
21 abra/51-7977303910.jpeg aipom abra
22 abra/54-2563836737.jpg aipom abra
23 abra/6-5767544522.jpg aipom abra
24 abra/62-8863884543.jpeg aipom abra
25 abra/87-6366265139.png alakazam abra
26 aerodactyl/465-3210824721.jpeg alakazam aerodactyl
27 aerodactyl/468-2126095359.png aipom aerodactyl
28 aerodactyl/470-2346420859.png alakazam aerodactyl
29 aerodactyl/478-2321497126.png alakazam aerodactyl
30 aerodactyl/488-6908267746.jpeg alakazam aerodactyl
31 aerodactyl/489-9697776749.jpeg alakazam aerodactyl
32 aerodactyl/495-3053133796.jpeg alakazam aerodactyl
33 aerodactyl/498-7989859628.jpeg alakazam aerodactyl
34 aerodactyl/499-5281063449.png azumarill aerodactyl
35 aerodactyl/500-2934377768.png abra aerodactyl
36 aerodactyl/504-8958678554.jpeg alakazam aerodactyl
37 aerodactyl/508-2980739160.jpeg alakazam aerodactyl
38 aerodactyl/515-1440739515.png alakazam aerodactyl
39 aerodactyl/516-8662970679.png alakazam aerodactyl
40 aerodactyl/519-2951716034.png alakazam aerodactyl
41 aerodactyl/547-4122880001.jpeg alakazam aerodactyl
42 aerodactyl/574-5504581237.jpeg alakazam aerodactyl
43 aerodactyl/575-1048779540.jpeg alakazam aerodactyl
44 aerodactyl/589-2902969727.jpeg aipom aerodactyl
45 aerodactyl/606-5806792604.png aipom aerodactyl
46 aerodactyl/608-5131335196.jpeg alakazam aerodactyl
47 aerodactyl/618-4342458124.jpeg alakazam aerodactyl
48 aerodactyl/621-5953319813.jpeg ampharos aerodactyl
49 aerodactyl/628-5720163980.jpeg ampharos aerodactyl
50 aerodactyl/629-3918397835.png ampharos aerodactyl
51 aerodactyl/634-2418332985.jpeg ampharos aerodactyl
52 aerodactyl/648-3316677096.png ampharos aerodactyl
53 aerodactyl/659-1268922181.jpeg aipom aerodactyl
54 aerodactyl/675-9195000543.jpeg ampharos aerodactyl
55 aerodactyl/676-8835461071.jpeg ampharos aerodactyl
56 aerodactyl/685-5361661497.png azumarill aerodactyl
57 aerodactyl/693-5527271760.jpeg aipom aerodactyl
58 aerodactyl/foo12.jpeg.jpeg.jpeg.jpeg ampharos aerodactyl
59 aipom/721-4589020992.png aipom aipom
60 aipom/743-1740865407.jpeg ampharos aipom
61 aipom/753-3615597532.png ampharos aipom
62 aipom/757-5646621475.png ampharos aipom
63 aipom/763-4520430521.png ampharos aipom
64 aipom/765-3141131859.jpeg ampharos aipom
65 aipom/786-6217268769.jpeg ampharos aipom
66 aipom/813-8019022990.jpeg aipom aipom
67 aipom/834-9307489115.jpeg aipom aipom
68 aipom/837-8849897302.jpeg arbok aipom
69 aipom/844-7749073684.png ampharos aipom
70 aipom/846-4755368689.jpeg arbok aipom
71 aipom/848-8115628416.jpeg arbok aipom
72 aipom/849-9051869514.jpeg arbok aipom
73 aipom/853-2833716157.png arbok aipom
74 aipom/856-7224095754.jpeg arbok aipom
75 aipom/865-5866468150.jpeg aipom aipom
76 aipom/875-4980974776.jpeg aipom aipom
77 aipom/894-2612878986.jpeg ampharos aipom
78 aipom/908-8474517286.png arbok aipom
79 aipom/910-3190747727.jpeg arbok aipom
80 aipom/912-6165380912.jpeg aipom aipom
81 aipom/913-8324389664.png aipom aipom
82 aipom/917-8367171558.jpeg aipom aipom
83 aipom/foo11.jpeg.jpeg arbok aipom
84 aipom/foo18.jpeg aipom aipom
85 alakazam/1000-7061962328.jpeg arbok alakazam
86 alakazam/1031-9151272720.jpeg arbok alakazam
87 alakazam/1035-7937090530.jpeg aipom alakazam
88 alakazam/1056-5849835340.jpeg arbok alakazam
89 alakazam/1062-8745297386.jpeg arbok alakazam
90 alakazam/1076-8570605605.jpeg arbok alakazam
91 alakazam/1077-4846293778.jpeg aipom alakazam
92 alakazam/1099-1620808408.jpeg azumarill alakazam
93 alakazam/1112-7078746680.png arbok alakazam
94 alakazam/1118-4108122277.jpeg arbok alakazam
95 alakazam/920-6833713396.png ampharos alakazam
96 alakazam/931-6873778001.png arcanine alakazam
97 alakazam/956-3021990456.jpeg arcanine alakazam
98 alakazam/960-2694340363.jpeg alakazam alakazam
99 alakazam/962-5099480633.jpeg arcanine alakazam
100 alakazam/963-5178274354.jpeg azumarill alakazam
101 alakazam/973-8779204871.jpeg alakazam alakazam
102 alakazam/974-4124440255.jpeg arcanine alakazam
103 alakazam/foo10.jpeg articuno alakazam
104 alakazam/foo212.jpeg ampharos alakazam
105 alakazam/foo218.jpeg arcanine alakazam
106 alakazam/foo5.jpg arcanine alakazam
107 alakazam/foo8.jpg arcanine alakazam
108 ampharos/1174-2202497957.jpeg alakazam ampharos
109 ampharos/1184-1881276205.png ampharos ampharos
110 ampharos/1185-5246231386.jpeg arcanine ampharos
111 ampharos/1230-1657265414.jpeg abra ampharos
112 ampharos/1231-1083799350.png alakazam ampharos
113 ampharos/1242-9664634939.png azumarill ampharos
114 ampharos/1247-1959740808.png arcanine ampharos
115 ampharos/1256-3145285474.png arcanine ampharos
116 ampharos/1260-6169529267.jpeg aipom ampharos
117 ampharos/1267-8822467930.jpeg aipom ampharos
118 ampharos/1277-3214623811.jpeg arcanine ampharos
119 ampharos/1283-6366943215.jpeg arcanine ampharos
120 ampharos/1353-6742653575.png alakazam ampharos
121 ampharos/1359-5113655166.jpeg alakazam ampharos
122 ampharos/foo2.jpg ariados ampharos
123 ampharos/foo6.jpg abra ampharos
124 ampharos/foo9.jpg arcanine ampharos
125 ampharos/foo93.jpg alakazam ampharos
126 arbok/1388-6797829841.jpeg arcanine arbok
127 arbok/1405-6323899503.jpeg ariados arbok
128 arbok/1413-3351309878.png azumarill arbok
129 arbok/1418-8164400474.jpeg arbok arbok
130 arbok/1428-5216845789.png azumarill arbok
131 arbok/1435-9029459638.png alakazam arbok
132 arbok/1449-4122890273.jpeg azumarill arbok
133 arbok/1450-2650813269.jpeg ariados arbok
134 arbok/1451-9879850634.png abra arbok
135 arbok/1461-2551259164.jpeg ariados arbok
136 arbok/1477-2542261184.jpeg azumarill arbok
137 arbok/1479-9196759509.png ariados arbok
138 arbok/1481-7958212812.jpeg ariados arbok
139 arbok/1484-3677226883.png aipom arbok
140 arbok/1489-5005322603.jpeg ampharos arbok
141 arbok/1500-6604716899.jpeg ariados arbok
142 arbok/1518-1780439881.png aipom arbok
143 arbok/1524-1118818965.jpeg ariados arbok
144 arbok/1533-8557716355.jpeg ariados arbok
145 arbok/1537-5644053937.jpeg ampharos arbok
146 arbok/1542-7501328153.jpeg alakazam arbok
147 arbok/1544-1433978852.png ariados arbok
148 arbok/1559-3265605154.jpeg ampharos arbok
149 arbok/1564-5200596997.png ariados arbok
150 arbok/1568-8397767068.jpeg ariados arbok
151 arbok/1575-8974133816.jpeg ariados arbok
152 arbok/1580-9607407200.jpeg ariados arbok
153 arbok/1584-2653445443.jpeg azumarill arbok
154 arbok/1591-7222134783.jpeg azumarill arbok
155 arbok/1596-5831443277.png articuno arbok
156 arcanine/1607-7510579623.png articuno arcanine
157 arcanine/1612-7070481462.png articuno arcanine
158 arcanine/1621-9447641440.jpeg articuno arcanine
159 arcanine/1623-7291071677.png aipom arcanine
160 arcanine/1629-2081851313.jpeg azumarill arcanine
161 arcanine/1646-5782610190.jpeg alakazam arcanine
162 arcanine/1647-3552511619.png articuno arcanine
163 arcanine/1654-1065340850.jpeg azumarill arcanine
164 arcanine/1658-3920956178.jpeg articuno arcanine
165 arcanine/1660-4994017812.png alakazam arcanine
166 arcanine/1661-4640938487.png articuno arcanine
167 arcanine/1662-5919666831.jpeg articuno arcanine
168 arcanine/1664-7884820000.png articuno arcanine
169 arcanine/1680-8034205709.jpeg azumarill arcanine
170 arcanine/1689-5218285906.jpeg articuno arcanine
171 arcanine/1707-4817433995.jpeg articuno arcanine
172 arcanine/1714-9206081098.jpeg azumarill arcanine
173 arcanine/1716-4788773315.jpeg azumarill arcanine
174 arcanine/1732-5439691267.jpeg azumarill arcanine
175 arcanine/1742-7273143996.jpeg articuno arcanine
176 arcanine/1748-7496739913.jpeg aipom arcanine
177 arcanine/1756-9534100354.jpeg articuno arcanine
178 arcanine/1772-3583766923.png articuno arcanine
179 arcanine/1779-8155708087.jpeg articuno arcanine
180 arcanine/1796-2542939891.jpeg azumarill arcanine
181 arcanine/1798-1316101128.jpeg azumarill arcanine
182 arcanine/1799-4037483287.jpeg alakazam arcanine
183 arcanine/1800-4298464904.jpeg articuno arcanine
184 arcanine/1801-5106783677.jpeg azumarill arcanine
185 arcanine/1824-4683113129.jpeg articuno arcanine
186 arcanine/1828-6443271536.png aipom arcanine
187 arcanine/foo1.jpg azumarill arcanine
188 ariados/1835-4688056901.jpeg azumarill ariados
189 ariados/1836-6172413729.jpeg azumarill ariados
190 ariados/1838-9202012379.jpeg azumarill ariados
191 ariados/1849-8842336642.png azumarill ariados
192 ariados/1868-7156106531.png azumarill ariados
193 ariados/1872-1187500170.jpeg azumarill ariados
194 ariados/1891-2764444315.png azumarill ariados
195 ariados/1902-2653071356.jpeg azumarill ariados
196 ariados/1942-8829792665.png azumarill ariados
197 ariados/1952-9193823104.jpeg azumarill ariados
198 ariados/1953-2645380504.jpeg azumarill ariados
199 ariados/1959-3300102490.png azumarill ariados
200 ariados/1981-7496749423.png azumarill ariados
201 ariados/1985-4948471665.png aipom ariados
202 ariados/1991-1777606010.png azumarill ariados
203 ariados/2003-3510735157.png azumarill ariados
204 ariados/2035-5158359644.jpeg azumarill ariados
205 ariados/2039-3431867516.jpeg aipom ariados
206 ariados/2059-7890530597.png aipom ariados
207 ariados/2060-5898858083.png azumarill ariados
208 ariados/2064-6682545262.jpeg azumarill ariados
209 ariados/foo11.jpg azumarill ariados
210 ariados/foo26.jpg azumarill ariados
211 ariados/foo44.jpg azumarill ariados
212 ariados/foo49.jpg azumarill ariados
213 articuno/2073-7809092541.jpeg azumarill articuno
214 articuno/2085-7052761748.jpeg azumarill articuno
215 articuno/2095-6921257459.jpeg aipom articuno
216 articuno/2096-6308378468.png azumarill articuno
217 articuno/2102-1329622956.png azumarill articuno
218 articuno/2107-8053345332.jpeg azumarill articuno
219 articuno/2113-1248647607.jpeg azumarill articuno
220 articuno/2114-6892333372.jpeg azumarill articuno
221 articuno/2125-7749020832.png azumarill articuno
222 articuno/2126-6858278053.png azumarill articuno
223 articuno/2139-9272965198.png aipom articuno
224 articuno/2142-3378770136.png azumarill articuno
225 articuno/2143-2355227677.jpeg alakazam articuno
226 articuno/2151-4399190319.jpeg alakazam articuno
227 articuno/2157-1665701945.jpeg aipom articuno
228 articuno/2164-3966760608.png aipom articuno
229 articuno/2165-4302966565.jpeg alakazam articuno
230 articuno/2174-4540338442.jpeg alakazam articuno
231 articuno/2176-5974052533.jpeg aipom articuno
232 articuno/2181-8410748754.png alakazam articuno
233 articuno/2193-3946018185.png alakazam articuno
234 articuno/2196-5459622128.jpeg abra articuno
235 articuno/2225-8392577088.jpeg alakazam articuno
236 articuno/2228-6870571712.png arbok articuno
237 articuno/2231-7810840201.jpeg abra articuno
238 articuno/2235-3199000946.jpeg azumarill articuno
239 articuno/2236-2271075971.jpeg abra articuno
240 articuno/2244-9237590036.jpeg abra articuno
241 articuno/2248-1457800987.jpeg abra articuno
242 articuno/2256-2321257546.jpeg azumarill articuno
243 articuno/2271-5636228793.jpeg abra articuno
244 articuno/2277-5851728134.jpeg aipom articuno
245 articuno/2278-2389148786.jpeg abra articuno
246 articuno/2288-6629601066.png abra articuno
247 azumarill/2299-9733152769.jpeg azumarill azumarill
248 azumarill/2304-9204876487.jpeg alakazam azumarill
249 azumarill/2306-7645494912.jpeg alakazam azumarill
250 azumarill/2322-5530381780.png azumarill azumarill
251 azumarill/2330-1958535550.png aerodactyl azumarill
252 azumarill/2336-1911923830.jpeg azumarill azumarill
253 azumarill/2341-6394340057.jpeg azumarill azumarill
254 azumarill/2344-2091443238.png alakazam azumarill
255 azumarill/2346-3184441527.png abra azumarill
256 azumarill/2354-1695422158.jpeg alakazam azumarill
257 azumarill/2358-9993711638.png aipom azumarill
258 azumarill/2361-3424510412.jpeg aerodactyl azumarill
259 azumarill/2362-1256305669.png alakazam azumarill
260 azumarill/2366-2433009018.jpeg aipom azumarill
261 azumarill/2370-4294479571.jpeg aerodactyl azumarill
262 azumarill/2372-4696431407.png ariados azumarill
263 azumarill/2381-4791483123.png aerodactyl azumarill
264 azumarill/2386-8098817128.png alakazam azumarill
265 azumarill/2390-6814193569.jpeg alakazam azumarill
266 azumarill/2392-5736579775.jpeg alakazam azumarill
267 azumarill/2395-9990891589.jpeg azumarill azumarill
268 azumarill/2405-8125189326.jpeg ariados azumarill
269 azumarill/2410-6187829728.png alakazam azumarill
270 azumarill/2412-2279205325.jpeg aipom azumarill
271 azumarill/2418-7547370639.jpeg aerodactyl azumarill
272 azumarill/2437-6117801568.jpeg aerodactyl azumarill
273 azumarill/2451-8330388016.jpeg abra azumarill
274 azumarill/2463-6299384668.png aerodactyl azumarill
275 azumarill/2467-6065322189.png aipom azumarill
276 azumarill/2468-5911493502.png ampharos azumarill
277 azumarill/2475-4840849837.jpeg alakazam azumarill
278 azumarill/2487-9173097107.png aerodactyl azumarill
279 azumarill/2495-4765204844.jpeg aerodactyl azumarill
280 azumarill/2501-5072132000.jpeg arcanine azumarill
281 azumarill/2503-8682756505.jpeg azumarill azumarill
282 azumarill/2514-8865586985.jpeg aipom azumarill
283 azumarill/2520-2969850156.png aipom azumarill
284 azumarill/foo7.jpg aipom azumarill
+284
View File
@@ -0,0 +1,284 @@
fname,prediction,true_val
abra/107-2189546675.jpeg,articuno,abra
abra/108-2236583756.png,aipom,abra
abra/139-6713074833.png,aipom,abra
abra/149-2288996320.jpeg,aipom,abra
abra/16-9549054379.jpeg,articuno,abra
abra/172-3468813760.jpg,aerodactyl,abra
abra/183-5524447342.png,articuno,abra
abra/2-9970155874.png,aerodactyl,abra
abra/20-5843023427.jpeg,aerodactyl,abra
abra/217-2397279042.jpg,arcanine,abra
abra/244-2785523395.jpg,aerodactyl,abra
abra/250-2589825010.jpg,arbok,abra
abra/314-9629981367.png,aipom,abra
abra/362-2597183825.png,aerodactyl,abra
abra/380-8413644465.jpg,aipom,abra
abra/418-1049732812.jpg,ampharos,abra
abra/423-6652374003.png,aipom,abra
abra/433-9674741044.jpg,aipom,abra
abra/434-9568550288.jpeg,arcanine,abra
abra/51-7977303910.jpeg,aipom,abra
abra/54-2563836737.jpg,aipom,abra
abra/6-5767544522.jpg,aipom,abra
abra/62-8863884543.jpeg,aerodactyl,abra
abra/87-6366265139.png,ampharos,abra
aerodactyl/465-3210824721.jpeg,aerodactyl,aerodactyl
aerodactyl/468-2126095359.png,arbok,aerodactyl
aerodactyl/470-2346420859.png,aerodactyl,aerodactyl
aerodactyl/478-2321497126.png,aerodactyl,aerodactyl
aerodactyl/488-6908267746.jpeg,aipom,aerodactyl
aerodactyl/489-9697776749.jpeg,aerodactyl,aerodactyl
aerodactyl/495-3053133796.jpeg,articuno,aerodactyl
aerodactyl/498-7989859628.jpeg,aerodactyl,aerodactyl
aerodactyl/499-5281063449.png,arcanine,aerodactyl
aerodactyl/500-2934377768.png,aipom,aerodactyl
aerodactyl/504-8958678554.jpeg,aerodactyl,aerodactyl
aerodactyl/508-2980739160.jpeg,aipom,aerodactyl
aerodactyl/515-1440739515.png,aerodactyl,aerodactyl
aerodactyl/516-8662970679.png,arcanine,aerodactyl
aerodactyl/519-2951716034.png,aipom,aerodactyl
aerodactyl/547-4122880001.jpeg,arbok,aerodactyl
aerodactyl/574-5504581237.jpeg,aerodactyl,aerodactyl
aerodactyl/575-1048779540.jpeg,articuno,aerodactyl
aerodactyl/589-2902969727.jpeg,aerodactyl,aerodactyl
aerodactyl/606-5806792604.png,ariados,aerodactyl
aerodactyl/608-5131335196.jpeg,arcanine,aerodactyl
aerodactyl/618-4342458124.jpeg,aerodactyl,aerodactyl
aerodactyl/621-5953319813.jpeg,articuno,aerodactyl
aerodactyl/628-5720163980.jpeg,articuno,aerodactyl
aerodactyl/629-3918397835.png,aerodactyl,aerodactyl
aerodactyl/634-2418332985.jpeg,aerodactyl,aerodactyl
aerodactyl/648-3316677096.png,aerodactyl,aerodactyl
aerodactyl/659-1268922181.jpeg,aerodactyl,aerodactyl
aerodactyl/675-9195000543.jpeg,aerodactyl,aerodactyl
aerodactyl/676-8835461071.jpeg,articuno,aerodactyl
aerodactyl/685-5361661497.png,articuno,aerodactyl
aerodactyl/693-5527271760.jpeg,arcanine,aerodactyl
aerodactyl/foo12.jpeg.jpeg.jpeg.jpeg,aerodactyl,aerodactyl
aipom/721-4589020992.png,aipom,aipom
aipom/743-1740865407.jpeg,aipom,aipom
aipom/753-3615597532.png,aipom,aipom
aipom/757-5646621475.png,aipom,aipom
aipom/763-4520430521.png,aipom,aipom
aipom/765-3141131859.jpeg,aipom,aipom
aipom/786-6217268769.jpeg,aipom,aipom
aipom/813-8019022990.jpeg,arbok,aipom
aipom/834-9307489115.jpeg,aipom,aipom
aipom/837-8849897302.jpeg,aipom,aipom
aipom/844-7749073684.png,aipom,aipom
aipom/846-4755368689.jpeg,aipom,aipom
aipom/848-8115628416.jpeg,aipom,aipom
aipom/849-9051869514.jpeg,aipom,aipom
aipom/853-2833716157.png,aipom,aipom
aipom/856-7224095754.jpeg,aipom,aipom
aipom/865-5866468150.jpeg,aipom,aipom
aipom/875-4980974776.jpeg,aipom,aipom
aipom/894-2612878986.jpeg,aipom,aipom
aipom/908-8474517286.png,aipom,aipom
aipom/910-3190747727.jpeg,aipom,aipom
aipom/912-6165380912.jpeg,aipom,aipom
aipom/913-8324389664.png,aipom,aipom
aipom/917-8367171558.jpeg,aipom,aipom
aipom/foo11.jpeg.jpeg,aipom,aipom
aipom/foo18.jpeg,aipom,aipom
alakazam/1000-7061962328.jpeg,aerodactyl,alakazam
alakazam/1031-9151272720.jpeg,arcanine,alakazam
alakazam/1035-7937090530.jpeg,aipom,alakazam
alakazam/1056-5849835340.jpeg,articuno,alakazam
alakazam/1062-8745297386.jpeg,alakazam,alakazam
alakazam/1076-8570605605.jpeg,articuno,alakazam
alakazam/1077-4846293778.jpeg,ampharos,alakazam
alakazam/1099-1620808408.jpeg,arcanine,alakazam
alakazam/1112-7078746680.png,ariados,alakazam
alakazam/1118-4108122277.jpeg,alakazam,alakazam
alakazam/920-6833713396.png,arcanine,alakazam
alakazam/931-6873778001.png,alakazam,alakazam
alakazam/956-3021990456.jpeg,aipom,alakazam
alakazam/960-2694340363.jpeg,arcanine,alakazam
alakazam/962-5099480633.jpeg,aerodactyl,alakazam
alakazam/963-5178274354.jpeg,articuno,alakazam
alakazam/973-8779204871.jpeg,aerodactyl,alakazam
alakazam/974-4124440255.jpeg,alakazam,alakazam
alakazam/foo10.jpeg,aerodactyl,alakazam
alakazam/foo212.jpeg,aipom,alakazam
alakazam/foo218.jpeg,alakazam,alakazam
alakazam/foo5.jpg,arcanine,alakazam
alakazam/foo8.jpg,alakazam,alakazam
ampharos/1174-2202497957.jpeg,ampharos,ampharos
ampharos/1184-1881276205.png,arbok,ampharos
ampharos/1185-5246231386.jpeg,aerodactyl,ampharos
ampharos/1230-1657265414.jpeg,ampharos,ampharos
ampharos/1231-1083799350.png,ampharos,ampharos
ampharos/1242-9664634939.png,ampharos,ampharos
ampharos/1247-1959740808.png,ampharos,ampharos
ampharos/1256-3145285474.png,ampharos,ampharos
ampharos/1260-6169529267.jpeg,aerodactyl,ampharos
ampharos/1267-8822467930.jpeg,ampharos,ampharos
ampharos/1277-3214623811.jpeg,aipom,ampharos
ampharos/1283-6366943215.jpeg,aipom,ampharos
ampharos/1353-6742653575.png,ampharos,ampharos
ampharos/1359-5113655166.jpeg,ampharos,ampharos
ampharos/foo2.jpg,ampharos,ampharos
ampharos/foo6.jpg,ampharos,ampharos
ampharos/foo9.jpg,ampharos,ampharos
ampharos/foo93.jpg,aipom,ampharos
arbok/1388-6797829841.jpeg,arbok,arbok
arbok/1405-6323899503.jpeg,arbok,arbok
arbok/1413-3351309878.png,arbok,arbok
arbok/1418-8164400474.jpeg,arbok,arbok
arbok/1428-5216845789.png,ampharos,arbok
arbok/1435-9029459638.png,aipom,arbok
arbok/1449-4122890273.jpeg,aipom,arbok
arbok/1450-2650813269.jpeg,aipom,arbok
arbok/1451-9879850634.png,arbok,arbok
arbok/1461-2551259164.jpeg,arbok,arbok
arbok/1477-2542261184.jpeg,arcanine,arbok
arbok/1479-9196759509.png,aipom,arbok
arbok/1481-7958212812.jpeg,aipom,arbok
arbok/1484-3677226883.png,aipom,arbok
arbok/1489-5005322603.jpeg,aipom,arbok
arbok/1500-6604716899.jpeg,aipom,arbok
arbok/1518-1780439881.png,aipom,arbok
arbok/1524-1118818965.jpeg,arbok,arbok
arbok/1533-8557716355.jpeg,arbok,arbok
arbok/1537-5644053937.jpeg,arbok,arbok
arbok/1542-7501328153.jpeg,aipom,arbok
arbok/1544-1433978852.png,aipom,arbok
arbok/1559-3265605154.jpeg,arbok,arbok
arbok/1564-5200596997.png,arbok,arbok
arbok/1568-8397767068.jpeg,arbok,arbok
arbok/1575-8974133816.jpeg,aipom,arbok
arbok/1580-9607407200.jpeg,aipom,arbok
arbok/1584-2653445443.jpeg,arcanine,arbok
arbok/1591-7222134783.jpeg,articuno,arbok
arbok/1596-5831443277.png,arbok,arbok
arcanine/1607-7510579623.png,arcanine,arcanine
arcanine/1612-7070481462.png,aerodactyl,arcanine
arcanine/1621-9447641440.jpeg,aerodactyl,arcanine
arcanine/1623-7291071677.png,arcanine,arcanine
arcanine/1629-2081851313.jpeg,aerodactyl,arcanine
arcanine/1646-5782610190.jpeg,ampharos,arcanine
arcanine/1647-3552511619.png,arcanine,arcanine
arcanine/1654-1065340850.jpeg,articuno,arcanine
arcanine/1658-3920956178.jpeg,arcanine,arcanine
arcanine/1660-4994017812.png,aipom,arcanine
arcanine/1661-4640938487.png,aipom,arcanine
arcanine/1662-5919666831.jpeg,arcanine,arcanine
arcanine/1664-7884820000.png,aipom,arcanine
arcanine/1680-8034205709.jpeg,arcanine,arcanine
arcanine/1689-5218285906.jpeg,ariados,arcanine
arcanine/1707-4817433995.jpeg,ampharos,arcanine
arcanine/1714-9206081098.jpeg,arcanine,arcanine
arcanine/1716-4788773315.jpeg,arbok,arcanine
arcanine/1732-5439691267.jpeg,arcanine,arcanine
arcanine/1742-7273143996.jpeg,arcanine,arcanine
arcanine/1748-7496739913.jpeg,aipom,arcanine
arcanine/1756-9534100354.jpeg,aipom,arcanine
arcanine/1772-3583766923.png,arcanine,arcanine
arcanine/1779-8155708087.jpeg,articuno,arcanine
arcanine/1796-2542939891.jpeg,alakazam,arcanine
arcanine/1798-1316101128.jpeg,arcanine,arcanine
arcanine/1799-4037483287.jpeg,arcanine,arcanine
arcanine/1800-4298464904.jpeg,aerodactyl,arcanine
arcanine/1801-5106783677.jpeg,articuno,arcanine
arcanine/1824-4683113129.jpeg,arcanine,arcanine
arcanine/1828-6443271536.png,ampharos,arcanine
arcanine/foo1.jpg,arcanine,arcanine
ariados/1835-4688056901.jpeg,aerodactyl,ariados
ariados/1836-6172413729.jpeg,aipom,ariados
ariados/1838-9202012379.jpeg,aerodactyl,ariados
ariados/1849-8842336642.png,aerodactyl,ariados
ariados/1868-7156106531.png,aerodactyl,ariados
ariados/1872-1187500170.jpeg,ariados,ariados
ariados/1891-2764444315.png,articuno,ariados
ariados/1902-2653071356.jpeg,arcanine,ariados
ariados/1942-8829792665.png,aipom,ariados
ariados/1952-9193823104.jpeg,aerodactyl,ariados
ariados/1953-2645380504.jpeg,aipom,ariados
ariados/1959-3300102490.png,ariados,ariados
ariados/1981-7496749423.png,arcanine,ariados
ariados/1985-4948471665.png,ariados,ariados
ariados/1991-1777606010.png,aerodactyl,ariados
ariados/2003-3510735157.png,aerodactyl,ariados
ariados/2035-5158359644.jpeg,ariados,ariados
ariados/2039-3431867516.jpeg,ariados,ariados
ariados/2059-7890530597.png,articuno,ariados
ariados/2060-5898858083.png,ariados,ariados
ariados/2064-6682545262.jpeg,aipom,ariados
ariados/foo11.jpg,ariados,ariados
ariados/foo26.jpg,ariados,ariados
ariados/foo44.jpg,ariados,ariados
ariados/foo49.jpg,ariados,ariados
articuno/2073-7809092541.jpeg,articuno,articuno
articuno/2085-7052761748.jpeg,articuno,articuno
articuno/2095-6921257459.jpeg,articuno,articuno
articuno/2096-6308378468.png,articuno,articuno
articuno/2102-1329622956.png,articuno,articuno
articuno/2107-8053345332.jpeg,articuno,articuno
articuno/2113-1248647607.jpeg,articuno,articuno
articuno/2114-6892333372.jpeg,aerodactyl,articuno
articuno/2125-7749020832.png,aerodactyl,articuno
articuno/2126-6858278053.png,articuno,articuno
articuno/2139-9272965198.png,aipom,articuno
articuno/2142-3378770136.png,aipom,articuno
articuno/2143-2355227677.jpeg,articuno,articuno
articuno/2151-4399190319.jpeg,articuno,articuno
articuno/2157-1665701945.jpeg,articuno,articuno
articuno/2164-3966760608.png,articuno,articuno
articuno/2165-4302966565.jpeg,aipom,articuno
articuno/2174-4540338442.jpeg,articuno,articuno
articuno/2176-5974052533.jpeg,articuno,articuno
articuno/2181-8410748754.png,articuno,articuno
articuno/2193-3946018185.png,articuno,articuno
articuno/2196-5459622128.jpeg,aerodactyl,articuno
articuno/2225-8392577088.jpeg,aerodactyl,articuno
articuno/2228-6870571712.png,articuno,articuno
articuno/2231-7810840201.jpeg,articuno,articuno
articuno/2235-3199000946.jpeg,articuno,articuno
articuno/2236-2271075971.jpeg,articuno,articuno
articuno/2244-9237590036.jpeg,aipom,articuno
articuno/2248-1457800987.jpeg,aipom,articuno
articuno/2256-2321257546.jpeg,articuno,articuno
articuno/2271-5636228793.jpeg,articuno,articuno
articuno/2277-5851728134.jpeg,articuno,articuno
articuno/2278-2389148786.jpeg,articuno,articuno
articuno/2288-6629601066.png,articuno,articuno
azumarill/2299-9733152769.jpeg,aipom,azumarill
azumarill/2304-9204876487.jpeg,aipom,azumarill
azumarill/2306-7645494912.jpeg,aipom,azumarill
azumarill/2322-5530381780.png,aipom,azumarill
azumarill/2330-1958535550.png,ampharos,azumarill
azumarill/2336-1911923830.jpeg,azumarill,azumarill
azumarill/2341-6394340057.jpeg,aipom,azumarill
azumarill/2344-2091443238.png,ampharos,azumarill
azumarill/2346-3184441527.png,arbok,azumarill
azumarill/2354-1695422158.jpeg,azumarill,azumarill
azumarill/2358-9993711638.png,aipom,azumarill
azumarill/2361-3424510412.jpeg,ampharos,azumarill
azumarill/2362-1256305669.png,ampharos,azumarill
azumarill/2366-2433009018.jpeg,aipom,azumarill
azumarill/2370-4294479571.jpeg,aipom,azumarill
azumarill/2372-4696431407.png,azumarill,azumarill
azumarill/2381-4791483123.png,azumarill,azumarill
azumarill/2386-8098817128.png,aipom,azumarill
azumarill/2390-6814193569.jpeg,aipom,azumarill
azumarill/2392-5736579775.jpeg,aipom,azumarill
azumarill/2395-9990891589.jpeg,ampharos,azumarill
azumarill/2405-8125189326.jpeg,azumarill,azumarill
azumarill/2410-6187829728.png,azumarill,azumarill
azumarill/2412-2279205325.jpeg,aipom,azumarill
azumarill/2418-7547370639.jpeg,aipom,azumarill
azumarill/2437-6117801568.jpeg,aipom,azumarill
azumarill/2451-8330388016.jpeg,azumarill,azumarill
azumarill/2463-6299384668.png,aipom,azumarill
azumarill/2467-6065322189.png,azumarill,azumarill
azumarill/2468-5911493502.png,azumarill,azumarill
azumarill/2475-4840849837.jpeg,azumarill,azumarill
azumarill/2487-9173097107.png,aipom,azumarill
azumarill/2495-4765204844.jpeg,aipom,azumarill
azumarill/2501-5072132000.jpeg,arbok,azumarill
azumarill/2503-8682756505.jpeg,aipom,azumarill
azumarill/2514-8865586985.jpeg,alakazam,azumarill
azumarill/2520-2969850156.png,aipom,azumarill
azumarill/foo7.jpg,aerodactyl,azumarill
1 fname prediction true_val
2 abra/107-2189546675.jpeg articuno abra
3 abra/108-2236583756.png aipom abra
4 abra/139-6713074833.png aipom abra
5 abra/149-2288996320.jpeg aipom abra
6 abra/16-9549054379.jpeg articuno abra
7 abra/172-3468813760.jpg aerodactyl abra
8 abra/183-5524447342.png articuno abra
9 abra/2-9970155874.png aerodactyl abra
10 abra/20-5843023427.jpeg aerodactyl abra
11 abra/217-2397279042.jpg arcanine abra
12 abra/244-2785523395.jpg aerodactyl abra
13 abra/250-2589825010.jpg arbok abra
14 abra/314-9629981367.png aipom abra
15 abra/362-2597183825.png aerodactyl abra
16 abra/380-8413644465.jpg aipom abra
17 abra/418-1049732812.jpg ampharos abra
18 abra/423-6652374003.png aipom abra
19 abra/433-9674741044.jpg aipom abra
20 abra/434-9568550288.jpeg arcanine abra
21 abra/51-7977303910.jpeg aipom abra
22 abra/54-2563836737.jpg aipom abra
23 abra/6-5767544522.jpg aipom abra
24 abra/62-8863884543.jpeg aerodactyl abra
25 abra/87-6366265139.png ampharos abra
26 aerodactyl/465-3210824721.jpeg aerodactyl aerodactyl
27 aerodactyl/468-2126095359.png arbok aerodactyl
28 aerodactyl/470-2346420859.png aerodactyl aerodactyl
29 aerodactyl/478-2321497126.png aerodactyl aerodactyl
30 aerodactyl/488-6908267746.jpeg aipom aerodactyl
31 aerodactyl/489-9697776749.jpeg aerodactyl aerodactyl
32 aerodactyl/495-3053133796.jpeg articuno aerodactyl
33 aerodactyl/498-7989859628.jpeg aerodactyl aerodactyl
34 aerodactyl/499-5281063449.png arcanine aerodactyl
35 aerodactyl/500-2934377768.png aipom aerodactyl
36 aerodactyl/504-8958678554.jpeg aerodactyl aerodactyl
37 aerodactyl/508-2980739160.jpeg aipom aerodactyl
38 aerodactyl/515-1440739515.png aerodactyl aerodactyl
39 aerodactyl/516-8662970679.png arcanine aerodactyl
40 aerodactyl/519-2951716034.png aipom aerodactyl
41 aerodactyl/547-4122880001.jpeg arbok aerodactyl
42 aerodactyl/574-5504581237.jpeg aerodactyl aerodactyl
43 aerodactyl/575-1048779540.jpeg articuno aerodactyl
44 aerodactyl/589-2902969727.jpeg aerodactyl aerodactyl
45 aerodactyl/606-5806792604.png ariados aerodactyl
46 aerodactyl/608-5131335196.jpeg arcanine aerodactyl
47 aerodactyl/618-4342458124.jpeg aerodactyl aerodactyl
48 aerodactyl/621-5953319813.jpeg articuno aerodactyl
49 aerodactyl/628-5720163980.jpeg articuno aerodactyl
50 aerodactyl/629-3918397835.png aerodactyl aerodactyl
51 aerodactyl/634-2418332985.jpeg aerodactyl aerodactyl
52 aerodactyl/648-3316677096.png aerodactyl aerodactyl
53 aerodactyl/659-1268922181.jpeg aerodactyl aerodactyl
54 aerodactyl/675-9195000543.jpeg aerodactyl aerodactyl
55 aerodactyl/676-8835461071.jpeg articuno aerodactyl
56 aerodactyl/685-5361661497.png articuno aerodactyl
57 aerodactyl/693-5527271760.jpeg arcanine aerodactyl
58 aerodactyl/foo12.jpeg.jpeg.jpeg.jpeg aerodactyl aerodactyl
59 aipom/721-4589020992.png aipom aipom
60 aipom/743-1740865407.jpeg aipom aipom
61 aipom/753-3615597532.png aipom aipom
62 aipom/757-5646621475.png aipom aipom
63 aipom/763-4520430521.png aipom aipom
64 aipom/765-3141131859.jpeg aipom aipom
65 aipom/786-6217268769.jpeg aipom aipom
66 aipom/813-8019022990.jpeg arbok aipom
67 aipom/834-9307489115.jpeg aipom aipom
68 aipom/837-8849897302.jpeg aipom aipom
69 aipom/844-7749073684.png aipom aipom
70 aipom/846-4755368689.jpeg aipom aipom
71 aipom/848-8115628416.jpeg aipom aipom
72 aipom/849-9051869514.jpeg aipom aipom
73 aipom/853-2833716157.png aipom aipom
74 aipom/856-7224095754.jpeg aipom aipom
75 aipom/865-5866468150.jpeg aipom aipom
76 aipom/875-4980974776.jpeg aipom aipom
77 aipom/894-2612878986.jpeg aipom aipom
78 aipom/908-8474517286.png aipom aipom
79 aipom/910-3190747727.jpeg aipom aipom
80 aipom/912-6165380912.jpeg aipom aipom
81 aipom/913-8324389664.png aipom aipom
82 aipom/917-8367171558.jpeg aipom aipom
83 aipom/foo11.jpeg.jpeg aipom aipom
84 aipom/foo18.jpeg aipom aipom
85 alakazam/1000-7061962328.jpeg aerodactyl alakazam
86 alakazam/1031-9151272720.jpeg arcanine alakazam
87 alakazam/1035-7937090530.jpeg aipom alakazam
88 alakazam/1056-5849835340.jpeg articuno alakazam
89 alakazam/1062-8745297386.jpeg alakazam alakazam
90 alakazam/1076-8570605605.jpeg articuno alakazam
91 alakazam/1077-4846293778.jpeg ampharos alakazam
92 alakazam/1099-1620808408.jpeg arcanine alakazam
93 alakazam/1112-7078746680.png ariados alakazam
94 alakazam/1118-4108122277.jpeg alakazam alakazam
95 alakazam/920-6833713396.png arcanine alakazam
96 alakazam/931-6873778001.png alakazam alakazam
97 alakazam/956-3021990456.jpeg aipom alakazam
98 alakazam/960-2694340363.jpeg arcanine alakazam
99 alakazam/962-5099480633.jpeg aerodactyl alakazam
100 alakazam/963-5178274354.jpeg articuno alakazam
101 alakazam/973-8779204871.jpeg aerodactyl alakazam
102 alakazam/974-4124440255.jpeg alakazam alakazam
103 alakazam/foo10.jpeg aerodactyl alakazam
104 alakazam/foo212.jpeg aipom alakazam
105 alakazam/foo218.jpeg alakazam alakazam
106 alakazam/foo5.jpg arcanine alakazam
107 alakazam/foo8.jpg alakazam alakazam
108 ampharos/1174-2202497957.jpeg ampharos ampharos
109 ampharos/1184-1881276205.png arbok ampharos
110 ampharos/1185-5246231386.jpeg aerodactyl ampharos
111 ampharos/1230-1657265414.jpeg ampharos ampharos
112 ampharos/1231-1083799350.png ampharos ampharos
113 ampharos/1242-9664634939.png ampharos ampharos
114 ampharos/1247-1959740808.png ampharos ampharos
115 ampharos/1256-3145285474.png ampharos ampharos
116 ampharos/1260-6169529267.jpeg aerodactyl ampharos
117 ampharos/1267-8822467930.jpeg ampharos ampharos
118 ampharos/1277-3214623811.jpeg aipom ampharos
119 ampharos/1283-6366943215.jpeg aipom ampharos
120 ampharos/1353-6742653575.png ampharos ampharos
121 ampharos/1359-5113655166.jpeg ampharos ampharos
122 ampharos/foo2.jpg ampharos ampharos
123 ampharos/foo6.jpg ampharos ampharos
124 ampharos/foo9.jpg ampharos ampharos
125 ampharos/foo93.jpg aipom ampharos
126 arbok/1388-6797829841.jpeg arbok arbok
127 arbok/1405-6323899503.jpeg arbok arbok
128 arbok/1413-3351309878.png arbok arbok
129 arbok/1418-8164400474.jpeg arbok arbok
130 arbok/1428-5216845789.png ampharos arbok
131 arbok/1435-9029459638.png aipom arbok
132 arbok/1449-4122890273.jpeg aipom arbok
133 arbok/1450-2650813269.jpeg aipom arbok
134 arbok/1451-9879850634.png arbok arbok
135 arbok/1461-2551259164.jpeg arbok arbok
136 arbok/1477-2542261184.jpeg arcanine arbok
137 arbok/1479-9196759509.png aipom arbok
138 arbok/1481-7958212812.jpeg aipom arbok
139 arbok/1484-3677226883.png aipom arbok
140 arbok/1489-5005322603.jpeg aipom arbok
141 arbok/1500-6604716899.jpeg aipom arbok
142 arbok/1518-1780439881.png aipom arbok
143 arbok/1524-1118818965.jpeg arbok arbok
144 arbok/1533-8557716355.jpeg arbok arbok
145 arbok/1537-5644053937.jpeg arbok arbok
146 arbok/1542-7501328153.jpeg aipom arbok
147 arbok/1544-1433978852.png aipom arbok
148 arbok/1559-3265605154.jpeg arbok arbok
149 arbok/1564-5200596997.png arbok arbok
150 arbok/1568-8397767068.jpeg arbok arbok
151 arbok/1575-8974133816.jpeg aipom arbok
152 arbok/1580-9607407200.jpeg aipom arbok
153 arbok/1584-2653445443.jpeg arcanine arbok
154 arbok/1591-7222134783.jpeg articuno arbok
155 arbok/1596-5831443277.png arbok arbok
156 arcanine/1607-7510579623.png arcanine arcanine
157 arcanine/1612-7070481462.png aerodactyl arcanine
158 arcanine/1621-9447641440.jpeg aerodactyl arcanine
159 arcanine/1623-7291071677.png arcanine arcanine
160 arcanine/1629-2081851313.jpeg aerodactyl arcanine
161 arcanine/1646-5782610190.jpeg ampharos arcanine
162 arcanine/1647-3552511619.png arcanine arcanine
163 arcanine/1654-1065340850.jpeg articuno arcanine
164 arcanine/1658-3920956178.jpeg arcanine arcanine
165 arcanine/1660-4994017812.png aipom arcanine
166 arcanine/1661-4640938487.png aipom arcanine
167 arcanine/1662-5919666831.jpeg arcanine arcanine
168 arcanine/1664-7884820000.png aipom arcanine
169 arcanine/1680-8034205709.jpeg arcanine arcanine
170 arcanine/1689-5218285906.jpeg ariados arcanine
171 arcanine/1707-4817433995.jpeg ampharos arcanine
172 arcanine/1714-9206081098.jpeg arcanine arcanine
173 arcanine/1716-4788773315.jpeg arbok arcanine
174 arcanine/1732-5439691267.jpeg arcanine arcanine
175 arcanine/1742-7273143996.jpeg arcanine arcanine
176 arcanine/1748-7496739913.jpeg aipom arcanine
177 arcanine/1756-9534100354.jpeg aipom arcanine
178 arcanine/1772-3583766923.png arcanine arcanine
179 arcanine/1779-8155708087.jpeg articuno arcanine
180 arcanine/1796-2542939891.jpeg alakazam arcanine
181 arcanine/1798-1316101128.jpeg arcanine arcanine
182 arcanine/1799-4037483287.jpeg arcanine arcanine
183 arcanine/1800-4298464904.jpeg aerodactyl arcanine
184 arcanine/1801-5106783677.jpeg articuno arcanine
185 arcanine/1824-4683113129.jpeg arcanine arcanine
186 arcanine/1828-6443271536.png ampharos arcanine
187 arcanine/foo1.jpg arcanine arcanine
188 ariados/1835-4688056901.jpeg aerodactyl ariados
189 ariados/1836-6172413729.jpeg aipom ariados
190 ariados/1838-9202012379.jpeg aerodactyl ariados
191 ariados/1849-8842336642.png aerodactyl ariados
192 ariados/1868-7156106531.png aerodactyl ariados
193 ariados/1872-1187500170.jpeg ariados ariados
194 ariados/1891-2764444315.png articuno ariados
195 ariados/1902-2653071356.jpeg arcanine ariados
196 ariados/1942-8829792665.png aipom ariados
197 ariados/1952-9193823104.jpeg aerodactyl ariados
198 ariados/1953-2645380504.jpeg aipom ariados
199 ariados/1959-3300102490.png ariados ariados
200 ariados/1981-7496749423.png arcanine ariados
201 ariados/1985-4948471665.png ariados ariados
202 ariados/1991-1777606010.png aerodactyl ariados
203 ariados/2003-3510735157.png aerodactyl ariados
204 ariados/2035-5158359644.jpeg ariados ariados
205 ariados/2039-3431867516.jpeg ariados ariados
206 ariados/2059-7890530597.png articuno ariados
207 ariados/2060-5898858083.png ariados ariados
208 ariados/2064-6682545262.jpeg aipom ariados
209 ariados/foo11.jpg ariados ariados
210 ariados/foo26.jpg ariados ariados
211 ariados/foo44.jpg ariados ariados
212 ariados/foo49.jpg ariados ariados
213 articuno/2073-7809092541.jpeg articuno articuno
214 articuno/2085-7052761748.jpeg articuno articuno
215 articuno/2095-6921257459.jpeg articuno articuno
216 articuno/2096-6308378468.png articuno articuno
217 articuno/2102-1329622956.png articuno articuno
218 articuno/2107-8053345332.jpeg articuno articuno
219 articuno/2113-1248647607.jpeg articuno articuno
220 articuno/2114-6892333372.jpeg aerodactyl articuno
221 articuno/2125-7749020832.png aerodactyl articuno
222 articuno/2126-6858278053.png articuno articuno
223 articuno/2139-9272965198.png aipom articuno
224 articuno/2142-3378770136.png aipom articuno
225 articuno/2143-2355227677.jpeg articuno articuno
226 articuno/2151-4399190319.jpeg articuno articuno
227 articuno/2157-1665701945.jpeg articuno articuno
228 articuno/2164-3966760608.png articuno articuno
229 articuno/2165-4302966565.jpeg aipom articuno
230 articuno/2174-4540338442.jpeg articuno articuno
231 articuno/2176-5974052533.jpeg articuno articuno
232 articuno/2181-8410748754.png articuno articuno
233 articuno/2193-3946018185.png articuno articuno
234 articuno/2196-5459622128.jpeg aerodactyl articuno
235 articuno/2225-8392577088.jpeg aerodactyl articuno
236 articuno/2228-6870571712.png articuno articuno
237 articuno/2231-7810840201.jpeg articuno articuno
238 articuno/2235-3199000946.jpeg articuno articuno
239 articuno/2236-2271075971.jpeg articuno articuno
240 articuno/2244-9237590036.jpeg aipom articuno
241 articuno/2248-1457800987.jpeg aipom articuno
242 articuno/2256-2321257546.jpeg articuno articuno
243 articuno/2271-5636228793.jpeg articuno articuno
244 articuno/2277-5851728134.jpeg articuno articuno
245 articuno/2278-2389148786.jpeg articuno articuno
246 articuno/2288-6629601066.png articuno articuno
247 azumarill/2299-9733152769.jpeg aipom azumarill
248 azumarill/2304-9204876487.jpeg aipom azumarill
249 azumarill/2306-7645494912.jpeg aipom azumarill
250 azumarill/2322-5530381780.png aipom azumarill
251 azumarill/2330-1958535550.png ampharos azumarill
252 azumarill/2336-1911923830.jpeg azumarill azumarill
253 azumarill/2341-6394340057.jpeg aipom azumarill
254 azumarill/2344-2091443238.png ampharos azumarill
255 azumarill/2346-3184441527.png arbok azumarill
256 azumarill/2354-1695422158.jpeg azumarill azumarill
257 azumarill/2358-9993711638.png aipom azumarill
258 azumarill/2361-3424510412.jpeg ampharos azumarill
259 azumarill/2362-1256305669.png ampharos azumarill
260 azumarill/2366-2433009018.jpeg aipom azumarill
261 azumarill/2370-4294479571.jpeg aipom azumarill
262 azumarill/2372-4696431407.png azumarill azumarill
263 azumarill/2381-4791483123.png azumarill azumarill
264 azumarill/2386-8098817128.png aipom azumarill
265 azumarill/2390-6814193569.jpeg aipom azumarill
266 azumarill/2392-5736579775.jpeg aipom azumarill
267 azumarill/2395-9990891589.jpeg ampharos azumarill
268 azumarill/2405-8125189326.jpeg azumarill azumarill
269 azumarill/2410-6187829728.png azumarill azumarill
270 azumarill/2412-2279205325.jpeg aipom azumarill
271 azumarill/2418-7547370639.jpeg aipom azumarill
272 azumarill/2437-6117801568.jpeg aipom azumarill
273 azumarill/2451-8330388016.jpeg azumarill azumarill
274 azumarill/2463-6299384668.png aipom azumarill
275 azumarill/2467-6065322189.png azumarill azumarill
276 azumarill/2468-5911493502.png azumarill azumarill
277 azumarill/2475-4840849837.jpeg azumarill azumarill
278 azumarill/2487-9173097107.png aipom azumarill
279 azumarill/2495-4765204844.jpeg aipom azumarill
280 azumarill/2501-5072132000.jpeg arbok azumarill
281 azumarill/2503-8682756505.jpeg aipom azumarill
282 azumarill/2514-8865586985.jpeg alakazam azumarill
283 azumarill/2520-2969850156.png aipom azumarill
284 azumarill/foo7.jpg aerodactyl azumarill
Binary file not shown.
Binary file not shown.