From 2d73587c96caf0b96459296688acf015412bcb6b Mon Sep 17 00:00:00 2001 From: Keerthana Srinivasan Date: Mon, 6 Dec 2021 17:10:35 -0500 Subject: [PATCH 1/2] Finished --- .DS_Store | Bin 0 -> 6148 bytes Part 2.rtf | 37 + Part 3.rtf | 65 + answers/.DS_Store | Bin 0 -> 6148 bytes part 4.rtf | 30 + pokemon_sql/pokemon_pokemon_trainer.sql | 28805 ++++++++++++++++++++++ pokemon_sql/pokemon_pokemons.sql | 0 pokemon_sql/pokemon_trainers.sql | 11861 +++++++++ pokemon_sql/pokemon_types.sql | 19 + 9 files changed, 40817 insertions(+) create mode 100644 .DS_Store create mode 100644 Part 2.rtf create mode 100644 Part 3.rtf create mode 100644 answers/.DS_Store create mode 100644 part 4.rtf create mode 100644 pokemon_sql/pokemon_pokemon_trainer.sql create mode 100644 pokemon_sql/pokemon_pokemons.sql create mode 100644 pokemon_sql/pokemon_trainers.sql create mode 100644 pokemon_sql/pokemon_types.sql diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5f939d5c85cba22b553b1e7148429d7530f00f82 GIT binary patch literal 6148 zcmeHK%Wl&^6upxM>bOG90*P*rykUV zY3v3f`llNQewuZ=zgT0VdE@4$VVH(_%X~dPjq-8kWV3YWBrkdE*vU>^;8 z=l(RGv~NF-!p!l*X(GtJH$}*+7k=nP`7oM=UMl7p%K^h^8LdfsXFeb7cXzG+gWh7- znjiGx5BByKiFu=3fo|7R40NdnEG=7}5l( z{XjwO*L_9g{Zd-ju&!%**DSY|=Izx|A`$20Q(Tple$;fE}d6t1{T# z8UxKMH1+p4_#U85E1(t73X~P#`-6qT(NaRmT2(Jc%<|7hSGOQEf>kcbf& zlT@IjGIhmZl8$~$#n}oAiIPrCT|St4GE+AcCZ3M@EfG%4mZ)p3fL5TYz=mwL`T2ji z{{CMj>6TVND{!q8V9n8ZG{lnB*}Akie%4wjCn(%_Tp>|VP^sfsIQ%HyK@o;Ai#tGD UVIdJcF#RDQWYCpX;7S$v3o?=fjsO4v literal 0 HcmV?d00001 diff --git a/Part 2.rtf b/Part 2.rtf new file mode 100644 index 0000000..f19cfe1 --- /dev/null +++ b/Part 2.rtf @@ -0,0 +1,37 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2580 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +{\*\expandedcolortbl;;\csgray\c0;} +\margl1440\margr1440\vieww11520\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 + +\f0\fs24 \cf0 ### Part 2: Simple Selects and Counts\ +\ +Directions: Write a sql query or sql queries that can answer the following questions\ +\ +* What are all the types of pokemon that a pokemon can have?\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT * FROM types; +\f0\fs24 \cf0 \CocoaLigature1 \ +\ +* What is the name of the pokemon with id 45?\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT name * FROM pokemons WHERE id = 45;\ + +\f0\fs24 \cf0 \CocoaLigature1 \ +* How many pokemon are there?\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(*) FROM pokemons;\ + +\f0\fs24 \cf0 \CocoaLigature1 \ +* How many types are there?\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(*) FROM types; +\f0\fs24 \cf0 \CocoaLigature1 \ +\ +* How many pokemon have a secondary type?\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(*)AS Number_of_Pokemons,secondary_type FROM pokemons GROUP BY secondary_type; +\f0\fs24 \cf0 \CocoaLigature1 \ +\ +} \ No newline at end of file diff --git a/Part 3.rtf b/Part 3.rtf new file mode 100644 index 0000000..22e4167 --- /dev/null +++ b/Part 3.rtf @@ -0,0 +1,65 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2580 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +{\*\expandedcolortbl;;\csgray\c0;} +\margl1440\margr1440\vieww11520\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 + +\f0\fs24 \cf0 \ +### Part 3: Joins and Groups\ +Directions: Write a sql query or sql queries that can answer the following questions\ +\ +\ +* What is each pokemon's primary type?\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT p.name, t.name\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 + -> FROM pokemons p\ + -> JOIN types t\ + -> ON p.primary_type = t.id; +\f0\fs24 \cf0 \CocoaLigature1 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 +\cf0 * What is Rufflet's secondary type?\ +\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT secondary_type FROM pokemons WHERE name = "Rufflet"; +\f0\fs24 \cf0 \CocoaLigature1 \ +\ +* What are the names of the pokemon that belong to the trainer with trainerID 303?\ +\ + +\f1\fs22 \cf2 \CocoaLigature0 SELECT p.name AS pokemon_name FROM pokemons p JOIN trainers t ON p.id=t.trainerID WHERE trainerID=303; +\f0\fs24 \cf0 \CocoaLigature1 \ +* How many pokemon have a secondary type `Poison`?\ +\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 + +\f1\fs22 \cf2 \CocoaLigature0 SELECT count(*) FROM pokemons p JOIN types t ON p.secondary_type=t.id WHERE t.name='Poison';\ + +\f0\fs24 \cf0 \CocoaLigature1 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 +\cf0 * What are all the primary types and how many pokemon have that type?\ +\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 + +\f1\fs22 \cf2 \CocoaLigature0 SELECT t.name,count(p.primary_type)\ + -> FROM types t\ + -> JOIN pokemons p\ + -> ON p.primary_type = t.id\ + -> GROUP BY t.name; +\f0\fs24 \cf0 \CocoaLigature1 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 +\cf0 * How many pokemon at level 100 does each trainer with at least one level 100 pokemone have? (Hint: your query should not display a trainer)\ +\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 + +\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(pokemon_id)\ + -> FROM pokemon_trainer\ + -> WHERE pokelevel = 100\ + -> GROUP BY trainerID\ + -> HAVING COUNT(pokelevel)>1;\ + +\f0\fs24 \cf0 \CocoaLigature1 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 +\cf0 * How many pokemon only belong to one trainer and no other?\ +} \ No newline at end of file diff --git a/answers/.DS_Store b/answers/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f7003bfa4aab8f9220c0accd706f3cc7fbe1e1f9 GIT binary patch literal 6148 zcmeHKyH3ME5S)b+k*M`7ummutJL1j5)cm^p#7-(>L^|*BfG0d-g#%tE)!!$ayTC0T$$J^` z4_CYW-FCO%vcezlg1-6)<4Pt4q<|EV0#ZN<{7wPyy|novQBev=0V(jMfPWtv-LV%A ziSg-Rh!KD|V>*oMm?enK6U1IPBr-#@q!N>AHDXxOnQv9s3x~v{!{TJ#r%tw-P%KVo zzC}5#Cn`z-DKJ*xG`CCd|CjV1=KnECJ1HOq{*?kY+gxwfe5LBGlb7>e+vqoRuX(4t qaUB$fXvf58$J}^3K8vEPYrf|7UN|HMo%x^>^)ukQ$fUquEAR=dvK%b{ literal 0 HcmV?d00001 diff --git a/part 4.rtf b/part 4.rtf new file mode 100644 index 0000000..82f7a70 --- /dev/null +++ b/part 4.rtf @@ -0,0 +1,30 @@ +{\rtf1\ansi\ansicpg1252\cocoartf2580 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Menlo-Regular;} +{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} +{\*\expandedcolortbl;;\csgray\c0;} +\margl1440\margr1440\vieww11520\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 + +\f0\fs24 \cf0 ### Part 4: Final Report\ +\ +Directions: Write a query that returns the following collumns:\ +\ +| Pokemon Name | Trainer Name | Level | Primary Type | Secondary Type |\ +|:------------:|:------------:|:-----:|:------------:|:--------------:|\ +| Pokemon's name| Trainer's name| Current Level| Primary Type Name| Secondary Type Name|\ +\ +Sort the data by finding out which trainer has the strongest pokemon so that this will act as a ranking of strongest to weakest trainer. You may interpret strongest in whatever way you want, but you will have to explain your decision.\ +\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 + +\f1\fs22 \cf2 \CocoaLigature0 SELECT pokemons_name, trainers_name, current_level, primary_type_name, types.name AS secondary_type_name\ +FROM (select pokemons.name as pokemons_name, trainers.trainername as trainers_name, pokemon_trainer.pokelevel as current_level, types.name as primary_type_name, pokemons.secondary_type as secondary_type_id\ + -> FROM pokemons\ + -> JOIN pokemon_trainer ON pokemon_trainer.pokemon_id = pokemons.id\ + -> JOIN trainers on trainers.trainerid = pokemon_trainer.trainerid\ + -> JOIN types on types.id = pokemons.primary_type) table_1\ + -> JOIN types on types.id = secondary_type_id\ + -> ORDER BY current_level desc\ + -> \ + -> ;\ +} \ No newline at end of file diff --git a/pokemon_sql/pokemon_pokemon_trainer.sql b/pokemon_sql/pokemon_pokemon_trainer.sql new file mode 100644 index 0000000..17e982c --- /dev/null +++ b/pokemon_sql/pokemon_pokemon_trainer.sql @@ -0,0 +1,28805 @@ +##create table pokemon_trainer(trainerID int null,pokelevel int null,hp int null,maxhp int null,attack int null,defense int null,spatk int null,spdef int null,speed int null,pokemon_id int null); +##INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (0, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (12, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (12, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (12, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (12, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (13, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (13, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (13, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (14, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (14, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (14, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (15, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (15, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (15, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (16, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (16, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (16, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (17, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (17, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (17, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (18, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (19, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (20, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (21, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (22, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (22, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (22, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (23, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (24, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (24, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (24, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (25, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (25, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (25, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (26, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (26, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (27, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (27, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (28, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (29, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (30, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (31, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (31, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (31, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (32, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (32, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (32, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (33, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (33, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (33, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (34, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (34, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (34, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (34, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (35, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (35, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (36, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (36, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (37, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (37, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (38, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (38, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (39, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (39, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (40, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (40, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (40, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (41, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (41, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (41, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (42, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (42, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (43, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (43, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (44, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (44, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (44, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (45, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (46, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (46, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (46, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (47, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (47, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (47, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (48, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (48, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (49, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (49, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (49, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (50, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (50, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (50, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (51, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (51, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (51, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (52, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (52, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (53, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (53, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (53, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (54, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (54, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (55, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (55, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (56, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (57, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (57, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (57, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (58, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (58, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (58, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (59, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (59, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (59, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (60, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (60, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (60, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (61, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (61, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (61, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (62, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (62, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (63, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (63, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (63, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (63, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (63, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (64, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (65, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (65, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (66, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (67, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (68, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (69, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (70, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (70, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (71, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (71, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (72, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (73, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (74, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (74, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (74, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (75, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (75, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (75, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (76, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (77, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (78, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (78, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (78, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (79, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (79, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (79, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (80, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (81, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (81, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (81, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (82, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (82, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (82, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (82, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (83, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (83, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (83, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (84, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (84, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (84, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (85, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (85, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (85, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (86, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (86, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (86, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (87, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (87, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (87, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (88, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (88, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (88, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (89, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (89, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (89, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (90, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (91, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (91, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (92, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (92, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (93, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (94, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (94, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (95, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (96, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (96, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (96, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (96, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (96, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (97, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (97, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (97, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (98, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (98, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (98, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (99, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (99, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (99, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (100, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (100, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (100, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (101, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (101, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (101, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (102, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (102, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (102, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (103, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (103, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (104, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (104, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (105, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (105, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (106, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (106, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (106, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (107, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (107, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (107, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (108, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (108, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (108, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (109, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (109, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (110, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (110, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (111, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (111, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (112, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (112, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (113, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (114, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (115, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (115, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (116, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (117, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (118, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (119, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (120, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (120, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (121, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (121, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (121, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (122, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (122, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (123, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (123, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (124, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (125, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (125, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (126, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (126, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (127, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (128, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (129, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (129, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (129, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (130, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (130, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (131, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (131, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (131, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (132, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (133, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (133, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (134, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (135, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (135, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (136, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (136, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (136, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (137, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (138, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (138, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (138, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (139, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (139, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (139, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (139, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (140, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (140, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (141, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (141, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (141, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (142, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (142, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (142, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (143, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (143, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (143, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (144, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (144, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (144, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (145, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (145, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (145, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (146, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (146, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (146, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (147, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (148, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (149, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (149, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (150, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (150, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (151, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (151, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (152, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (152, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (153, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (153, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (154, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (155, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (156, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (156, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (157, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (157, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (158, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (158, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (159, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (159, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (160, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (160, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (161, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (161, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (161, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (162, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (162, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (163, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (163, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (164, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (165, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (165, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (166, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (166, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (166, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (166, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (167, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (167, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (167, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (168, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (168, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (168, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (169, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (169, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (169, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (170, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (170, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (170, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (171, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (171, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (171, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (172, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (173, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (174, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (175, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (176, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (176, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (176, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (177, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (178, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (178, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (178, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (179, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (179, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (179, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (180, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (180, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (181, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (181, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (182, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (183, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (184, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (185, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (185, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (185, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (186, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (186, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (186, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (187, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (187, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (187, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (188, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (188, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (188, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (188, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (189, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (189, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (190, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (190, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (191, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (191, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (192, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (192, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (193, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (193, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (194, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (194, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (194, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (195, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (195, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (195, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (196, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (196, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (197, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (197, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (198, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (198, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (198, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (199, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (200, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (200, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (200, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (201, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (201, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (201, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (202, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (202, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (203, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (203, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (203, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (204, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (204, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (204, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (205, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (205, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (205, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (206, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (206, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (207, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (207, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (207, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (208, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (208, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (209, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (209, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (210, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (211, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (211, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (211, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (212, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (212, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (212, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (213, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (213, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (213, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (214, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (214, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (214, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (215, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (215, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (215, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (216, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (216, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (217, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (217, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (217, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (217, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (217, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (218, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (219, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (219, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (220, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (221, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (222, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (223, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (224, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (224, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (225, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (225, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (226, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (227, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (228, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (228, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (228, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (229, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (229, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (229, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (230, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (231, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (232, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (232, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (232, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (233, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (233, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (233, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (234, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (235, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (235, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (235, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (236, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (236, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (236, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (236, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (237, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (237, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (237, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (238, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (238, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (238, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (239, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (239, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (239, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (240, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (240, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (240, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (241, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (241, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (241, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (242, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (242, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (242, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (243, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (243, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (243, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (244, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (245, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (245, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (246, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (246, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (247, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (248, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (248, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (249, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (250, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (250, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (250, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (250, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (250, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (251, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (251, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (251, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (252, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (252, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (252, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (253, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (253, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (253, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (254, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (254, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (254, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (255, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (255, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (255, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (256, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (256, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (256, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (257, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (257, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (258, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (258, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (259, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (259, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (260, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (260, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (260, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (261, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (261, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (261, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (262, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (262, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (262, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (263, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (263, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (264, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (264, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (265, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (265, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (266, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (266, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (267, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (268, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (269, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (269, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (270, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (271, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (272, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (273, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (274, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (274, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (275, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (275, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (275, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (276, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (276, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (277, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (277, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (278, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (279, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (279, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (280, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (280, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (281, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (282, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (283, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (283, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (283, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (284, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (284, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (285, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (285, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (285, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (286, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (287, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (287, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (288, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (289, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (289, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (290, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (290, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (290, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (291, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (292, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (292, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (292, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (293, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (293, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (293, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (293, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (294, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (294, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (295, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (295, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (295, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (296, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (296, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (296, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (297, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (297, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (297, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (298, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (298, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (298, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (299, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (299, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (299, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (300, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (300, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (300, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (301, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (302, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (303, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (303, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (304, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (304, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (305, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (305, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (306, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (306, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (307, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (307, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (308, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (308, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (308, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (309, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (309, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (310, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (310, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (311, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (312, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (312, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (313, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (313, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (313, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (313, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (314, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (314, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (314, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (315, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (315, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (315, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (316, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (316, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (316, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (317, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (317, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (317, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (318, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (318, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (318, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (319, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (320, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (321, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (322, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (323, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (323, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (323, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (324, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (325, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (325, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (325, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (326, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (326, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (326, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (327, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (327, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (328, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (328, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (329, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (330, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (331, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (332, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (332, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (332, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (333, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (333, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (333, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (334, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (334, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (334, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (335, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (335, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (335, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (335, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (336, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (336, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (337, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (337, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (338, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (338, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (339, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (339, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (340, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (340, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (341, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (341, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (341, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (342, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (342, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (342, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (343, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (343, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (344, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (344, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (345, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (345, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (345, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (346, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (347, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (347, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (347, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (348, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (348, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (348, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (349, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (349, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (350, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (350, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (350, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (351, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (351, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (351, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (352, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (352, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (352, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (353, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (353, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (354, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (354, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (354, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (355, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (355, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (356, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (356, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (357, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (358, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (358, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (358, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (359, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (359, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (359, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (360, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (360, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (360, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (361, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (361, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (361, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (362, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (362, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (362, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (363, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (363, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (364, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (364, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (364, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (364, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (364, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (365, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (366, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (366, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (367, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (368, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (369, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (370, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (371, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (371, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (372, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (372, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (373, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (374, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (375, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (375, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (375, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (376, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (376, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (376, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (377, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (378, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (379, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (379, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (379, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (380, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (380, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (380, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (381, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (382, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (382, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (382, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (383, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (383, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (383, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (383, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (384, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (384, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (384, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (385, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (385, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (385, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (386, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (386, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (386, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (387, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (387, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (387, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (388, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (388, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (388, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (389, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (389, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (389, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (390, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (390, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (390, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (391, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (392, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (392, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (393, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (393, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (394, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (395, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (395, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (396, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (397, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (397, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (397, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (397, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (397, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (398, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (398, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (398, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (399, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (399, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (399, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (400, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (400, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (400, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (401, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (401, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (401, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (402, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (402, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (402, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (403, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (403, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (403, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (404, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (404, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (405, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (405, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (406, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (406, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (407, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (407, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (407, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (408, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (408, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (408, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (409, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (409, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (409, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (410, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (410, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (411, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (411, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (412, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (412, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (413, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (413, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (414, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (415, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (416, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (416, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (417, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (418, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (419, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (420, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (421, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (421, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (422, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (422, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (422, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (423, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (423, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (424, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (424, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (425, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (426, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (426, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (427, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (427, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (428, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (429, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (430, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (430, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (430, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (431, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (431, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (432, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (432, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (432, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (433, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (434, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (434, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (435, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (436, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (436, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (437, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (437, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (437, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (438, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (439, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (439, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (439, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (440, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (440, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (440, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (440, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (441, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (441, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (442, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (442, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (442, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (443, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (443, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (443, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (444, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (444, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (444, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (445, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (445, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (445, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (446, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (446, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (446, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (447, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (447, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (447, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (448, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (449, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (450, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (450, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (451, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (451, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (452, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (452, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (453, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (453, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (454, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (454, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (455, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (455, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (455, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (456, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (456, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (457, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (457, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (458, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (459, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (459, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (460, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (460, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (460, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (460, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (461, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (461, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (461, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (462, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (462, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (462, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (463, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (463, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (463, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (464, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (464, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (464, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (465, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (465, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (465, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (466, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (467, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (468, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (469, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (470, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (470, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (470, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (471, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (472, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (472, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (472, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (473, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (473, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (473, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (474, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (474, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (475, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (475, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (476, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (477, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (478, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (479, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (479, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (479, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (480, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (480, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (480, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (481, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (481, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (481, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (482, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (482, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (482, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (482, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (483, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (483, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (484, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (484, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (485, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (485, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (486, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (486, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (487, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (487, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (488, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (488, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (488, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (489, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (489, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (489, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (490, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (490, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (491, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (491, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (492, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (492, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (492, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (493, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (494, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (494, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (494, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (495, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (495, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (495, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (496, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (496, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (497, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (497, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (497, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (498, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (498, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (498, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (499, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (499, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (499, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (500, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (500, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (501, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (501, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (501, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (502, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (502, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (503, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (503, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (504, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (505, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (505, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (505, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (506, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (506, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (506, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (507, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (507, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (507, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (508, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (508, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (508, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (509, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (509, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (509, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (510, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (510, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (511, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (511, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (511, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (511, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (511, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (512, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (513, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (513, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (514, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (515, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (516, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (517, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (518, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (518, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (519, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (519, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (520, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (521, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (522, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (522, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (522, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (523, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (523, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (523, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (524, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (525, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (526, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (526, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (526, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (527, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (527, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (527, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (528, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (529, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (529, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (529, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (530, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (530, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (530, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (530, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (531, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (531, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (531, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (532, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (532, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (532, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (533, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (533, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (533, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (534, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (534, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (534, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (535, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (535, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (535, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (536, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (536, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (536, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (537, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (537, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (537, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (538, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (539, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (539, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (540, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (540, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (541, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (542, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (542, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (543, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (544, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (544, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (544, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (544, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (544, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (545, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (545, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (545, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (546, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (546, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (546, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (547, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (547, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (547, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (548, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (548, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (548, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (549, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (549, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (549, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (550, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (550, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (550, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (551, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (551, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (552, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (552, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (553, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (553, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (554, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (554, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (554, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (555, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (555, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (555, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (556, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (556, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (556, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (557, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (557, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (558, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (558, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (559, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (559, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (560, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (560, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (561, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (562, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (563, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (563, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (564, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (565, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (566, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (567, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (568, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (568, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (569, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (569, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (569, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (570, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (570, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (571, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (571, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (572, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (573, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (573, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (574, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (574, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (575, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (576, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (577, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (577, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (577, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (578, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (578, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (579, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (579, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (579, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (580, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (581, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (581, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (582, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (583, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (583, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (584, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (584, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (584, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (585, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (586, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (586, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (586, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (587, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (587, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (587, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (587, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (588, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (588, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (589, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (589, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (589, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (590, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (590, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (590, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (591, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (591, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (591, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (592, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (592, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (592, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (593, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (593, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (593, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (594, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (594, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (594, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (595, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (596, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (597, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (597, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (598, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (598, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (599, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (599, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (600, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (600, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (601, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (601, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (602, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (602, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (602, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (603, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (603, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (604, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (604, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (605, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (606, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (606, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (607, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (607, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (607, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (607, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (608, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (608, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (608, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (609, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (609, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (609, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (610, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (610, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (610, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (611, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (611, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (611, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (612, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (612, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (612, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (613, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (614, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (615, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (616, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (617, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (617, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (617, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (618, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (619, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (619, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (619, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (620, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (620, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (620, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (621, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (621, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (622, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (622, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (623, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (624, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (625, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (626, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (626, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (626, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (627, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (627, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (627, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (628, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (628, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (628, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (629, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (629, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (629, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (629, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (630, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (630, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (631, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (631, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (632, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (632, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (633, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (633, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (634, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (634, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (635, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (635, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (635, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (636, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (636, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (636, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (637, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (637, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (638, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (638, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (639, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (639, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (639, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (640, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (641, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (641, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (641, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (642, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (642, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (642, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (643, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (643, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (644, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (644, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (644, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (645, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (645, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (645, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (646, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (646, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (646, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (647, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (647, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (648, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (648, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (648, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (649, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (649, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (650, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (650, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (651, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (652, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (652, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (652, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (653, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (653, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (653, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (654, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (654, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (654, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (655, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (655, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (655, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (656, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (656, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (656, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (657, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (657, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (658, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (658, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (658, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (658, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (658, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (659, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (660, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (660, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (661, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (662, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (663, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (664, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (665, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (665, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (666, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (666, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (667, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (668, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (669, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (669, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (669, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (670, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (670, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (670, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (671, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (672, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (673, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (673, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (673, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (674, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (674, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (674, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (675, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (676, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (676, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (676, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (677, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (677, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (677, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (677, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (678, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (678, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (678, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (679, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (679, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (679, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (680, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (680, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (680, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (681, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (681, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (681, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (682, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (682, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (682, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (683, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (683, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (683, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (684, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (684, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (684, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (685, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (686, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (686, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (687, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (687, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (688, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (689, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (689, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (690, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (691, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (691, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (691, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (691, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (691, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (692, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (692, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (692, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (693, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (693, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (693, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (694, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (694, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (694, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (695, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (695, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (695, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (696, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (696, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (696, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (697, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (697, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (697, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (698, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (698, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (699, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (699, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (700, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (700, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (701, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (701, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (701, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (702, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (702, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (702, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (703, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (703, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (703, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (704, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (704, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (705, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (705, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (706, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (706, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (707, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (707, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (708, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (709, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (710, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (710, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (711, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (712, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (713, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (714, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (715, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (715, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (716, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (716, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (716, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (717, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (717, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (718, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (718, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (719, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (720, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (720, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (721, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (721, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (722, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (723, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (724, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (724, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (724, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (725, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (725, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (726, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (726, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (726, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (727, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (728, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (728, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (729, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (730, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (730, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (731, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (731, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (731, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (732, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (733, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (733, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (733, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (734, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (734, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (734, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (734, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (735, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (735, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (736, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (736, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (736, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (737, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (737, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (737, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (738, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (738, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (738, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (739, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (739, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (739, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (740, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (740, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (740, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (741, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (741, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (741, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (742, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (743, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (744, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (744, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (745, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (745, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (746, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (746, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (747, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (747, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (748, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (748, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (749, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (749, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (749, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (750, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (750, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (751, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (751, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (752, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (753, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (753, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (754, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (754, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (754, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (754, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (755, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (755, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (755, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (756, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (756, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (756, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (757, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (757, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (757, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (758, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (758, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (758, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (759, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (759, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (759, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (760, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (761, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (762, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (763, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (764, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (764, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (764, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (765, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (766, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (766, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (766, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (767, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (767, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (767, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (768, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (768, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (769, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (769, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (770, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (771, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (772, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (773, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (773, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (773, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (774, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (774, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (774, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (775, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (775, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (775, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (776, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (776, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (776, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (776, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (777, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (777, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (778, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (778, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (779, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (779, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (780, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (780, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (781, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (781, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (782, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (782, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (782, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (783, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (783, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (783, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (784, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (784, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (785, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (785, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (786, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (786, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (786, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (787, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (788, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (788, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (788, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (789, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (789, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (789, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (790, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (790, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (791, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (791, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (791, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (792, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (792, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (792, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (793, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (793, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (793, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (794, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (794, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (795, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (795, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (795, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (796, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (796, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (797, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (797, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (798, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (799, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (799, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (799, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (800, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (800, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (800, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (801, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (801, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (801, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (802, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (802, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (802, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (803, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (803, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (803, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (804, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (804, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (805, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (805, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (805, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (805, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (805, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (806, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (807, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (807, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (808, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (809, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (810, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (811, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (812, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (812, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (813, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (813, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (814, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (815, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (816, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (816, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (816, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (817, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (817, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (817, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (818, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (819, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (820, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (820, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (820, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (821, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (821, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (821, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (822, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (823, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (823, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (823, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (824, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (824, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (824, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (824, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (825, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (825, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (825, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (826, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (826, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (826, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (827, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (827, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (827, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (828, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (828, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (828, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (829, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (829, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (829, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (830, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (830, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (830, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (831, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (831, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (831, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (832, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (833, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (833, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (834, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (834, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (835, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (836, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (836, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (837, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (838, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (838, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (838, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (838, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (838, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (839, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (839, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (839, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (840, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (840, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (840, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (841, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (841, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (841, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (842, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (842, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (842, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (843, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (843, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (843, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (844, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (844, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (844, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (845, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (845, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (846, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (846, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (847, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (847, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (848, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (848, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (848, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (849, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (849, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (849, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (850, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (850, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (850, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (851, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (851, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (852, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (852, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (853, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (853, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (854, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (854, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (855, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (856, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (857, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (857, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (858, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (859, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (860, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (861, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (862, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (862, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (863, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (863, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (863, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (864, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (864, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (865, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (865, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (866, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (867, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (867, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (868, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (868, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (869, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (870, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (871, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (871, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (871, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (872, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (872, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (873, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (873, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (873, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (874, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (875, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (875, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (876, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (877, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (877, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (878, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (878, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (878, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (879, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (880, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (880, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (880, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (881, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (881, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (881, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (881, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (882, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (882, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (883, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (883, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (883, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (884, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (884, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (884, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (885, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (885, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (885, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (886, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (886, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (886, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (887, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (887, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (887, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (888, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (888, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (888, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (889, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (890, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (891, 42, 125, 125, 57, 60, 70, 74, 49, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (891, 42, 163, 163, 57, 36, 57, 41, 36, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (891, 42, 121, 121, 78, 70, 74, 74, 116, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (891, 42, 142, 142, 78, 87, 78, 99, 78, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (891, 42, 277, 277, 24, 24, 49, 108, 62, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (892, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (892, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (893, 42, 109, 109, 83, 49, 78, 45, 53, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (893, 42, 121, 121, 95, 62, 91, 57, 66, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (893, 42, 134, 134, 108, 74, 104, 78, 78, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (893, 42, 96, 96, 78, 66, 57, 66, 41, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (893, 42, 117, 117, 99, 87, 70, 87, 45, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (894, 41, 110, 110, 126, 114, 60, 60, 81, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (894, 42, 121, 121, 74, 74, 62, 62, 95, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (894, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (894, 42, 113, 113, 74, 99, 99, 57, 91, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (894, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (895, 42, 146, 146, 99, 91, 125, 74, 66, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (895, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (895, 42, 109, 109, 99, 171, 91, 57, 78, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (895, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (895, 42, 142, 142, 112, 87, 104, 87, 99, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (896, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (897, 47, 172, 172, 144, 134, 64, 64, 59, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (897, 48, 166, 166, 94, 127, 118, 99, 51, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (897, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (897, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (897, 47, 172, 172, 111, 97, 59, 97, 106, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (898, 52, 189, 189, 158, 148, 70, 70, 65, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (898, 54, 186, 186, 105, 143, 132, 110, 56, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (898, 55, 183, 183, 167, 107, 107, 107, 85, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (898, 52, 174, 174, 158, 106, 91, 112, 80, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (898, 52, 189, 189, 122, 106, 65, 106, 117, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (899, 22, 61, 61, 45, 28, 43, 26, 30, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (899, 22, 59, 59, 34, 37, 45, 41, 26, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (899, 22, 68, 68, 52, 34, 50, 32, 37, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (899, 22, 66, 66, 41, 43, 50, 45, 30, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (899, 22, 66, 66, 40, 40, 48, 48, 39, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (900, 47, 135, 135, 87, 78, 83, 83, 130, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (900, 47, 158, 158, 87, 97, 87, 111, 87, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (900, 48, 145, 145, 95, 94, 100, 118, 118, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (900, 48, 137, 137, 118, 89, 99, 99, 123, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (900, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (901, 53, 150, 150, 98, 87, 92, 92, 145, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (901, 53, 177, 177, 98, 108, 98, 124, 98, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (901, 54, 162, 162, 106, 105, 111, 132, 132, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (901, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (901, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (902, 42, 121, 121, 78, 70, 74, 74, 116, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (902, 42, 109, 109, 91, 66, 74, 74, 95, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (902, 42, 121, 121, 104, 78, 87, 87, 108, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (902, 42, 99, 99, 54, 53, 62, 74, 74, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (902, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (903, 42, 113, 113, 88, 70, 62, 78, 101, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (903, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (903, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (903, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (903, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (904, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (904, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (904, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (904, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (904, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (905, 37, 104, 104, 77, 99, 55, 77, 51, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (905, 37, 104, 104, 77, 99, 55, 77, 51, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (905, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (905, 39, 117, 117, 67, 71, 61, 61, 62, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (905, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (906, 38, 118, 118, 94, 102, 52, 60, 68, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (906, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (906, 38, 88, 88, 52, 140, 41, 52, 71, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (906, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (906, 38, 107, 107, 79, 102, 56, 79, 52, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (907, 59, 184, 184, 150, 102, 97, 114, 179, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (908, 37, 101, 101, 88, 59, 44, 73, 103, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (908, 37, 119, 119, 70, 66, 77, 107, 92, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (909, 26, 60, 60, 32, 29, 66, 32, 55, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (909, 28, 73, 73, 43, 40, 79, 45, 68, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (909, 30, 86, 86, 54, 51, 93, 60, 81, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (910, 27, 73, 73, 60, 44, 49, 49, 63, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (910, 27, 87, 87, 62, 60, 44, 49, 34, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (911, 39, 109, 109, 67, 58, 67, 65, 50, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (912, 54, 164, 164, 132, 95, 89, 95, 148, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (912, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (912, 54, 353, 353, 29, 29, 62, 137, 78, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (913, 59, 178, 178, 144, 104, 97, 104, 161, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (913, 59, 166, 166, 144, 108, 120, 120, 150, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (913, 59, 385, 385, 32, 32, 67, 150, 85, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (914, 55, 150, 150, 123, 85, 123, 112, 145, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (914, 55, 206, 206, 116, 99, 126, 115, 67, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (915, 35, 110, 110, 87, 63, 59, 63, 98, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (915, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (916, 54, 148, 148, 73, 100, 73, 121, 127, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (916, 54, 191, 191, 78, 110, 89, 110, 78, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (916, 54, 358, 358, 35, 35, 105, 170, 83, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (917, 33, 120, 120, 49, 69, 56, 69, 49, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (918, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (918, 33, 101, 101, 82, 92, 36, 59, 36, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (919, 39, 109, 109, 67, 58, 67, 65, 50, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (920, 30, 86, 86, 51, 51, 66, 66, 66, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (920, 30, 140, 140, 63, 42, 69, 48, 63, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (921, 30, 74, 74, 45, 69, 33, 48, 54, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (921, 32, 101, 101, 70, 144, 51, 58, 35, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (922, 54, 153, 153, 106, 115, 82, 128, 137, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (922, 54, 186, 186, 116, 116, 94, 94, 62, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (922, 54, 148, 148, 78, 132, 116, 100, 94, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (923, 34, 97, 97, 78, 54, 78, 71, 92, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (923, 38, 113, 113, 73, 77, 47, 50, 43, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (923, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (924, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (924, 54, 156, 156, 102, 108, 65, 69, 59, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (924, 54, 148, 148, 78, 132, 116, 100, 94, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (925, 55, 161, 161, 123, 101, 90, 90, 101, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (925, 55, 126, 126, 63, 63, 96, 85, 79, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (926, 53, 156, 156, 82, 82, 108, 87, 71, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (926, 53, 187, 187, 96, 112, 100, 116, 78, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (927, 60, 199, 199, 116, 128, 164, 134, 92, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (927, 60, 210, 210, 108, 126, 113, 131, 87, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (928, 23, 70, 70, 49, 37, 49, 37, 50, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (928, 23, 84, 84, 70, 49, 40, 59, 50, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (929, 39, 112, 112, 79, 59, 79, 59, 82, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (929, 39, 109, 109, 85, 57, 65, 57, 65, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (929, 39, 137, 137, 116, 80, 65, 97, 82, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (930, 59, 165, 165, 118, 87, 118, 87, 121, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (930, 59, 161, 161, 126, 84, 97, 84, 97, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (930, 59, 202, 202, 173, 119, 97, 144, 121, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (931, 44, 105, 105, 51, 47, 126, 82, 113, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (931, 44, 122, 122, 100, 69, 100, 91, 117, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (932, 25, 79, 79, 61, 39, 61, 39, 47, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (932, 26, 63, 63, 37, 97, 29, 37, 50, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (932, 27, 79, 79, 60, 41, 47, 41, 47, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (933, 55, 128, 128, 101, 167, 90, 167, 52, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (933, 55, 189, 189, 173, 112, 145, 112, 134, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (934, 35, 96, 96, 84, 56, 42, 70, 98, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (934, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (935, 56, 158, 158, 114, 181, 69, 103, 103, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (936, 49, 174, 174, 145, 73, 125, 73, 92, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (937, 39, 137, 137, 85, 85, 69, 69, 46, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (938, 33, 91, 91, 66, 49, 43, 43, 69, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (938, 33, 101, 101, 69, 59, 76, 59, 72, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (939, 55, 145, 145, 107, 79, 68, 68, 112, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (939, 55, 161, 161, 112, 96, 123, 96, 118, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (940, 56, 175, 175, 176, 170, 131, 125, 103, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (941, 59, 172, 172, 132, 156, 97, 114, 138, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (942, 31, 83, 83, 68, 50, 56, 56, 71, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (942, 31, 80, 80, 47, 44, 87, 50, 75, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (942, 34, 114, 114, 88, 54, 75, 51, 95, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (943, 55, 172, 172, 115, 110, 129, 112, 118, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (943, 55, 167, 167, 134, 145, 74, 85, 96, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (944, 58, 173, 173, 136, 97, 124, 101, 124, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (944, 58, 174, 174, 141, 109, 130, 109, 79, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (945, 57, 161, 161, 145, 93, 93, 105, 133, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (945, 57, 167, 167, 122, 185, 122, 105, 48, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (946, 37, 108, 108, 74, 80, 58, 89, 96, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (947, 34, 110, 110, 73, 70, 81, 71, 75, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (947, 33, 101, 101, 82, 92, 36, 59, 36, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (947, 35, 92, 92, 77, 56, 63, 63, 80, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (948, 46, 146, 146, 97, 93, 108, 95, 99, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (948, 48, 320, 320, 31, 31, 94, 151, 75, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (949, 23, 63, 63, 38, 32, 32, 30, 52, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (949, 23, 59, 59, 29, 27, 68, 45, 61, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (950, 40, 103, 103, 63, 53, 53, 49, 87, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (950, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (951, 60, 176, 176, 125, 103, 103, 97, 161, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (951, 60, 157, 157, 86, 80, 188, 140, 170, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (952, 55, 161, 161, 96, 96, 85, 85, 101, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (952, 55, 156, 156, 96, 74, 107, 74, 129, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (953, 54, 168, 168, 116, 89, 83, 89, 101, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (953, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (953, 54, 148, 148, 100, 78, 132, 78, 94, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (954, 56, 130, 130, 75, 64, 69, 69, 125, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (954, 56, 158, 158, 103, 92, 97, 97, 153, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (954, 56, 181, 181, 106, 103, 106, 153, 100, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (955, 57, 207, 207, 133, 116, 71, 116, 128, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (955, 57, 190, 190, 173, 111, 111, 111, 88, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (956, 56, 198, 198, 103, 103, 97, 97, 75, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (956, 56, 153, 153, 114, 148, 81, 114, 75, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (956, 56, 164, 164, 148, 114, 86, 114, 142, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (957, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (957, 37, 119, 119, 86, 66, 66, 77, 68, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (958, 55, 139, 139, 90, 74, 134, 112, 96, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (958, 55, 172, 172, 126, 96, 96, 112, 99, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (959, 45, 129, 129, 111, 84, 93, 93, 115, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (959, 45, 137, 137, 111, 86, 102, 86, 62, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (959, 48, 168, 168, 180, 79, 84, 70, 77, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (960, 53, 150, 150, 156, 130, 82, 98, 114, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (960, 53, 156, 156, 119, 98, 87, 87, 98, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (961, 53, 177, 177, 82, 103, 87, 103, 55, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (961, 53, 182, 182, 108, 135, 66, 98, 130, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (962, 60, 199, 199, 92, 116, 98, 116, 62, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (962, 60, 205, 205, 122, 152, 74, 110, 146, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (963, 54, 153, 153, 94, 94, 78, 78, 121, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (963, 54, 186, 186, 159, 109, 89, 132, 111, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (964, 57, 190, 190, 162, 111, 93, 93, 76, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (965, 55, 167, 167, 134, 129, 68, 101, 145, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (966, 62, 187, 187, 151, 145, 76, 114, 163, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (967, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (967, 36, 116, 116, 77, 74, 86, 75, 79, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (967, 37, 115, 115, 81, 166, 59, 66, 40, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (968, 37, 123, 123, 96, 59, 81, 55, 103, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (968, 37, 101, 101, 88, 59, 44, 73, 103, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (969, 30, 92, 92, 51, 57, 68, 62, 66, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (969, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (969, 34, 100, 100, 68, 74, 53, 82, 88, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (970, 54, 159, 159, 89, 100, 118, 108, 116, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (970, 54, 159, 159, 46, 78, 46, 78, 67, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (970, 54, 153, 153, 106, 115, 82, 128, 137, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (971, 57, 183, 183, 106, 74, 106, 74, 80, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (971, 57, 198, 198, 213, 93, 99, 82, 91, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (972, 57, 144, 144, 98, 82, 76, 82, 72, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (972, 57, 144, 144, 82, 162, 116, 116, 59, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (973, 46, 159, 159, 85, 88, 108, 104, 76, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (973, 48, 166, 166, 126, 123, 94, 103, 76, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (974, 44, 135, 135, 95, 196, 69, 78, 47, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (974, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (975, 59, 184, 184, 120, 120, 120, 120, 120, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (975, 60, 193, 193, 134, 122, 110, 122, 182, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (976, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (976, 43, 115, 115, 102, 67, 50, 84, 119, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (977, 21, 51, 51, 27, 25, 54, 27, 46, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (977, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (977, 24, 64, 64, 37, 35, 68, 40, 59, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (978, 32, 88, 88, 61, 51, 42, 51, 70, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (978, 33, 104, 104, 75, 72, 53, 59, 40, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (978, 32, 98, 98, 67, 58, 74, 58, 70, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (979, 44, 140, 140, 91, 91, 91, 91, 91, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (980, 54, 203, 203, 114, 97, 123, 113, 66, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (980, 54, 153, 153, 121, 67, 73, 110, 105, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (980, 55, 150, 150, 79, 101, 112, 112, 178, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (981, 39, 121, 121, 97, 70, 65, 70, 108, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (981, 40, 132, 132, 83, 91, 103, 95, 67, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (982, 54, 148, 148, 110, 143, 78, 110, 73, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (982, 57, 207, 207, 133, 116, 71, 116, 128, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (983, 35, 97, 97, 34, 77, 34, 77, 33, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (983, 36, 100, 100, 35, 79, 35, 79, 34, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (983, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (984, 38, 111, 111, 76, 82, 59, 91, 98, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (984, 35, 99, 99, 59, 70, 59, 70, 73, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (984, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (985, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (985, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (985, 41, 114, 114, 70, 60, 70, 68, 52, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (986, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (986, 24, 71, 71, 42, 42, 54, 54, 54, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (987, 40, 120, 120, 123, 99, 63, 83, 71, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (988, 53, 188, 188, 101, 112, 101, 112, 82, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (988, 54, 162, 162, 106, 105, 111, 132, 132, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (988, 56, 164, 164, 103, 153, 170, 125, 92, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (989, 40, 116, 116, 85, 65, 95, 87, 103, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (989, 40, 116, 116, 95, 65, 99, 87, 93, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (990, 54, 164, 164, 157, 96, 127, 116, 127, 200); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (990, 54, 164, 164, 127, 96, 159, 127, 114, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (991, 55, 161, 161, 123, 101, 90, 90, 101, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (991, 56, 128, 128, 64, 64, 97, 86, 81, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (992, 55, 161, 161, 85, 85, 112, 90, 74, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (992, 56, 197, 197, 101, 118, 105, 122, 82, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (993, 61, 202, 202, 118, 130, 167, 136, 94, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (993, 62, 217, 217, 111, 130, 116, 135, 90, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (994, 24, 73, 73, 49, 64, 30, 44, 54, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (994, 25, 119, 119, 54, 36, 59, 41, 54, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (994, 24, 69, 69, 44, 30, 42, 28, 54, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (995, 44, 127, 127, 86, 113, 51, 78, 95, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (995, 45, 206, 206, 93, 60, 102, 69, 93, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (995, 44, 144, 144, 113, 69, 95, 64, 122, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (996, 61, 184, 184, 142, 179, 81, 118, 142, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (996, 59, 267, 267, 120, 78, 132, 89, 120, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (996, 61, 196, 196, 155, 94, 130, 87, 167, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (997, 47, 135, 135, 99, 75, 111, 101, 120, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (997, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (998, 32, 98, 98, 86, 67, 51, 67, 83, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (998, 34, 97, 97, 75, 50, 58, 50, 58, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (998, 31, 89, 89, 50, 106, 62, 109, 40, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (999, 55, 128, 128, 101, 167, 90, 167, 52, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (999, 56, 192, 192, 176, 114, 148, 114, 137, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1000, 39, 94, 94, 73, 120, 65, 120, 38, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1000, 39, 117, 117, 104, 81, 61, 81, 100, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1001, 55, 123, 123, 63, 63, 63, 63, 63, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1001, 59, 149, 149, 150, 119, 67, 156, 115, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1002, 47, 172, 172, 144, 134, 64, 64, 59, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1002, 48, 146, 146, 118, 91, 108, 91, 66, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1003, 44, 157, 157, 108, 91, 73, 73, 64, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1004, 35, 117, 117, 101, 66, 52, 59, 87, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1004, 36, 109, 109, 75, 64, 82, 64, 79, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1005, 55, 178, 178, 156, 101, 79, 90, 134, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1005, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1006, 60, 187, 187, 188, 182, 140, 134, 110, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1007, 61, 178, 178, 136, 161, 100, 118, 142, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1008, 35, 124, 124, 77, 77, 63, 63, 42, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1008, 36, 120, 120, 104, 68, 53, 61, 89, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1008, 38, 113, 113, 73, 77, 47, 50, 43, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1009, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1009, 56, 170, 170, 137, 148, 75, 86, 97, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1009, 57, 167, 167, 111, 93, 145, 93, 145, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1010, 58, 175, 175, 89, 107, 89, 136, 153, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1010, 59, 196, 196, 114, 126, 161, 132, 91, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1010, 58, 129, 129, 78, 211, 60, 78, 107, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1011, 58, 164, 164, 147, 95, 95, 107, 136, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1011, 59, 165, 165, 161, 102, 124, 100, 102, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1011, 58, 164, 164, 122, 92, 136, 124, 147, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1012, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1013, 38, 122, 122, 81, 77, 90, 79, 83, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1013, 38, 114, 114, 94, 106, 41, 68, 41, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1013, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1014, 45, 300, 300, 30, 30, 88, 142, 70, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1014, 46, 146, 146, 95, 95, 95, 95, 95, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1014, 48, 142, 142, 89, 132, 147, 108, 79, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1015, 24, 66, 66, 42, 35, 61, 52, 44, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1015, 24, 56, 56, 25, 25, 35, 30, 32, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1015, 25, 89, 89, 41, 51, 44, 51, 29, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1016, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1016, 44, 103, 103, 51, 51, 78, 69, 64, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1016, 45, 152, 152, 70, 88, 75, 88, 48, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1017, 59, 161, 161, 108, 102, 173, 150, 132, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1017, 61, 175, 175, 106, 106, 179, 167, 124, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1017, 61, 227, 227, 130, 142, 124, 142, 87, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1018, 57, 167, 167, 99, 99, 88, 88, 105, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1018, 58, 193, 193, 132, 112, 132, 124, 95, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1019, 55, 150, 150, 107, 134, 85, 112, 79, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1019, 56, 175, 175, 103, 103, 125, 137, 103, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1020, 56, 167, 167, 137, 92, 137, 92, 97, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1020, 56, 158, 158, 103, 92, 97, 97, 153, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1020, 56, 158, 158, 170, 92, 109, 92, 109, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1021, 58, 181, 181, 165, 117, 136, 117, 107, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1021, 59, 196, 196, 179, 114, 114, 114, 91, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1021, 58, 175, 175, 136, 170, 78, 112, 136, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1022, 56, 170, 170, 137, 148, 75, 86, 97, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1022, 56, 210, 210, 118, 101, 128, 117, 68, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1022, 57, 155, 155, 105, 145, 105, 162, 111, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1023, 59, 178, 178, 144, 156, 79, 91, 102, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1023, 59, 221, 221, 124, 106, 134, 123, 72, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1023, 60, 163, 163, 110, 152, 110, 170, 116, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1024, 58, 251, 251, 107, 78, 124, 83, 78, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1024, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1024, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1025, 38, 90, 90, 45, 45, 68, 60, 56, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1025, 38, 103, 103, 68, 52, 52, 61, 83, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1025, 39, 125, 125, 90, 69, 69, 81, 72, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1026, 52, 151, 151, 91, 91, 153, 143, 106, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1026, 56, 175, 175, 128, 97, 97, 114, 101, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1026, 52, 148, 148, 102, 111, 79, 123, 132, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1027, 45, 170, 170, 138, 93, 84, 75, 93, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1027, 46, 136, 136, 108, 67, 108, 67, 82, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1027, 48, 168, 168, 180, 79, 84, 70, 77, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1028, 55, 156, 156, 162, 134, 85, 101, 118, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1028, 56, 226, 226, 90, 90, 110, 110, 100, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1029, 55, 150, 150, 107, 118, 134, 118, 151, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1029, 56, 142, 142, 103, 81, 81, 81, 103, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1030, 61, 166, 166, 118, 130, 148, 130, 167, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1030, 62, 193, 193, 151, 126, 126, 126, 151, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1031, 56, 164, 164, 103, 69, 92, 69, 92, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1031, 57, 195, 195, 168, 115, 93, 139, 117, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1032, 55, 123, 123, 112, 79, 79, 101, 156, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1032, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1032, 54, 162, 162, 106, 105, 111, 132, 132, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1033, 61, 184, 184, 148, 142, 75, 112, 161, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1034, 63, 190, 190, 153, 147, 78, 115, 166, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1035, 39, 102, 102, 58, 58, 58, 58, 58, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1035, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1035, 42, 134, 134, 87, 87, 87, 87, 87, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1036, 41, 114, 114, 70, 60, 70, 68, 52, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1036, 42, 113, 113, 99, 66, 49, 83, 116, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1037, 34, 103, 103, 58, 64, 76, 70, 75, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1037, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1037, 35, 103, 103, 70, 76, 55, 84, 91, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1038, 52, 153, 153, 86, 96, 114, 104, 112, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1038, 52, 184, 184, 75, 106, 86, 106, 75, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1038, 56, 158, 158, 110, 119, 85, 132, 142, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1039, 58, 186, 186, 108, 75, 108, 75, 81, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1039, 59, 204, 204, 220, 97, 102, 85, 94, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1039, 58, 158, 158, 83, 141, 124, 107, 101, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1040, 58, 170, 170, 123, 107, 101, 107, 85, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1040, 61, 208, 208, 159, 155, 118, 130, 95, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1041, 47, 163, 163, 87, 90, 111, 106, 78, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1041, 48, 166, 166, 126, 123, 94, 103, 76, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1042, 47, 135, 135, 99, 75, 111, 101, 120, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1042, 48, 123, 123, 79, 113, 137, 89, 89, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1043, 29, 83, 83, 52, 49, 61, 53, 61, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1043, 29, 63, 63, 35, 56, 70, 47, 41, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1044, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1044, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1044, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1045, 53, 159, 159, 124, 89, 114, 92, 114, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1045, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1046, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1046, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1046, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1047, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1047, 52, 153, 153, 127, 143, 54, 91, 54, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1048, 35, 96, 96, 45, 45, 63, 49, 42, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1049, 43, 120, 120, 63, 80, 89, 89, 140, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1049, 43, 120, 120, 84, 93, 106, 93, 119, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1049, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1050, 35, 78, 78, 45, 66, 66, 35, 59, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1050, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1051, 29, 81, 81, 38, 38, 53, 41, 35, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1051, 29, 92, 92, 61, 70, 67, 73, 44, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1052, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1053, 38, 103, 103, 68, 90, 90, 52, 83, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1054, 47, 135, 135, 144, 78, 92, 78, 92, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1054, 47, 125, 125, 68, 64, 148, 111, 134, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1055, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1055, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1055, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1056, 34, 110, 110, 88, 61, 85, 64, 64, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1056, 34, 93, 93, 105, 95, 51, 51, 68, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1056, 34, 100, 100, 105, 58, 81, 92, 61, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1057, 38, 122, 122, 98, 68, 94, 71, 71, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1057, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1057, 38, 111, 111, 117, 64, 90, 102, 68, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1058, 52, 163, 163, 132, 91, 127, 96, 96, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1058, 49, 130, 130, 150, 135, 71, 71, 96, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1058, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1059, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1059, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1059, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1059, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1060, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1060, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1061, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1061, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1061, 33, 140, 140, 59, 56, 89, 79, 59, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1062, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1062, 31, 95, 95, 50, 50, 65, 53, 44, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1063, 38, 111, 111, 94, 71, 79, 79, 98, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1063, 37, 126, 126, 73, 81, 103, 84, 59, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1064, 42, 121, 121, 104, 78, 87, 87, 108, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1064, 40, 136, 136, 79, 87, 111, 91, 63, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1065, 56, 158, 158, 137, 103, 114, 114, 142, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1065, 59, 196, 196, 114, 126, 161, 132, 91, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1066, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1066, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1067, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1067, 36, 115, 115, 77, 89, 79, 93, 74, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1068, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1068, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1069, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1069, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1069, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1070, 48, 152, 152, 103, 113, 51, 51, 46, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1070, 46, 125, 125, 80, 74, 95, 81, 95, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1070, 46, 126, 126, 79, 95, 81, 95, 74, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1071, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1072, 25, 71, 71, 34, 34, 46, 36, 31, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1072, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1073, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1073, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1074, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1074, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1074, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1075, 38, 108, 108, 82, 68, 71, 71, 71, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1076, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1076, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1076, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1077, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1077, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1077, 35, 96, 96, 63, 84, 84, 49, 77, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1078, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1078, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1078, 35, 96, 96, 63, 84, 84, 49, 77, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1079, 47, 130, 130, 80, 81, 97, 97, 78, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1079, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1080, 36, 98, 98, 68, 50, 68, 53, 61, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1080, 33, 101, 101, 57, 61, 53, 53, 53, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1080, 36, 80, 80, 50, 57, 68, 57, 79, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1081, 38, 103, 103, 71, 52, 71, 56, 64, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1081, 36, 109, 109, 62, 66, 57, 57, 58, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1081, 38, 84, 84, 52, 60, 71, 60, 83, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1082, 47, 158, 158, 125, 97, 115, 97, 111, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1082, 43, 145, 145, 99, 95, 84, 93, 85, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1082, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1083, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1083, 53, 177, 177, 121, 116, 103, 114, 104, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1083, 56, 153, 153, 109, 120, 137, 120, 153, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1084, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1084, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1085, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1085, 53, 198, 198, 114, 124, 108, 124, 77, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1086, 43, 124, 124, 76, 72, 115, 102, 132, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1086, 43, 124, 124, 67, 119, 106, 54, 72, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1086, 43, 132, 132, 106, 102, 54, 80, 115, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1087, 30, 86, 86, 66, 39, 33, 42, 56, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1087, 30, 95, 95, 75, 53, 63, 53, 85, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1088, 27, 82, 82, 45, 44, 56, 44, 76, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1089, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1090, 64, 205, 205, 125, 109, 85, 98, 143, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1090, 64, 184, 184, 143, 111, 92, 98, 133, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1090, 64, 199, 199, 85, 111, 143, 168, 130, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1091, 35, 93, 93, 63, 63, 73, 70, 58, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1091, 35, 99, 99, 49, 66, 70, 77, 56, 237); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1091, 35, 103, 103, 45, 52, 105, 59, 38, 238); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1092, 44, 135, 135, 107, 76, 107, 76, 109, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1092, 44, 135, 135, 107, 76, 107, 76, 109, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1092, 44, 135, 135, 107, 76, 107, 76, 109, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1093, 65, 189, 189, 128, 106, 154, 106, 168, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1093, 65, 227, 227, 116, 136, 122, 141, 94, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1093, 65, 241, 241, 197, 132, 119, 106, 132, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1094, 40, 128, 128, 99, 75, 67, 75, 95, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1094, 40, 144, 144, 67, 75, 87, 103, 67, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1095, 41, 119, 119, 115, 77, 52, 60, 74, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1096, 30, 86, 86, 56, 66, 62, 60, 85, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1096, 30, 83, 83, 62, 77, 47, 42, 29, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1097, 40, 106, 106, 71, 59, 55, 59, 49, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1097, 40, 126, 126, 115, 91, 67, 91, 57, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1098, 44, 122, 122, 91, 104, 82, 95, 64, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1098, 44, 162, 162, 104, 86, 95, 86, 85, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1099, 45, 147, 147, 120, 102, 61, 102, 93, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1099, 45, 125, 125, 111, 101, 70, 83, 122, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1100, 39, 121, 121, 95, 68, 95, 68, 97, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1100, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1100, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1101, 39, 98, 98, 85, 58, 61, 58, 69, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1101, 39, 105, 105, 61, 61, 85, 61, 42, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1101, 39, 98, 98, 85, 73, 50, 50, 65, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1102, 32, 94, 94, 72, 48, 72, 48, 84, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1102, 32, 91, 91, 70, 60, 54, 60, 65, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1102, 32, 96, 96, 53, 51, 65, 51, 89, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1103, 65, 312, 312, 125, 132, 80, 86, 112, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1103, 65, 176, 176, 158, 177, 119, 138, 145, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1103, 65, 195, 195, 125, 125, 190, 151, 80, 260); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1104, 66, 198, 198, 160, 154, 81, 121, 173, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1104, 66, 324, 324, 147, 88, 147, 88, 107, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1105, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1105, 36, 109, 109, 73, 61, 87, 61, 95, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1106, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1106, 35, 110, 110, 89, 73, 66, 73, 82, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1107, 31, 86, 86, 85, 44, 62, 44, 59, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1108, 39, 114, 114, 110, 73, 50, 58, 71, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1108, 39, 113, 113, 85, 73, 77, 73, 50, 264); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1108, 39, 125, 125, 73, 50, 97, 65, 132, 265); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1109, 40, 117, 117, 113, 75, 51, 59, 73, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1109, 40, 117, 117, 113, 75, 51, 59, 73, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1110, 68, 199, 199, 141, 116, 116, 109, 181, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1110, 68, 190, 190, 117, 111, 206, 158, 179, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1110, 68, 279, 279, 145, 138, 145, 158, 111, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1111, 32, 96, 96, 53, 51, 65, 51, 89, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1111, 32, 91, 91, 45, 61, 64, 70, 51, 237); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1112, 68, 190, 190, 206, 111, 131, 111, 131, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1112, 68, 184, 184, 179, 124, 111, 111, 165, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1112, 68, 252, 252, 138, 151, 158, 151, 117, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1113, 61, 175, 175, 106, 106, 179, 167, 124, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1113, 61, 175, 175, 179, 106, 106, 167, 124, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1114, 39, 98, 98, 85, 58, 61, 58, 69, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1114, 39, 105, 105, 61, 61, 85, 61, 42, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1114, 39, 98, 98, 85, 73, 50, 50, 65, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1115, 39, 121, 121, 95, 68, 95, 68, 97, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1115, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1115, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1116, 65, 182, 182, 93, 73, 177, 151, 151, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1116, 65, 267, 267, 112, 106, 171, 151, 112, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1116, 65, 195, 195, 151, 190, 86, 125, 151, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1117, 65, 163, 163, 93, 128, 151, 128, 146, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1117, 65, 176, 176, 86, 93, 145, 132, 119, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1117, 65, 312, 312, 125, 132, 80, 86, 112, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1118, 41, 108, 108, 73, 60, 56, 60, 50, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1119, 45, 125, 125, 81, 97, 90, 88, 125, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1119, 45, 138, 138, 111, 77, 93, 77, 125, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1120, 29, 75, 75, 32, 44, 47, 53, 41, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1120, 29, 90, 90, 50, 58, 79, 58, 67, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1120, 29, 85, 85, 40, 44, 40, 44, 47, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1121, 63, 147, 147, 108, 84, 90, 90, 90, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1121, 63, 183, 183, 153, 172, 65, 109, 65, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1121, 63, 183, 183, 166, 128, 96, 128, 159, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1121, 63, 183, 183, 122, 103, 159, 103, 159, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1122, 39, 103, 103, 69, 58, 54, 58, 48, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1122, 39, 114, 114, 110, 73, 50, 58, 71, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1122, 39, 123, 123, 112, 89, 65, 89, 56, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1123, 62, 187, 187, 145, 110, 182, 145, 130, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1124, 41, 119, 119, 115, 77, 52, 60, 74, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1125, 35, 99, 99, 75, 49, 49, 49, 69, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1125, 35, 110, 110, 63, 56, 63, 56, 65, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1125, 35, 99, 99, 73, 84, 66, 77, 52, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1126, 41, 119, 119, 82, 88, 64, 98, 105, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1126, 41, 114, 114, 52, 68, 97, 68, 64, 276); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1127, 55, 150, 150, 98, 118, 109, 107, 152, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1127, 55, 172, 172, 151, 112, 96, 85, 127, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1128, 33, 91, 91, 90, 46, 65, 46, 63, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1128, 33, 85, 85, 74, 56, 36, 43, 54, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1129, 55, 182, 182, 161, 112, 85, 112, 85, 279); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1129, 55, 164, 164, 88, 112, 138, 112, 131, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1130, 55, 194, 194, 134, 162, 145, 79, 79, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1131, 63, 183, 183, 124, 103, 149, 103, 163, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1131, 63, 220, 220, 113, 132, 118, 137, 91, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1131, 63, 234, 234, 191, 128, 115, 103, 128, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1132, 66, 211, 211, 156, 115, 167, 115, 114, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1132, 66, 225, 225, 114, 173, 107, 200, 114, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1132, 66, 178, 178, 107, 107, 167, 167, 167, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1133, 39, 125, 125, 54, 69, 89, 104, 81, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1133, 39, 180, 180, 81, 53, 89, 61, 81, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1134, 33, 81, 81, 53, 63, 46, 56, 36, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1134, 33, 107, 107, 92, 69, 59, 53, 78, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1134, 33, 104, 104, 82, 89, 46, 53, 59, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1135, 47, 153, 153, 120, 73, 101, 68, 130, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1135, 47, 135, 135, 59, 87, 97, 153, 87, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1136, 46, 136, 136, 106, 81, 95, 72, 111, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1136, 46, 136, 136, 106, 81, 95, 72, 111, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1136, 46, 164, 164, 67, 95, 76, 95, 67, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1137, 50, 158, 158, 123, 93, 83, 93, 118, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1138, 33, 90, 90, 68, 84, 51, 46, 31, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1138, 33, 85, 85, 74, 56, 36, 43, 54, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1139, 53, 140, 140, 103, 87, 103, 87, 133, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1139, 53, 188, 188, 87, 98, 114, 135, 87, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1140, 18, 57, 57, 40, 34, 24, 34, 33, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1140, 18, 59, 59, 18, 29, 18, 29, 25, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1141, 63, 190, 190, 153, 147, 78, 115, 166, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1141, 63, 309, 309, 141, 84, 141, 84, 103, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1142, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1143, 55, 249, 249, 112, 73, 123, 84, 112, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1143, 55, 150, 150, 101, 140, 101, 156, 107, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1144, 47, 130, 130, 68, 115, 101, 87, 83, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1144, 47, 233, 233, 106, 64, 106, 64, 78, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1145, 53, 161, 161, 116, 90, 116, 90, 127, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1145, 53, 156, 156, 105, 87, 126, 87, 138, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1146, 39, 113, 113, 77, 100, 46, 69, 85, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1146, 39, 117, 117, 65, 77, 104, 77, 89, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1146, 39, 117, 117, 90, 69, 81, 61, 95, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1147, 63, 193, 193, 115, 104, 90, 104, 153, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1147, 63, 234, 234, 109, 159, 96, 147, 128, 292); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1147, 63, 200, 200, 161, 109, 136, 109, 134, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1148, 63, 202, 202, 123, 108, 84, 96, 141, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1148, 63, 221, 221, 182, 122, 99, 122, 128, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1148, 63, 227, 227, 147, 122, 134, 122, 120, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1149, 39, 113, 113, 61, 108, 97, 50, 65, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1149, 39, 121, 121, 97, 68, 81, 68, 109, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1149, 39, 113, 113, 81, 128, 50, 73, 73, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1150, 50, 136, 136, 73, 168, 118, 128, 53, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1151, 47, 158, 158, 125, 97, 115, 97, 111, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1151, 47, 177, 177, 148, 78, 68, 83, 104, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1152, 63, 177, 177, 90, 71, 172, 147, 147, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1152, 63, 259, 259, 109, 103, 166, 147, 109, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1152, 63, 196, 196, 159, 109, 103, 122, 191, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1153, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1153, 18, 59, 59, 44, 34, 40, 31, 46, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1154, 62, 156, 156, 89, 122, 145, 122, 140, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1154, 62, 168, 168, 83, 89, 138, 126, 114, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1154, 62, 298, 298, 120, 126, 76, 83, 107, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1155, 34, 92, 92, 70, 87, 53, 47, 32, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1155, 34, 100, 100, 81, 56, 85, 75, 80, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1156, 48, 233, 233, 94, 99, 60, 65, 84, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1157, 41, 123, 123, 73, 73, 64, 64, 77, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1157, 41, 119, 119, 89, 77, 81, 77, 52, 264); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1158, 54, 148, 148, 132, 120, 83, 98, 145, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1158, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1159, 50, 173, 173, 133, 103, 93, 103, 73, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1160, 50, 148, 148, 100, 83, 120, 83, 131, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1161, 55, 167, 167, 120, 94, 120, 94, 132, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1161, 55, 183, 183, 107, 118, 151, 123, 85, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1162, 39, 102, 102, 73, 58, 58, 58, 73, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1162, 39, 117, 117, 97, 73, 100, 77, 50, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1163, 47, 149, 149, 99, 95, 111, 97, 101, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1163, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1164, 48, 180, 180, 99, 108, 113, 108, 84, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1165, 66, 176, 176, 172, 176, 92, 92, 172, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1165, 66, 185, 185, 114, 107, 200, 154, 173, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1165, 66, 231, 231, 193, 97, 167, 97, 122, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1166, 55, 178, 178, 131, 97, 140, 97, 96, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1166, 55, 161, 161, 109, 90, 131, 90, 143, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1167, 34, 93, 93, 93, 47, 67, 47, 64, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1167, 34, 100, 100, 73, 56, 81, 75, 88, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1168, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1168, 47, 139, 139, 106, 125, 78, 92, 111, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1169, 55, 158, 158, 87, 85, 109, 85, 150, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1169, 55, 161, 161, 90, 107, 145, 107, 123, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1170, 40, 112, 112, 59, 99, 87, 75, 71, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1170, 40, 112, 112, 79, 87, 99, 87, 111, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1171, 54, 153, 153, 127, 86, 132, 116, 124, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1171, 54, 202, 202, 164, 110, 100, 89, 110, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1172, 50, 153, 153, 110, 86, 110, 86, 121, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1173, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1173, 33, 94, 94, 71, 46, 46, 46, 65, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1173, 33, 83, 83, 49, 76, 32, 73, 23, 298); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1174, 55, 148, 148, 144, 148, 77, 77, 144, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1174, 55, 166, 166, 128, 168, 84, 152, 46, 299); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1175, 31, 95, 95, 84, 59, 87, 59, 71, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1176, 60, 175, 175, 170, 104, 80, 128, 176, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1177, 65, 182, 182, 145, 184, 138, 119, 106, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1177, 65, 185, 185, 144, 179, 131, 179, 71, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1177, 66, 211, 211, 180, 134, 167, 134, 94, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1178, 56, 170, 170, 120, 249, 86, 97, 58, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1178, 56, 153, 153, 81, 103, 114, 114, 181, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1178, 57, 207, 207, 133, 116, 71, 116, 128, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1179, 46, 126, 126, 122, 159, 62, 66, 53, 305); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1180, 26, 79, 79, 81, 45, 53, 45, 53, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1180, 25, 76, 76, 76, 64, 41, 49, 56, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1181, 58, 158, 158, 89, 130, 194, 130, 118, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1182, 29, 90, 90, 85, 38, 70, 38, 70, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1182, 30, 91, 91, 54, 54, 90, 84, 63, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1183, 54, 142, 142, 127, 83, 62, 105, 148, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1183, 55, 139, 139, 129, 222, 118, 74, 101, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1184, 36, 148, 148, 59, 59, 72, 72, 66, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1185, 36, 102, 102, 53, 68, 75, 75, 118, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1186, 57, 144, 144, 82, 162, 116, 116, 59, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1186, 58, 170, 170, 176, 141, 89, 118, 101, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1187, 55, 139, 139, 107, 107, 96, 96, 79, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1187, 56, 164, 164, 131, 165, 97, 109, 75, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1188, 24, 59, 59, 54, 35, 30, 30, 49, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1188, 24, 85, 85, 71, 49, 42, 42, 35, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1188, 25, 66, 66, 33, 30, 44, 35, 49, 309); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1189, 42, 117, 117, 95, 66, 95, 87, 112, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1189, 42, 134, 134, 89, 85, 99, 87, 91, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1189, 43, 120, 120, 89, 115, 63, 89, 59, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1190, 36, 123, 123, 71, 79, 100, 82, 57, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1191, 56, 142, 142, 81, 193, 81, 193, 81, 310); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1191, 56, 153, 153, 125, 86, 125, 114, 148, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1191, 57, 173, 173, 133, 133, 133, 133, 122, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1192, 52, 153, 153, 75, 54, 122, 164, 132, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1192, 53, 188, 188, 130, 108, 87, 87, 77, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1192, 54, 153, 153, 78, 62, 148, 127, 127, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1193, 54, 186, 186, 143, 110, 100, 110, 78, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1193, 55, 162, 162, 129, 118, 145, 129, 111, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1194, 54, 132, 132, 83, 73, 94, 73, 105, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1194, 55, 205, 205, 167, 112, 101, 90, 112, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1195, 45, 136, 136, 73, 93, 113, 93, 108, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1195, 45, 174, 174, 147, 138, 70, 70, 57, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1196, 55, 156, 156, 167, 90, 129, 145, 96, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1196, 55, 178, 178, 131, 97, 140, 97, 96, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1197, 28, 88, 88, 79, 48, 48, 48, 65, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1198, 20, 53, 53, 24, 24, 34, 24, 46, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1198, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1198, 20, 57, 57, 36, 30, 52, 44, 38, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1199, 26, 76, 76, 40, 66, 58, 50, 48, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1199, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1199, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1200, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1200, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1200, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1201, 44, 122, 122, 64, 108, 95, 82, 78, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1201, 44, 131, 131, 108, 82, 113, 86, 56, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1201, 44, 122, 122, 82, 78, 130, 113, 100, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1202, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1202, 51, 140, 140, 74, 125, 110, 94, 89, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1202, 51, 150, 150, 125, 94, 130, 99, 64, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1202, 51, 140, 140, 94, 89, 150, 130, 115, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1202, 52, 215, 215, 112, 106, 112, 122, 86, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1203, 38, 99, 99, 56, 56, 56, 56, 56, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1203, 38, 114, 114, 64, 65, 79, 81, 64, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1203, 38, 92, 92, 71, 117, 64, 117, 37, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1204, 35, 92, 92, 66, 52, 52, 52, 66, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1204, 37, 108, 108, 77, 121, 47, 70, 70, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1205, 26, 83, 83, 66, 45, 66, 45, 48, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1205, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1206, 39, 125, 125, 112, 120, 61, 69, 54, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1206, 39, 109, 109, 89, 61, 89, 81, 104, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1207, 47, 120, 120, 101, 101, 73, 73, 68, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1208, 38, 107, 107, 87, 125, 56, 56, 49, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1208, 40, 143, 143, 73, 85, 77, 89, 60, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1209, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1210, 41, 135, 135, 93, 85, 77, 85, 126, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1211, 41, 119, 119, 122, 101, 64, 77, 89, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1212, 39, 117, 117, 85, 128, 85, 73, 34, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1212, 39, 109, 109, 65, 77, 65, 77, 81, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1213, 47, 139, 139, 97, 87, 97, 87, 125, 317); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1214, 36, 127, 127, 61, 74, 89, 107, 76, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1215, 28, 88, 88, 79, 48, 48, 48, 65, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1216, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1216, 37, 115, 115, 77, 88, 84, 92, 55, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1217, 39, 102, 102, 73, 58, 58, 58, 73, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1217, 39, 144, 144, 120, 112, 54, 54, 50, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1218, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1219, 28, 87, 87, 51, 51, 45, 45, 54, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1220, 55, 85, 85, 123, 74, 57, 57, 68, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1220, 55, 85, 85, 123, 74, 57, 57, 68, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1221, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1221, 28, 81, 81, 87, 59, 48, 48, 54, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1222, 34, 105, 105, 95, 58, 58, 58, 78, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1222, 36, 102, 102, 111, 75, 61, 61, 68, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1223, 40, 122, 122, 111, 67, 67, 67, 91, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1223, 42, 117, 117, 129, 87, 70, 70, 78, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1224, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1224, 47, 130, 130, 144, 97, 78, 78, 87, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1225, 52, 156, 156, 143, 86, 86, 86, 117, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1225, 53, 145, 145, 161, 108, 87, 87, 98, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1225, 54, 148, 148, 83, 121, 181, 121, 110, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1226, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1227, 26, 76, 76, 61, 50, 45, 76, 35, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1227, 28, 76, 76, 43, 82, 59, 59, 31, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1228, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1228, 35, 92, 92, 52, 101, 73, 73, 38, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1229, 40, 112, 112, 91, 75, 67, 115, 51, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1229, 42, 109, 109, 62, 120, 87, 87, 45, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1230, 44, 122, 122, 100, 82, 73, 126, 56, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1230, 46, 119, 119, 81, 81, 95, 90, 75, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1230, 44, 113, 113, 64, 126, 91, 91, 47, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1231, 52, 143, 143, 117, 96, 86, 148, 65, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1231, 53, 135, 135, 77, 151, 108, 108, 55, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1231, 54, 160, 160, 127, 116, 143, 127, 109, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1232, 28, 87, 87, 51, 51, 45, 45, 54, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1233, 44, 122, 122, 64, 82, 91, 91, 144, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1233, 44, 157, 157, 85, 93, 85, 93, 69, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1234, 38, 107, 107, 87, 125, 56, 56, 49, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1234, 38, 103, 103, 56, 52, 121, 90, 109, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1234, 38, 114, 114, 75, 64, 98, 64, 98, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1235, 36, 116, 116, 79, 86, 39, 39, 35, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1235, 36, 130, 130, 66, 77, 69, 80, 54, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1236, 20, 53, 53, 30, 28, 38, 28, 38, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1236, 20, 66, 66, 36, 24, 20, 24, 22, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1236, 20, 55, 55, 42, 36, 28, 24, 32, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1237, 26, 81, 81, 53, 45, 68, 45, 68, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1237, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1237, 26, 120, 120, 76, 45, 35, 45, 40, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1238, 33, 101, 101, 66, 56, 86, 56, 86, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1238, 33, 140, 140, 63, 39, 63, 39, 56, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1238, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1239, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1239, 43, 125, 125, 121, 80, 54, 63, 78, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1239, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1239, 43, 214, 214, 97, 59, 97, 59, 72, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1240, 50, 156, 156, 104, 94, 97, 92, 149, 321); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1240, 51, 150, 150, 99, 84, 130, 84, 130, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1240, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1240, 51, 226, 226, 145, 84, 64, 84, 74, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1240, 52, 159, 159, 176, 117, 86, 96, 124, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1241, 24, 61, 61, 32, 32, 47, 32, 23, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1241, 26, 76, 76, 61, 50, 45, 76, 35, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1242, 22, 59, 59, 34, 28, 37, 45, 30, 324); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1242, 23, 84, 84, 43, 43, 63, 73, 40, 325); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1243, 58, 146, 146, 136, 234, 124, 78, 107, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1244, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1245, 57, 190, 190, 139, 105, 150, 196, 116, 327); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1246, 21, 55, 55, 25, 25, 35, 25, 48, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1246, 22, 68, 68, 52, 41, 39, 39, 56, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1247, 46, 132, 132, 141, 76, 90, 76, 90, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1247, 47, 196, 196, 101, 97, 101, 111, 78, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1248, 56, 153, 153, 114, 148, 81, 114, 75, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1248, 56, 198, 198, 162, 109, 89, 109, 114, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1249, 21, 55, 55, 27, 25, 62, 41, 56, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1250, 45, 134, 134, 75, 88, 120, 88, 102, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1250, 46, 136, 136, 131, 81, 62, 99, 136, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1251, 34, 82, 82, 45, 44, 51, 61, 61, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1251, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1251, 35, 155, 155, 66, 49, 77, 52, 49, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1252, 44, 127, 127, 91, 144, 56, 82, 82, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1252, 45, 134, 134, 129, 57, 106, 57, 106, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1253, 44, 140, 140, 104, 93, 73, 93, 86, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1254, 14, 54, 54, 28, 28, 21, 21, 14, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1255, 13, 41, 41, 27, 21, 27, 22, 25, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1256, 55, 183, 183, 145, 112, 134, 112, 129, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1257, 32, 85, 85, 64, 70, 29, 35, 42, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1257, 33, 94, 94, 69, 89, 49, 69, 46, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1258, 100, 236, 236, 141, 151, 191, 171, 101, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1258, 100, 236, 236, 139, 139, 171, 171, 131, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1258, 100, 234, 234, 137, 171, 141, 169, 127, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1258, 100, 246, 246, 145, 137, 171, 141, 151, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1258, 100, 206, 206, 121, 181, 181, 91, 161, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1258, 100, 256, 256, 151, 141, 131, 171, 151, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1259, 100, 216, 216, 181, 151, 131, 151, 91, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1259, 100, 236, 236, 139, 139, 171, 171, 131, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1259, 100, 246, 246, 191, 111, 181, 101, 121, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1259, 100, 196, 196, 111, 181, 231, 151, 131, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1259, 100, 246, 246, 145, 137, 171, 141, 151, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1259, 100, 226, 226, 141, 121, 121, 121, 221, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1260, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1260, 100, 326, 326, 171, 171, 121, 121, 71, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1260, 100, 166, 166, 151, 91, 111, 131, 231, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1260, 100, 326, 326, 151, 191, 161, 191, 101, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1260, 100, 206, 206, 121, 181, 181, 91, 161, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1260, 100, 196, 196, 111, 181, 231, 151, 131, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1261, 100, 222, 222, 123, 121, 141, 171, 171, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1261, 100, 276, 276, 131, 151, 131, 181, 131, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1261, 100, 226, 226, 101, 141, 151, 151, 241, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1261, 100, 246, 246, 191, 211, 81, 101, 121, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1261, 100, 242, 242, 137, 137, 137, 137, 137, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1261, 100, 226, 226, 171, 231, 161, 131, 111, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1262, 100, 266, 266, 171, 181, 211, 191, 121, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1262, 100, 276, 276, 221, 141, 211, 131, 151, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1262, 100, 266, 266, 165, 167, 201, 201, 161, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1262, 100, 306, 306, 205, 197, 231, 201, 211, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1262, 100, 264, 264, 167, 201, 171, 201, 157, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1262, 100, 256, 256, 171, 231, 231, 131, 211, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1263, 100, 266, 266, 171, 181, 211, 191, 121, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1263, 100, 266, 266, 231, 201, 161, 201, 101, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1263, 100, 266, 266, 165, 167, 201, 201, 161, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1263, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1263, 100, 306, 306, 205, 197, 231, 201, 211, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1263, 100, 256, 256, 171, 231, 231, 131, 211, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1264, 100, 306, 306, 211, 231, 101, 101, 91, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1264, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1264, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1264, 100, 246, 246, 231, 401, 211, 131, 181, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1264, 100, 268, 268, 209, 171, 181, 181, 181, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1264, 100, 356, 356, 231, 201, 121, 201, 221, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1265, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1265, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1265, 100, 266, 266, 221, 151, 221, 201, 261, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1265, 100, 296, 296, 241, 261, 131, 151, 171, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1265, 100, 276, 276, 141, 111, 271, 231, 231, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1265, 100, 276, 276, 181, 161, 171, 171, 271, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1266, 100, 296, 296, 201, 211, 261, 221, 141, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1266, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1266, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1266, 100, 306, 306, 181, 171, 201, 281, 241, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1266, 100, 304, 304, 207, 241, 211, 251, 197, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1266, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1267, 100, 296, 296, 201, 211, 261, 221, 141, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1267, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1267, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1267, 100, 276, 276, 207, 155, 231, 211, 251, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1267, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1267, 100, 266, 266, 271, 251, 171, 181, 201, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1268, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1268, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1268, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1268, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1268, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1268, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1269, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1269, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1269, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1269, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1269, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1269, 100, 216, 216, 201, 141, 141, 181, 281, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1270, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1270, 100, 326, 326, 181, 201, 181, 231, 181, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1270, 100, 286, 286, 161, 291, 271, 181, 151, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1270, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1270, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1270, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1271, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1271, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1271, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1271, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1271, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1271, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1272, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1272, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1272, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1272, 100, 246, 246, 231, 401, 211, 131, 181, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1272, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1272, 100, 326, 326, 261, 201, 241, 201, 231, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1273, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1273, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1273, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1273, 100, 296, 296, 241, 231, 121, 181, 261, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1273, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1273, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1274, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1274, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1274, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1274, 50, 148, 148, 85, 90, 78, 78, 79, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1274, 50, 139, 139, 95, 80, 78, 78, 88, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1274, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1275, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1275, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1275, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1275, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1275, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1275, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1276, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1276, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1276, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1276, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1276, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1276, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1277, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1277, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1277, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1277, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1277, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1277, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1278, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1278, 55, 156, 156, 116, 87, 129, 118, 140, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1278, 55, 161, 161, 167, 134, 85, 112, 96, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1278, 55, 167, 167, 112, 129, 123, 134, 79, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1278, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1278, 55, 156, 156, 162, 134, 85, 101, 118, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1279, 80, 270, 270, 233, 160, 129, 193, 163, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1279, 60, 133, 133, 104, 68, 104, 68, 104, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1279, 60, 217, 217, 152, 116, 104, 146, 86, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1279, 60, 157, 157, 104, 140, 140, 80, 128, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1279, 60, 157, 157, 182, 164, 86, 86, 116, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1279, 60, 151, 151, 86, 170, 122, 122, 62, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1280, 100, 292, 292, 231, 165, 211, 171, 211, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1280, 100, 316, 316, 187, 181, 187, 271, 175, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1280, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1280, 100, 336, 336, 181, 187, 231, 221, 161, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1280, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1280, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1281, 100, 316, 316, 187, 181, 187, 271, 175, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1281, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1281, 100, 276, 276, 241, 181, 201, 201, 251, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1281, 100, 326, 326, 191, 191, 221, 241, 181, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1281, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1282, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1282, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1282, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1282, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1282, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1282, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1283, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1283, 50, 143, 143, 78, 138, 123, 63, 83, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1283, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1283, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1283, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1283, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1284, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1284, 100, 326, 326, 301, 191, 191, 191, 151, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1284, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1284, 100, 336, 336, 171, 261, 161, 301, 171, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1284, 100, 356, 356, 251, 191, 171, 241, 141, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1284, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1285, 100, 346, 346, 241, 241, 241, 241, 241, 350); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1285, 100, 276, 276, 181, 161, 171, 171, 271, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1285, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1285, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1285, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1285, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1286, 50, 123, 123, 72, 72, 88, 88, 68, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1286, 50, 122, 122, 71, 88, 73, 87, 66, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1286, 50, 117, 117, 75, 66, 83, 73, 88, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1286, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1286, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1286, 50, 117, 117, 75, 66, 83, 73, 88, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1287, 50, 138, 138, 85, 86, 103, 103, 83, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1287, 50, 137, 137, 86, 103, 88, 103, 81, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1287, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1287, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1287, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1287, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1288, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1288, 26, 68, 68, 53, 45, 35, 29, 40, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1289, 42, 104, 104, 66, 57, 74, 57, 83, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1289, 40, 128, 128, 87, 95, 43, 43, 39, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1289, 42, 104, 104, 99, 62, 53, 62, 83, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1290, 27, 62, 62, 30, 30, 30, 30, 30, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1290, 28, 67, 67, 34, 37, 34, 45, 43, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1291, 41, 101, 101, 44, 64, 52, 73, 99, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1291, 41, 114, 114, 44, 44, 49, 65, 60, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1291, 42, 100, 100, 57, 49, 74, 66, 78, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1292, 51, 160, 160, 104, 104, 104, 104, 104, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1292, 54, 148, 148, 164, 110, 89, 89, 100, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1292, 51, 140, 140, 110, 84, 74, 74, 150, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1292, 51, 186, 186, 155, 145, 69, 69, 64, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1293, 39, 109, 109, 85, 65, 58, 58, 116, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1293, 39, 125, 125, 85, 93, 42, 42, 38, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1293, 40, 124, 124, 79, 63, 103, 87, 43, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1294, 48, 132, 132, 103, 79, 70, 70, 142, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1294, 47, 125, 125, 111, 73, 54, 92, 130, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1294, 47, 139, 139, 97, 83, 106, 83, 101, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1294, 48, 152, 152, 99, 99, 75, 75, 108, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1295, 31, 73, 73, 68, 44, 37, 37, 62, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1295, 30, 74, 74, 48, 33, 33, 33, 66, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1296, 16, 42, 42, 17, 31, 23, 31, 17, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1296, 18, 48, 48, 26, 25, 29, 34, 34, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1297, 28, 87, 87, 26, 43, 26, 43, 37, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1297, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1298, 60, 187, 187, 170, 110, 158, 110, 122, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1298, 60, 175, 175, 128, 104, 152, 128, 170, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1298, 60, 211, 211, 158, 134, 128, 134, 98, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1298, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1298, 60, 187, 187, 122, 122, 122, 122, 122, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1299, 34, 86, 86, 68, 58, 44, 37, 51, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1299, 33, 94, 94, 56, 43, 59, 46, 39, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1300, 42, 109, 109, 78, 62, 62, 62, 53, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1300, 41, 98, 98, 56, 48, 44, 52, 64, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1300, 41, 106, 106, 89, 52, 89, 52, 48, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1301, 16, 44, 44, 28, 20, 20, 20, 37, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1301, 15, 48, 48, 19, 19, 21, 27, 25, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1302, 42, 109, 109, 60, 56, 58, 54, 70, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1302, 41, 98, 98, 52, 60, 44, 44, 44, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1303, 60, 185, 185, 127, 120, 157, 128, 146, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1303, 60, 193, 193, 152, 146, 121, 126, 120, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1303, 60, 187, 187, 125, 146, 126, 146, 122, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1303, 60, 163, 163, 182, 122, 98, 98, 110, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1303, 60, 199, 199, 116, 128, 164, 134, 92, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1304, 50, 178, 178, 123, 123, 123, 123, 123, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1304, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1304, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1304, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1304, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1304, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1305, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1305, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1305, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1305, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1305, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1305, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1306, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1306, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1306, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1306, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1306, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1306, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1307, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1307, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1307, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1307, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1307, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1307, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1308, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1308, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1308, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1308, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1308, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1308, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1309, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1309, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1309, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1309, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1309, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1309, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1310, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1310, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1310, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1310, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1310, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1310, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1311, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1311, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1311, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1311, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1311, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1311, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1312, 100, 226, 226, 181, 301, 161, 301, 91, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1312, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1312, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1312, 100, 336, 336, 311, 201, 261, 201, 241, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1312, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1312, 100, 296, 296, 181, 221, 181, 251, 201, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1313, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1313, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1313, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1313, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1313, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1313, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1314, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1314, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1314, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1314, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1314, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1314, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1315, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1315, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1315, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1315, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1315, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1315, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1316, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1316, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1316, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1316, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1316, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1316, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1317, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1317, 100, 336, 336, 161, 199, 241, 291, 203, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1317, 100, 306, 306, 311, 301, 231, 221, 181, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1317, 100, 346, 346, 241, 241, 241, 241, 241, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1317, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1317, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1318, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1318, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1318, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1318, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1318, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1318, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1319, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1319, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1319, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1319, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1319, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1319, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1320, 100, 446, 446, 361, 241, 231, 171, 241, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1320, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1320, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1320, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1320, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1320, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1321, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1321, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1321, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1321, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1321, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1321, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1322, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1322, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1322, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1322, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1322, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1322, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1323, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1323, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1323, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1323, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1323, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1323, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1324, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1324, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1324, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1324, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1324, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1324, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1325, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1325, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1325, 100, 306, 306, 181, 181, 221, 241, 181, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1325, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1325, 100, 306, 306, 141, 241, 241, 441, 141, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1325, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1326, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1326, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1326, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1326, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1326, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1326, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1327, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1327, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1327, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1327, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1327, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1327, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1328, 10, 30, 30, 25, 17, 15, 15, 23, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1328, 10, 35, 35, 13, 15, 22, 24, 20, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1329, 40, 112, 112, 123, 83, 67, 67, 75, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1329, 40, 116, 116, 95, 79, 63, 63, 87, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1329, 40, 140, 140, 83, 103, 51, 75, 99, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1329, 40, 112, 112, 87, 67, 87, 67, 63, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1329, 40, 128, 128, 55, 71, 91, 107, 83, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1330, 7, 26, 26, 10, 13, 10, 13, 10, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1330, 7, 32, 32, 11, 9, 13, 10, 9, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1330, 7, 24, 24, 10, 16, 13, 16, 10, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1331, 10, 37, 37, 12, 18, 12, 18, 16, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1331, 10, 46, 46, 17, 12, 17, 13, 12, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1331, 10, 30, 30, 12, 21, 16, 21, 12, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1332, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1332, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1332, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1333, 44, 100, 100, 77, 95, 85, 69, 49, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1333, 44, 118, 118, 69, 95, 78, 95, 51, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1333, 45, 120, 120, 57, 97, 93, 115, 57, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1334, 12, 35, 35, 18, 22, 18, 26, 22, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1334, 11, 35, 35, 18, 18, 16, 16, 19, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1334, 12, 37, 37, 21, 24, 21, 24, 20, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1335, 100, 656, 656, 61, 61, 191, 311, 151, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1336, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1336, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1336, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1336, 50, 168, 168, 123, 113, 148, 108, 113, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1336, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1336, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1337, 23, 66, 66, 56, 38, 29, 47, 66, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1337, 23, 68, 68, 24, 29, 45, 50, 40, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1337, 23, 68, 68, 40, 40, 40, 40, 40, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1338, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1338, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1338, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1339, 69, 221, 221, 154, 140, 126, 140, 209, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1339, 69, 186, 186, 147, 112, 98, 98, 202, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1339, 69, 214, 214, 202, 133, 85, 160, 147, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1339, 69, 302, 302, 195, 112, 85, 112, 98, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1339, 69, 228, 228, 209, 140, 119, 147, 105, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1340, 44, 109, 109, 104, 64, 56, 64, 86, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1340, 44, 122, 122, 64, 82, 64, 100, 78, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1340, 45, 138, 138, 102, 147, 75, 75, 57, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1340, 45, 130, 130, 58, 90, 76, 99, 41, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1341, 8, 26, 26, 12, 14, 12, 14, 17, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1341, 8, 30, 30, 17, 14, 18, 15, 13, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1342, 40, 116, 116, 79, 103, 47, 71, 87, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1342, 40, 120, 120, 75, 75, 75, 75, 75, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1342, 40, 120, 120, 111, 67, 111, 67, 63, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1342, 40, 92, 92, 83, 59, 59, 75, 115, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1343, 40, 116, 116, 77, 63, 57, 79, 87, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1343, 40, 128, 128, 75, 71, 83, 115, 99, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1343, 40, 96, 96, 75, 123, 67, 123, 39, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1343, 40, 116, 116, 59, 75, 95, 83, 71, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1344, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1344, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1344, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1344, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1344, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1344, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1345, 62, 168, 168, 188, 126, 101, 101, 114, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1345, 62, 218, 218, 193, 163, 145, 151, 102, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1345, 62, 218, 218, 163, 138, 132, 138, 101, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1345, 62, 187, 187, 182, 151, 114, 126, 83, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1346, 40, 112, 112, 87, 53, 87, 53, 92, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1346, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1346, 40, 144, 144, 59, 59, 80, 96, 75, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1346, 40, 116, 116, 83, 131, 51, 75, 75, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1347, 28, 101, 101, 62, 62, 51, 51, 34, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1347, 28, 98, 98, 48, 54, 57, 54, 40, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1348, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1348, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1349, 64, 218, 218, 111, 168, 104, 194, 111, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1349, 64, 218, 218, 104, 129, 156, 188, 131, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1349, 64, 199, 199, 92, 156, 156, 284, 92, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1349, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1349, 64, 212, 212, 136, 156, 149, 188, 136, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1350, 21, 55, 55, 20, 25, 29, 46, 35, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1350, 21, 63, 63, 23, 27, 41, 46, 37, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1350, 21, 70, 70, 46, 52, 50, 54, 33, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1351, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1351, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1352, 31, 95, 95, 59, 40, 53, 40, 53, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1352, 29, 81, 81, 70, 82, 41, 41, 35, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1353, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1354, 22, 72, 72, 45, 37, 59, 50, 26, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1354, 22, 77, 77, 46, 41, 32, 37, 52, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1354, 22, 74, 74, 43, 39, 34, 39, 56, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1355, 69, 228, 228, 167, 112, 154, 112, 140, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1355, 69, 207, 207, 105, 126, 105, 160, 181, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1355, 69, 207, 207, 154, 98, 181, 140, 160, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1355, 69, 200, 200, 126, 126, 126, 126, 126, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1355, 69, 214, 214, 167, 140, 140, 140, 167, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1356, 99, 253, 253, 80, 109, 80, 129, 189, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1361, 99, 253, 253, 80, 109, 80, 129, 189, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1363, 62, 162, 162, 120, 101, 120, 101, 155, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1364, 61, 208, 208, 118, 161, 148, 124, 63, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1364, 61, 166, 166, 136, 94, 136, 124, 161, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1364, 61, 160, 160, 87, 81, 191, 142, 173, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1364, 61, 196, 196, 116, 112, 116, 167, 108, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1374, 37, 86, 86, 77, 55, 55, 70, 107, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1374, 37, 110, 110, 73, 57, 79, 101, 62, 431); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1375, 36, 105, 105, 75, 64, 43, 64, 61, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1375, 37, 111, 111, 69, 74, 69, 81, 85, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1376, 37, 108, 108, 88, 92, 62, 55, 55, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1377, 36, 102, 102, 86, 75, 61, 75, 39, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1377, 36, 166, 166, 75, 49, 82, 56, 75, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1377, 37, 97, 97, 70, 55, 55, 55, 70, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1378, 37, 108, 108, 96, 62, 62, 70, 88, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1379, 37, 138, 138, 96, 73, 66, 92, 55, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1380, 37, 97, 97, 62, 88, 107, 70, 70, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1381, 37, 123, 123, 77, 84, 96, 88, 62, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1382, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1383, 37, 98, 98, 66, 66, 77, 73, 61, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1385, 37, 104, 104, 55, 92, 81, 70, 66, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1386, 38, 111, 111, 90, 62, 94, 83, 89, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1387, 38, 111, 111, 81, 62, 90, 83, 98, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1388, 38, 103, 103, 45, 56, 60, 102, 83, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1398, 20, 55, 55, 48, 20, 38, 20, 38, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1398, 20, 51, 51, 34, 26, 24, 24, 26, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1398, 20, 55, 55, 48, 20, 38, 20, 38, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1399, 32, 82, 82, 74, 29, 58, 29, 58, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1399, 32, 98, 98, 74, 61, 54, 54, 61, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1399, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1400, 28, 73, 73, 65, 26, 51, 26, 51, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1400, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1401, 38, 114, 114, 109, 49, 90, 49, 90, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1401, 38, 114, 114, 87, 71, 64, 64, 71, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1402, 28, 73, 73, 65, 26, 51, 26, 51, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1402, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1403, 37, 112, 112, 107, 47, 88, 47, 88, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1403, 37, 112, 112, 84, 70, 62, 62, 70, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1404, 34, 103, 103, 78, 64, 58, 58, 64, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1404, 34, 107, 107, 71, 64, 61, 68, 78, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1405, 23, 73, 73, 54, 45, 40, 40, 45, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1405, 23, 61, 61, 54, 22, 43, 22, 43, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1406, 24, 81, 81, 52, 37, 32, 37, 25, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1406, 24, 64, 64, 56, 23, 44, 23, 44, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1407, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1408, 31, 95, 95, 90, 40, 75, 40, 75, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1409, 38, 114, 114, 109, 49, 90, 49, 90, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1410, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1411, 53, 156, 156, 151, 66, 124, 66, 124, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1412, 55, 161, 161, 156, 68, 129, 68, 129, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1432, 25, 69, 69, 46, 59, 31, 31, 21, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1432, 25, 64, 64, 24, 29, 34, 54, 41, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1432, 25, 64, 64, 29, 30, 39, 40, 46, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1432, 24, 57, 57, 35, 56, 28, 28, 32, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1432, 24, 64, 64, 59, 37, 32, 37, 49, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1433, 48, 123, 123, 103, 103, 75, 75, 70, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1433, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1433, 49, 169, 169, 105, 105, 86, 86, 56, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1433, 49, 115, 115, 91, 150, 81, 150, 47, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1433, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1434, 45, 242, 242, 50, 73, 50, 73, 50, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1434, 45, 188, 188, 84, 52, 84, 52, 75, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1434, 45, 134, 134, 102, 84, 75, 75, 57, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1434, 44, 157, 157, 64, 91, 73, 91, 64, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1434, 44, 193, 193, 82, 60, 95, 64, 60, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1435, 60, 210, 210, 108, 126, 113, 131, 87, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1435, 60, 187, 187, 110, 110, 134, 146, 110, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1435, 59, 178, 178, 120, 126, 156, 132, 85, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1435, 59, 178, 178, 120, 138, 132, 144, 85, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1435, 60, 199, 199, 146, 98, 134, 98, 122, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1436, 30, 74, 74, 33, 35, 45, 47, 54, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1436, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1436, 29, 74, 74, 61, 53, 44, 35, 35, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1436, 29, 66, 66, 38, 56, 56, 29, 50, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1436, 28, 64, 64, 40, 45, 54, 45, 62, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1437, 52, 230, 230, 148, 86, 65, 86, 75, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1437, 53, 156, 156, 145, 87, 145, 87, 82, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1437, 53, 150, 150, 119, 151, 114, 98, 87, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1437, 54, 169, 169, 154, 164, 83, 94, 73, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1437, 55, 150, 150, 107, 118, 134, 118, 151, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1438, 35, 113, 113, 77, 84, 38, 38, 35, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1438, 35, 120, 120, 59, 59, 45, 45, 45, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1438, 34, 90, 90, 49, 46, 48, 45, 58, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1438, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1438, 34, 101, 101, 45, 69, 58, 76, 32, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1439, 20, 62, 62, 32, 21, 32, 21, 23, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1439, 20, 83, 83, 30, 20, 30, 22, 20, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1439, 19, 58, 58, 34, 34, 25, 25, 23, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1439, 19, 54, 54, 28, 28, 25, 25, 30, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1439, 18, 48, 48, 22, 26, 22, 26, 33, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1440, 40, 112, 112, 75, 59, 99, 59, 71, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1440, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1440, 40, 124, 124, 83, 75, 71, 79, 91, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1440, 39, 117, 117, 65, 67, 81, 83, 65, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1440, 39, 109, 109, 58, 97, 85, 73, 69, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1441, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1441, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1441, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1441, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1441, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1441, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1442, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1442, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1442, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1442, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1442, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1442, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1443, 50, 178, 178, 173, 163, 123, 113, 113, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1443, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1443, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1443, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1443, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1443, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1444, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1444, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1444, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1444, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1444, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1444, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1445, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1445, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1445, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1445, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1445, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1445, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1446, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1446, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1446, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1446, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1446, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1446, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1447, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1447, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1447, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1447, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1447, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1447, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1448, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1448, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1448, 50, 123, 123, 98, 83, 63, 53, 73, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1448, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1448, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1448, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1449, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1449, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1449, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1449, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1449, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1449, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1450, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1450, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1450, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1450, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1450, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1450, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1451, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1451, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1451, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1451, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1451, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1451, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1452, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1452, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1452, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1452, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1452, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1452, 50, 118, 118, 53, 53, 78, 53, 108, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1453, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1453, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1453, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1453, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1453, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1453, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1454, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1454, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1454, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1454, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1454, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1454, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1455, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1455, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1455, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1455, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1455, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1455, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1456, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1456, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1456, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1456, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1456, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1456, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1457, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1457, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1457, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1457, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1457, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1457, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1458, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1458, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1458, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1458, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1458, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1458, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1459, 29, 78, 78, 70, 70, 35, 79, 56, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1459, 30, 77, 77, 72, 45, 39, 45, 60, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1459, 30, 134, 134, 57, 42, 66, 45, 42, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1460, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1460, 43, 128, 128, 97, 80, 72, 72, 80, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1460, 43, 128, 128, 93, 80, 72, 80, 63, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1460, 43, 120, 120, 93, 72, 93, 72, 67, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1460, 43, 111, 111, 76, 59, 93, 76, 102, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1461, 15, 45, 45, 31, 25, 25, 25, 22, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1461, 15, 42, 42, 19, 19, 22, 25, 19, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1461, 12, 35, 35, 16, 16, 22, 16, 29, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1462, 43, 128, 128, 80, 80, 80, 80, 80, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1462, 44, 131, 131, 69, 78, 104, 95, 82, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1462, 45, 164, 164, 103, 77, 103, 86, 82, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1462, 44, 131, 131, 104, 95, 69, 78, 82, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1463, 62, 193, 193, 176, 114, 163, 114, 126, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1463, 62, 212, 212, 194, 126, 163, 126, 151, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1463, 62, 193, 193, 182, 120, 76, 145, 132, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1463, 62, 212, 212, 182, 125, 101, 151, 127, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1463, 61, 202, 202, 185, 124, 106, 130, 94, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1464, 60, 185, 185, 127, 120, 157, 128, 146, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1464, 60, 169, 169, 104, 98, 182, 140, 158, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1464, 61, 160, 160, 87, 81, 191, 142, 173, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1464, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1464, 61, 184, 184, 136, 87, 161, 124, 142, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1465, 67, 208, 208, 163, 297, 96, 163, 96, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1465, 67, 208, 208, 210, 203, 156, 149, 122, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1465, 65, 182, 182, 132, 210, 80, 119, 119, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1465, 67, 194, 194, 176, 270, 109, 109, 96, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1465, 65, 182, 182, 125, 164, 73, 112, 138, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1466, 29, 72, 72, 41, 38, 53, 38, 53, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1466, 28, 81, 81, 48, 48, 48, 48, 48, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1466, 28, 95, 95, 57, 50, 40, 45, 65, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1467, 12, 41, 41, 21, 14, 21, 14, 16, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1467, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1467, 12, 35, 35, 16, 19, 16, 19, 23, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1468, 16, 47, 47, 29, 25, 42, 36, 31, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1469, 16, 50, 50, 23, 29, 23, 29, 21, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1469, 16, 47, 47, 29, 25, 42, 36, 31, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1470, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1470, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1471, 28, 81, 81, 37, 48, 37, 48, 34, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1471, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1471, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1472, 31, 89, 89, 40, 53, 40, 53, 37, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1472, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1472, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1473, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1473, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1473, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1474, 25, 74, 74, 34, 44, 34, 44, 31, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1474, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1474, 25, 74, 74, 79, 54, 44, 44, 49, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1475, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1476, 14, 45, 45, 21, 26, 21, 26, 19, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1476, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1477, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1477, 14, 45, 45, 21, 26, 21, 26, 19, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1477, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1478, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1478, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1479, 28, 81, 81, 37, 48, 37, 48, 34, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1479, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1479, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1480, 31, 89, 89, 40, 53, 40, 53, 37, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1480, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1480, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1481, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1481, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1481, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1482, 18, 56, 56, 25, 33, 25, 33, 24, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1482, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1483, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1483, 26, 76, 76, 48, 50, 58, 53, 35, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1484, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1484, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1485, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1486, 37, 97, 97, 73, 44, 70, 40, 47, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1486, 37, 108, 108, 84, 55, 81, 51, 59, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1487, 49, 106, 106, 52, 52, 52, 52, 52, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1487, 49, 150, 150, 96, 76, 125, 105, 52, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1488, 36, 91, 91, 53, 53, 64, 64, 50, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1488, 36, 102, 102, 62, 63, 75, 75, 61, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1488, 36, 102, 102, 62, 63, 75, 75, 61, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1489, 23, 64, 64, 40, 33, 59, 50, 43, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1490, 17, 51, 51, 34, 32, 26, 29, 21, 451); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1491, 14, 40, 40, 18, 19, 24, 29, 25, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1492, 19, 51, 51, 23, 25, 30, 38, 32, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1493, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1494, 55, 139, 139, 90, 74, 134, 112, 96, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1495, 16, 41, 41, 20, 24, 20, 24, 33, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1495, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1496, 14, 40, 40, 18, 19, 24, 29, 25, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1496, 13, 38, 38, 17, 18, 22, 27, 23, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1496, 15, 42, 42, 19, 20, 25, 31, 26, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1497, 7, 25, 25, 11, 12, 14, 17, 15, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1497, 7, 25, 25, 12, 13, 16, 14, 12, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1498, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1499, 19, 54, 54, 34, 28, 49, 42, 36, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1500, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1501, 24, 66, 66, 42, 35, 61, 52, 44, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1502, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1503, 54, 148, 148, 100, 94, 159, 137, 121, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1504, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1504, 22, 53, 53, 26, 31, 26, 31, 43, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1505, 15, 42, 42, 19, 20, 25, 31, 26, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1505, 16, 44, 44, 20, 21, 26, 33, 28, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1505, 17, 46, 46, 21, 23, 28, 34, 29, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1506, 9, 29, 29, 13, 14, 17, 20, 18, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1506, 11, 34, 34, 16, 18, 22, 20, 16, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1507, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1508, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1508, 16, 47, 47, 29, 25, 42, 36, 31, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1509, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1509, 25, 69, 69, 44, 36, 64, 54, 46, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1510, 32, 91, 91, 58, 61, 70, 64, 42, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1510, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1511, 42, 92, 92, 45, 45, 45, 45, 45, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1511, 42, 109, 109, 70, 57, 104, 87, 74, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1511, 42, 130, 130, 87, 99, 95, 104, 62, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1512, 48, 147, 147, 99, 113, 108, 118, 70, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1512, 48, 147, 147, 94, 75, 123, 103, 51, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1512, 48, 132, 132, 89, 84, 142, 123, 108, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1513, 55, 220, 220, 134, 93, 131, 113, 99, 455); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1513, 55, 183, 183, 134, 101, 145, 189, 112, 327); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1514, 36, 112, 112, 75, 79, 97, 82, 53, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1516, 17, 50, 50, 38, 43, 14, 26, 14, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1517, 29, 90, 90, 73, 82, 32, 53, 32, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1518, 39, 117, 117, 97, 108, 42, 69, 42, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1519, 59, 172, 172, 144, 161, 61, 102, 61, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1520, 28, 91, 91, 62, 43, 45, 43, 51, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1521, 20, 57, 57, 44, 50, 16, 30, 16, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1522, 33, 101, 101, 82, 92, 36, 59, 36, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1523, 43, 128, 128, 106, 119, 46, 76, 46, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1524, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1524, 57, 167, 167, 139, 156, 59, 99, 59, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1525, 23, 74, 74, 39, 50, 60, 50, 57, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1526, 65, 169, 169, 54, 73, 54, 86, 125, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1527, 65, 189, 189, 158, 119, 164, 125, 80, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1528, 42, 130, 130, 83, 66, 108, 91, 45, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1529, 25, 80, 80, 43, 54, 65, 54, 62, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1530, 62, 162, 162, 52, 70, 52, 83, 120, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1531, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1532, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1533, 44, 118, 118, 38, 51, 38, 60, 86, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1534, 58, 152, 152, 49, 66, 49, 78, 112, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1535, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1535, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1541, 41, 106, 106, 62, 59, 73, 60, 64, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1541, 41, 106, 106, 73, 93, 48, 48, 32, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1542, 39, 90, 90, 61, 50, 58, 58, 89, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1542, 38, 90, 90, 49, 49, 56, 68, 68, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1543, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1543, 39, 92, 92, 51, 50, 58, 69, 69, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1543, 38, 80, 80, 33, 30, 98, 60, 87, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1544, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1544, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1545, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1545, 40, 96, 96, 63, 43, 43, 43, 87, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1546, 21, 55, 55, 35, 46, 27, 37, 25, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1546, 22, 61, 61, 34, 31, 33, 30, 39, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1547, 60, 169, 169, 74, 110, 122, 194, 110, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1547, 60, 187, 187, 137, 104, 104, 122, 108, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1547, 60, 157, 157, 151, 152, 139, 116, 89, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1547, 60, 157, 157, 127, 152, 163, 116, 89, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1548, 52, 143, 143, 101, 127, 80, 106, 75, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1548, 51, 171, 171, 145, 99, 84, 84, 69, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1548, 51, 155, 155, 79, 94, 79, 120, 135, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1548, 53, 150, 150, 103, 98, 124, 98, 124, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1549, 54, 159, 159, 110, 94, 121, 94, 116, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1549, 55, 151, 151, 123, 74, 79, 79, 200, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1549, 54, 162, 162, 148, 89, 89, 89, 121, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1549, 55, 150, 150, 145, 101, 90, 90, 134, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1550, 41, 110, 110, 56, 56, 40, 40, 32, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1550, 41, 106, 106, 81, 89, 36, 44, 52, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1551, 64, 173, 173, 104, 104, 136, 136, 136, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1551, 64, 148, 148, 72, 66, 181, 117, 162, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1551, 65, 169, 169, 112, 151, 151, 86, 138, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1551, 65, 176, 176, 145, 119, 106, 184, 80, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1552, 37, 97, 97, 81, 81, 59, 59, 55, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1552, 37, 101, 101, 59, 81, 66, 81, 44, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1552, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1553, 48, 133, 133, 108, 65, 70, 70, 175, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1553, 47, 130, 130, 125, 87, 78, 78, 115, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1553, 48, 147, 147, 75, 89, 75, 113, 127, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1553, 45, 141, 141, 84, 76, 66, 76, 111, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1554, 60, 163, 163, 86, 110, 122, 122, 194, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1554, 60, 163, 163, 98, 98, 128, 128, 128, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1554, 60, 179, 179, 117, 116, 123, 146, 146, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1554, 60, 175, 175, 146, 110, 152, 116, 74, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1555, 18, 54, 54, 27, 27, 20, 20, 16, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1555, 19, 52, 52, 49, 28, 28, 28, 15, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1556, 28, 70, 70, 59, 71, 31, 31, 26, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1556, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1557, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1557, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1557, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1557, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1557, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1557, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1558, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1558, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1558, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1558, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1558, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1558, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1559, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1559, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1559, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1559, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1559, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1559, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1560, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1560, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1560, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1560, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1560, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1560, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1561, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1561, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1561, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1561, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1561, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1561, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1562, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1562, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1562, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1562, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1562, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1562, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1563, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1563, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1563, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1563, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1563, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1563, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1564, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1564, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1564, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1564, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1564, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1564, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1565, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1565, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1565, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1565, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1565, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1565, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1566, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1566, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1566, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1566, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1566, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1566, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1567, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1567, 100, 286, 286, 271, 161, 271, 161, 151, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1567, 100, 276, 276, 191, 251, 111, 171, 211, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1567, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1567, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1567, 100, 306, 306, 191, 341, 191, 341, 141, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1568, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1568, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1568, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1568, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1568, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1568, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1569, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1569, 50, 122, 122, 98, 58, 86, 56, 68, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1569, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1569, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1569, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1569, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1570, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1570, 50, 128, 128, 58, 78, 48, 48, 38, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1570, 50, 98, 98, 38, 43, 33, 78, 103, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1570, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1570, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1570, 50, 168, 168, 53, 38, 63, 43, 38, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1571, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1571, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1571, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1571, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1571, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1571, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1572, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1572, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1572, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1572, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1572, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1572, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1573, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1573, 50, 98, 98, 38, 43, 33, 78, 103, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1573, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1573, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1573, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1573, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1574, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1574, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1574, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1574, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1574, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1574, 50, 123, 123, 83, 63, 93, 73, 68, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1575, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1575, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1575, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1575, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1575, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1575, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1576, 27, 81, 81, 57, 49, 33, 49, 47, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1576, 27, 80, 80, 54, 44, 44, 42, 60, 472); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1577, 65, 176, 176, 115, 138, 128, 125, 179, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1577, 65, 189, 189, 106, 125, 171, 125, 145, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1578, 65, 195, 195, 155, 110, 155, 110, 159, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1578, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1579, 31, 83, 83, 49, 45, 49, 45, 55, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1579, 31, 83, 83, 49, 45, 49, 45, 55, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1580, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1580, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1581, 65, 195, 195, 155, 110, 155, 110, 159, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1581, 65, 195, 195, 155, 110, 155, 110, 159, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1582, 65, 195, 195, 190, 125, 67, 125, 138, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1582, 65, 254, 254, 158, 138, 67, 138, 86, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1583, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1583, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1584, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1584, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1587, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1587, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1588, 39, 121, 121, 97, 68, 81, 68, 109, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1588, 39, 121, 121, 97, 68, 81, 68, 109, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1589, 65, 195, 195, 158, 110, 132, 110, 179, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1589, 65, 228, 228, 106, 119, 138, 164, 106, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1590, 65, 208, 208, 171, 145, 86, 145, 132, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1590, 65, 221, 221, 171, 151, 80, 151, 99, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1591, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1591, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1592, 39, 121, 121, 86, 68, 86, 68, 95, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1592, 39, 121, 121, 86, 68, 86, 68, 95, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1593, 65, 195, 195, 141, 110, 141, 110, 155, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1593, 65, 195, 195, 141, 110, 141, 110, 155, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1594, 65, 181, 181, 142, 93, 142, 93, 166, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1594, 65, 181, 181, 142, 93, 142, 93, 166, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1595, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1595, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1596, 39, 109, 109, 97, 88, 61, 72, 106, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1596, 39, 117, 117, 100, 100, 58, 50, 34, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1597, 65, 176, 176, 158, 144, 99, 118, 174, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1597, 65, 208, 208, 203, 197, 106, 132, 60, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1598, 61, 166, 166, 108, 130, 120, 118, 168, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1598, 61, 178, 178, 100, 118, 161, 118, 136, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1599, 61, 184, 184, 146, 103, 146, 103, 150, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1599, 61, 172, 172, 179, 148, 100, 112, 112, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1600, 31, 83, 83, 49, 45, 49, 45, 55, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1600, 31, 83, 83, 49, 45, 49, 45, 55, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1601, 45, 138, 138, 109, 77, 109, 77, 112, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1601, 45, 138, 138, 109, 77, 109, 77, 112, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1602, 61, 184, 184, 146, 103, 146, 103, 150, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1602, 61, 184, 184, 146, 103, 146, 103, 150, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1603, 24, 69, 69, 37, 32, 32, 32, 49, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1603, 24, 69, 69, 37, 32, 32, 32, 49, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1604, 61, 184, 184, 179, 118, 63, 118, 130, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1604, 61, 239, 239, 148, 130, 63, 130, 81, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1605, 40, 104, 104, 67, 55, 99, 83, 71, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1605, 40, 104, 104, 67, 55, 99, 83, 71, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1606, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1606, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1609, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1609, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1610, 45, 138, 138, 111, 77, 93, 77, 125, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1610, 45, 138, 138, 111, 77, 93, 77, 125, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1611, 61, 184, 184, 148, 103, 124, 103, 168, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1611, 61, 214, 214, 100, 112, 130, 155, 100, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1612, 61, 196, 196, 161, 136, 81, 136, 124, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1612, 61, 208, 208, 161, 142, 75, 142, 94, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1613, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1613, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1614, 45, 138, 138, 99, 77, 99, 77, 109, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1614, 45, 138, 138, 99, 77, 99, 77, 109, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1615, 61, 184, 184, 133, 103, 133, 103, 146, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1615, 61, 184, 184, 133, 103, 133, 103, 146, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1616, 61, 171, 171, 134, 87, 134, 87, 156, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1616, 61, 171, 171, 134, 87, 134, 87, 156, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1617, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1617, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1618, 45, 125, 125, 111, 101, 70, 83, 122, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1618, 45, 134, 134, 115, 115, 66, 57, 39, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1619, 61, 166, 166, 148, 135, 94, 111, 163, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1619, 61, 196, 196, 191, 185, 100, 124, 57, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1620, 62, 162, 162, 120, 101, 120, 101, 155, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1620, 62, 168, 168, 83, 114, 83, 138, 145, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1621, 24, 66, 66, 49, 47, 30, 47, 36, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1621, 24, 66, 66, 49, 47, 30, 47, 36, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1622, 65, 193, 193, 177, 106, 106, 106, 145, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1623, 19, 51, 51, 22, 34, 25, 30, 36, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1624, 30, 101, 101, 87, 57, 45, 51, 75, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1625, 65, 176, 176, 109, 93, 109, 106, 80, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1626, 23, 75, 75, 52, 44, 62, 44, 40, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1627, 30, 203, 203, 21, 21, 60, 96, 48, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1628, 30, 101, 101, 63, 57, 96, 60, 69, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1629, 19, 54, 54, 32, 30, 25, 23, 28, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1630, 18, 50, 50, 24, 29, 36, 29, 22, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1631, 19, 62, 62, 46, 28, 17, 28, 30, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1632, 23, 69, 69, 48, 41, 36, 32, 43, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1633, 65, 208, 208, 154, 114, 164, 114, 112, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1633, 65, 221, 221, 171, 132, 119, 132, 93, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1633, 65, 241, 241, 203, 106, 93, 112, 142, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1634, 35, 96, 96, 70, 59, 70, 59, 89, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1635, 23, 68, 68, 52, 45, 40, 45, 48, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1636, 23, 76, 76, 24, 33, 44, 38, 24, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1637, 23, 66, 66, 42, 54, 36, 50, 32, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1638, 23, 75, 75, 43, 38, 43, 38, 45, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1639, 30, 110, 110, 45, 63, 51, 63, 45, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1640, 23, 64, 64, 43, 52, 29, 29, 38, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1641, 65, 182, 182, 197, 106, 151, 171, 112, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1642, 23, 64, 64, 47, 45, 29, 45, 35, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1643, 31, 86, 86, 47, 40, 40, 40, 62, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1644, 35, 99, 99, 64, 77, 71, 70, 98, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1645, 23, 68, 68, 52, 31, 27, 33, 44, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1646, 65, 160, 160, 107, 80, 107, 80, 93, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1647, 31, 98, 98, 76, 55, 76, 55, 78, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1648, 65, 195, 195, 132, 119, 112, 125, 145, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1649, 65, 176, 176, 106, 80, 112, 86, 73, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1650, 19, 52, 52, 34, 24, 30, 24, 40, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1651, 62, 184, 184, 169, 101, 101, 101, 138, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1652, 32, 91, 91, 70, 60, 54, 60, 65, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1653, 25, 76, 76, 58, 39, 58, 39, 67, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1654, 36, 102, 102, 61, 46, 64, 50, 43, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1654, 36, 110, 110, 59, 75, 92, 75, 87, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1655, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1656, 16, 47, 47, 33, 21, 21, 21, 31, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1656, 16, 52, 52, 36, 31, 21, 31, 29, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1657, 60, 133, 133, 92, 68, 62, 62, 68, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1657, 60, 151, 151, 86, 140, 74, 86, 68, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1657, 60, 175, 175, 128, 194, 128, 110, 50, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1658, 32, 101, 101, 80, 86, 45, 51, 58, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1659, 25, 74, 74, 56, 48, 44, 48, 52, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1660, 62, 137, 137, 76, 151, 138, 95, 70, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1660, 62, 150, 150, 145, 89, 76, 89, 120, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1660, 62, 131, 131, 79, 173, 79, 136, 64, 498); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1660, 62, 187, 187, 200, 107, 166, 107, 163, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1661, 18, 57, 57, 40, 34, 24, 34, 33, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1662, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1662, 37, 115, 115, 82, 64, 82, 64, 90, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1663, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1664, 45, 116, 116, 66, 57, 48, 48, 66, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1665, 54, 169, 169, 132, 100, 89, 100, 127, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1666, 39, 98, 98, 34, 58, 65, 112, 58, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1667, 38, 114, 114, 49, 56, 60, 56, 37, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1667, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1668, 45, 103, 103, 66, 66, 79, 75, 60, 501); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1668, 45, 156, 156, 120, 106, 57, 106, 70, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1669, 62, 174, 174, 188, 101, 145, 163, 107, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1670, 21, 61, 61, 31, 30, 35, 30, 42, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1670, 21, 59, 59, 35, 33, 27, 25, 30, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1671, 32, 88, 88, 68, 54, 48, 61, 78, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1672, 38, 92, 92, 56, 87, 41, 60, 68, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1672, 38, 111, 111, 113, 94, 60, 71, 83, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1673, 21, 55, 55, 41, 29, 27, 29, 37, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1673, 21, 70, 70, 46, 35, 23, 27, 27, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1674, 22, 61, 61, 41, 50, 28, 28, 37, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1675, 62, 131, 131, 126, 138, 95, 83, 95, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1675, 62, 176, 176, 78, 122, 102, 135, 55, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1675, 62, 177, 177, 182, 76, 64, 64, 99, 506); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1675, 62, 186, 186, 161, 192, 130, 107, 67, 507); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1676, 60, 139, 139, 74, 86, 62, 62, 62, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1676, 60, 149, 149, 99, 74, 99, 74, 86, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1676, 60, 151, 151, 128, 74, 128, 74, 68, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1677, 22, 66, 66, 50, 30, 26, 32, 42, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1678, 39, 133, 133, 65, 73, 77, 73, 54, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1679, 22, 61, 61, 44, 28, 28, 28, 41, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1680, 58, 177, 177, 196, 130, 95, 107, 138, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1681, 12, 34, 34, 20, 17, 17, 20, 14, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1682, 14, 41, 41, 24, 22, 21, 20, 27, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1683, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1684, 26, 85, 85, 50, 46, 40, 46, 66, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1685, 14, 39, 39, 20, 20, 19, 20, 26, 509); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1686, 36, 102, 102, 82, 68, 61, 104, 46, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1687, 21, 71, 71, 41, 38, 33, 38, 54, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1688, 21, 55, 55, 35, 25, 25, 25, 48, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1689, 13, 43, 43, 25, 25, 18, 18, 17, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1690, 17, 53, 53, 31, 31, 23, 23, 21, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1691, 27, 89, 89, 57, 57, 44, 44, 63, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1692, 34, 110, 110, 71, 71, 54, 54, 78, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1693, 51, 232, 232, 186, 125, 120, 89, 125, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1694, 39, 117, 117, 81, 69, 89, 69, 85, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1695, 10, 31, 31, 14, 20, 16, 18, 21, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1696, 17, 48, 48, 28, 25, 24, 24, 32, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1697, 20, 59, 59, 34, 32, 30, 38, 34, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1698, 44, 122, 122, 79, 95, 88, 86, 122, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1699, 57, 150, 150, 111, 93, 111, 93, 142, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1701, 64, 135, 135, 66, 81, 66, 81, 117, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1701, 64, 212, 212, 194, 124, 124, 124, 98, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1702, 21, 59, 59, 34, 32, 34, 32, 39, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1702, 21, 59, 59, 34, 32, 34, 32, 39, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1702, 21, 59, 59, 34, 32, 34, 32, 39, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1703, 64, 186, 186, 136, 207, 136, 117, 53, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1703, 64, 218, 218, 130, 162, 79, 117, 156, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1704, 42, 138, 138, 101, 75, 108, 75, 74, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1705, 24, 57, 57, 28, 28, 28, 28, 28, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1705, 24, 57, 57, 28, 33, 28, 33, 47, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1706, 61, 178, 178, 130, 197, 130, 112, 51, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1706, 61, 208, 208, 124, 155, 75, 112, 148, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1707, 56, 142, 142, 109, 109, 97, 97, 81, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1707, 57, 150, 150, 88, 122, 99, 122, 65, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1707, 56, 130, 130, 64, 58, 159, 103, 142, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1707, 55, 117, 117, 74, 85, 101, 85, 118, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1708, 55, 170, 170, 101, 91, 79, 91, 134, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1708, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1708, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1708, 51, 181, 181, 97, 108, 97, 108, 79, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1709, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1709, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1710, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1710, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1711, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1711, 38, 99, 99, 58, 55, 68, 56, 60, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1712, 55, 145, 145, 96, 129, 129, 74, 118, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1712, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1713, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1713, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1714, 31, 83, 83, 55, 47, 44, 47, 41, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1714, 32, 82, 82, 74, 29, 58, 29, 58, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1714, 32, 85, 85, 47, 44, 45, 42, 54, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1715, 38, 114, 114, 82, 71, 68, 71, 57, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1715, 39, 102, 102, 56, 52, 54, 51, 65, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1715, 38, 95, 95, 87, 33, 68, 33, 68, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1716, 56, 130, 130, 97, 131, 92, 75, 64, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1716, 55, 150, 150, 79, 101, 79, 123, 96, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1716, 56, 130, 130, 69, 64, 81, 137, 103, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1717, 39, 117, 117, 73, 50, 65, 50, 65, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1717, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1717, 41, 183, 183, 118, 68, 52, 68, 60, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1717, 42, 117, 117, 62, 62, 70, 78, 62, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1718, 32, 79, 79, 35, 35, 51, 35, 70, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1718, 33, 91, 91, 46, 46, 33, 33, 26, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1719, 41, 98, 98, 44, 44, 64, 44, 89, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1719, 40, 108, 108, 55, 55, 39, 39, 31, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1720, 63, 193, 193, 115, 104, 90, 104, 153, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1720, 62, 168, 168, 101, 120, 101, 120, 126, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1720, 62, 218, 218, 89, 126, 101, 126, 89, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1720, 62, 174, 174, 120, 114, 145, 114, 145, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1721, 32, 79, 79, 35, 35, 42, 48, 35, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1721, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1721, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1721, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1722, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1722, 35, 99, 99, 52, 52, 59, 66, 52, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1722, 34, 97, 97, 51, 51, 58, 64, 51, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1722, 36, 102, 102, 53, 53, 61, 68, 53, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1723, 30, 74, 74, 42, 39, 54, 39, 54, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1723, 31, 83, 83, 68, 40, 68, 40, 37, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1723, 32, 77, 77, 42, 42, 48, 58, 58, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1724, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1724, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1724, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1724, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1724, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1724, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1725, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1725, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1725, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1725, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1725, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1725, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1726, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1726, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1726, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1726, 50, 168, 168, 53, 38, 63, 43, 38, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1726, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1726, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1727, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1727, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1727, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1727, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1727, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1727, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1728, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1728, 100, 266, 266, 301, 201, 161, 161, 181, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1728, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1728, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1728, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1728, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1729, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1729, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1729, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1729, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1729, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1729, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1730, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1730, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1730, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1730, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1730, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1730, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1731, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1731, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1731, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1731, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1731, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1731, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1732, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1732, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1732, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1732, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1732, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1732, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1733, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1733, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1733, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1733, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1733, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1733, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1734, 15, 42, 42, 31, 22, 20, 22, 28, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1735, 15, 42, 42, 19, 20, 25, 31, 26, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1736, 15, 39, 39, 22, 31, 31, 17, 28, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1737, 15, 38, 38, 17, 17, 23, 20, 22, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1738, 15, 45, 45, 26, 29, 27, 29, 23, 514); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1739, 15, 43, 43, 25, 23, 22, 21, 29, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1740, 15, 45, 45, 26, 24, 29, 25, 26, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1741, 15, 41, 41, 20, 22, 18, 17, 20, 515); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1742, 15, 42, 42, 19, 23, 19, 23, 21, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1743, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1744, 15, 40, 40, 20, 22, 20, 26, 25, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1746, 15, 48, 48, 17, 20, 31, 34, 28, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1747, 15, 42, 42, 16, 19, 22, 34, 26, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1748, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1748, 50, 143, 143, 98, 113, 120, 146, 67, 518); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1748, 50, 138, 138, 90, 108, 100, 98, 139, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1748, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1748, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1748, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1749, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1749, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1749, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1749, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1749, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1749, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1750, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1750, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1750, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1750, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1751, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1751, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1751, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1751, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1752, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1752, 50, 158, 158, 123, 93, 83, 93, 118, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1752, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1752, 50, 135, 135, 103, 114, 103, 110, 98, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1753, 50, 169, 169, 113, 152, 113, 95, 131, 520); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1753, 50, 169, 169, 152, 113, 95, 113, 131, 521); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1753, 50, 169, 169, 113, 95, 113, 152, 131, 522); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1753, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1754, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1754, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1754, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1756, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1756, 50, 143, 143, 98, 113, 120, 146, 67, 518); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1756, 50, 138, 138, 90, 108, 100, 98, 139, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1756, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1756, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1756, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1757, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1757, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1757, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1757, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1757, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1757, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1758, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1758, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1758, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1758, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1759, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1759, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1759, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1759, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1760, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1760, 50, 158, 158, 123, 93, 83, 93, 118, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1760, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1760, 50, 135, 135, 103, 114, 103, 110, 98, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1761, 50, 169, 169, 113, 152, 113, 95, 131, 520); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1761, 50, 169, 169, 152, 113, 95, 113, 131, 521); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1761, 50, 169, 169, 113, 95, 113, 152, 131, 522); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1761, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1762, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1762, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1762, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1764, 27, 62, 62, 36, 44, 36, 44, 47, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1765, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1765, 19, 63, 63, 34, 23, 19, 23, 21, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1766, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1766, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1767, 29, 66, 66, 38, 47, 38, 47, 50, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1767, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1768, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1768, 32, 145, 145, 93, 54, 42, 54, 48, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1769, 35, 99, 99, 59, 70, 59, 70, 73, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1769, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1770, 27, 79, 79, 84, 57, 47, 47, 52, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1771, 14, 37, 37, 21, 25, 21, 25, 26, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1772, 24, 57, 57, 32, 40, 32, 40, 42, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1773, 12, 33, 33, 18, 22, 18, 22, 23, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1773, 12, 33, 33, 18, 22, 18, 22, 23, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1773, 12, 43, 43, 28, 21, 17, 17, 17, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1774, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1775, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1776, 27, 62, 62, 36, 44, 36, 44, 47, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1777, 28, 64, 64, 37, 45, 37, 45, 48, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1777, 28, 88, 88, 48, 31, 26, 31, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1778, 18, 45, 45, 25, 31, 25, 31, 33, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1778, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1779, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1779, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1780, 29, 66, 66, 38, 47, 38, 47, 50, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1780, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1781, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1781, 32, 145, 145, 93, 54, 42, 54, 48, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1782, 35, 99, 99, 59, 70, 59, 70, 73, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1782, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1783, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1784, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1784, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1785, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1786, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1787, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1788, 27, 79, 79, 84, 57, 47, 47, 52, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1789, 33, 74, 74, 43, 53, 43, 53, 56, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1789, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1790, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1790, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1791, 18, 45, 45, 25, 31, 25, 31, 33, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1791, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1792, 31, 70, 70, 40, 50, 40, 50, 53, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1792, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1793, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1793, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1794, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1794, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1795, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1796, 34, 97, 97, 58, 68, 58, 68, 71, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1797, 21, 51, 51, 29, 35, 29, 35, 37, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1797, 21, 67, 67, 46, 33, 27, 27, 27, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1798, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1798, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1799, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1799, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1800, 60, 163, 163, 98, 116, 98, 116, 122, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1800, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1801, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1802, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1803, 39, 113, 113, 89, 108, 54, 108, 64, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1803, 39, 98, 98, 85, 58, 61, 58, 69, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1804, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1804, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1805, 35, 92, 92, 70, 66, 42, 66, 51, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1805, 35, 117, 117, 91, 77, 45, 52, 45, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1806, 66, 165, 165, 167, 133, 74, 173, 129, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1807, 16, 55, 55, 36, 28, 18, 21, 21, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1808, 35, 117, 117, 91, 77, 45, 52, 45, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1808, 35, 110, 110, 105, 70, 38, 70, 77, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1809, 36, 98, 98, 68, 46, 61, 46, 46, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1809, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1810, 37, 112, 112, 55, 40, 88, 118, 96, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1811, 36, 145, 145, 89, 79, 39, 79, 50, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1812, 64, 135, 135, 79, 98, 79, 98, 104, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1812, 64, 161, 161, 149, 149, 72, 168, 117, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1812, 64, 173, 173, 104, 124, 104, 124, 130, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1813, 35, 117, 117, 91, 77, 45, 52, 45, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1813, 35, 141, 141, 87, 77, 38, 77, 49, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1814, 41, 119, 119, 93, 114, 56, 114, 67, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1815, 41, 135, 135, 105, 89, 52, 60, 52, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1815, 41, 102, 102, 89, 60, 64, 60, 73, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1816, 53, 209, 209, 130, 114, 55, 114, 71, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1817, 54, 213, 213, 132, 116, 56, 116, 73, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1817, 54, 164, 164, 159, 105, 56, 105, 116, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1818, 37, 89, 89, 70, 47, 44, 47, 62, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1818, 37, 123, 123, 96, 81, 47, 55, 47, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1818, 37, 89, 89, 70, 47, 44, 47, 62, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1819, 40, 132, 132, 103, 87, 51, 59, 51, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1820, 63, 158, 158, 159, 127, 71, 166, 123, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1821, 61, 135, 135, 69, 69, 69, 69, 69, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1821, 61, 178, 178, 124, 87, 69, 69, 69, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1821, 61, 202, 202, 142, 142, 112, 136, 112, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1822, 62, 168, 168, 101, 120, 101, 120, 126, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1822, 61, 172, 172, 179, 100, 142, 100, 155, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1822, 61, 153, 153, 173, 91, 69, 161, 133, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1823, 45, 111, 111, 97, 66, 70, 66, 79, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1824, 47, 149, 149, 139, 92, 59, 111, 101, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1825, 53, 172, 172, 135, 114, 66, 77, 66, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1825, 53, 150, 150, 156, 87, 124, 87, 135, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1826, 65, 215, 215, 151, 151, 119, 145, 119, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1826, 65, 195, 195, 190, 125, 67, 125, 138, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1826, 65, 176, 176, 106, 125, 106, 125, 132, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1827, 62, 174, 174, 157, 101, 101, 114, 145, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1827, 62, 174, 174, 138, 169, 83, 169, 99, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1827, 62, 156, 156, 157, 125, 70, 163, 121, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1828, 49, 194, 194, 120, 105, 52, 105, 66, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1828, 50, 183, 183, 163, 118, 78, 88, 68, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1829, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1830, 28, 73, 73, 62, 43, 45, 43, 51, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1831, 48, 132, 132, 79, 94, 79, 94, 99, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1831, 51, 158, 158, 117, 99, 98, 87, 143, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1832, 25, 104, 104, 64, 56, 29, 56, 36, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1832, 26, 85, 85, 62, 53, 52, 47, 75, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1833, 52, 148, 148, 153, 86, 122, 86, 132, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1834, 43, 132, 132, 127, 84, 46, 84, 93, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1834, 44, 127, 127, 130, 73, 104, 73, 113, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1835, 60, 163, 163, 98, 116, 98, 116, 122, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1836, 57, 176, 176, 130, 111, 109, 97, 160, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1836, 58, 164, 164, 170, 95, 136, 95, 147, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1837, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1838, 25, 59, 59, 34, 41, 34, 41, 44, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1839, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1840, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1841, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1842, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1842, 52, 143, 143, 86, 101, 86, 101, 106, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1843, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1844, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1845, 46, 132, 132, 136, 76, 108, 76, 118, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1846, 11, 31, 31, 17, 21, 17, 21, 22, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1846, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1847, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1848, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1848, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1849, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1849, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1849, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1849, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1850, 26, 76, 76, 35, 55, 45, 37, 35, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1851, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1851, 27, 65, 65, 44, 36, 41, 41, 63, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1851, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1852, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1852, 27, 67, 67, 36, 36, 41, 49, 49, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1852, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1853, 29, 90, 90, 41, 43, 50, 53, 35, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1853, 29, 72, 72, 41, 35, 38, 38, 67, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1854, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1854, 29, 130, 130, 56, 41, 64, 44, 41, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1855, 29, 75, 75, 43, 43, 53, 53, 41, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1855, 29, 84, 84, 51, 51, 61, 61, 50, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1856, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1856, 30, 98, 98, 71, 54, 54, 63, 56, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1857, 27, 68, 68, 41, 36, 36, 36, 63, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1857, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1857, 27, 89, 89, 64, 49, 49, 57, 51, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1857, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1857, 27, 68, 68, 41, 36, 36, 36, 63, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1858, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1858, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1858, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1859, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1859, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1859, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1860, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1861, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1861, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1861, 30, 80, 80, 72, 123, 66, 42, 57, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1862, 31, 76, 76, 47, 40, 40, 40, 71, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1862, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1863, 28, 90, 90, 59, 62, 76, 65, 43, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1863, 34, 97, 97, 47, 51, 78, 71, 64, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1864, 32, 75, 75, 61, 51, 45, 51, 32, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1864, 35, 99, 99, 84, 73, 59, 73, 38, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1864, 32, 91, 91, 42, 67, 54, 45, 42, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1865, 19, 56, 56, 32, 44, 36, 44, 25, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1866, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1866, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1867, 17, 45, 45, 23, 24, 23, 29, 28, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1867, 17, 51, 51, 26, 28, 26, 33, 38, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1868, 9, 28, 28, 16, 14, 14, 16, 11, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1868, 13, 36, 36, 21, 18, 18, 21, 14, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1868, 17, 45, 45, 26, 22, 23, 26, 17, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1869, 41, 147, 147, 60, 85, 68, 85, 60, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1870, 40, 100, 100, 73, 67, 47, 59, 69, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1870, 40, 168, 168, 75, 47, 75, 47, 67, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1871, 30, 86, 86, 69, 57, 51, 87, 39, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1871, 30, 94, 94, 75, 51, 75, 51, 54, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1872, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1872, 33, 103, 103, 82, 56, 82, 56, 59, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1873, 36, 102, 102, 82, 68, 61, 104, 46, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1873, 36, 111, 111, 89, 61, 89, 61, 64, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1874, 39, 109, 109, 89, 73, 65, 112, 50, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1874, 39, 119, 119, 97, 65, 97, 65, 69, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1875, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1875, 42, 128, 128, 104, 70, 104, 70, 74, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1876, 13, 39, 39, 27, 25, 18, 22, 26, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1877, 22, 70, 70, 21, 34, 21, 34, 30, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1878, 41, 114, 114, 60, 60, 68, 77, 60, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1879, 22, 66, 66, 30, 39, 30, 39, 28, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1880, 22, 66, 66, 39, 30, 41, 32, 28, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1881, 39, 98, 98, 89, 34, 69, 34, 69, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1881, 39, 164, 164, 73, 46, 73, 46, 65, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1881, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1882, 40, 144, 144, 59, 83, 67, 83, 59, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1883, 40, 100, 100, 73, 67, 47, 59, 69, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1884, 29, 84, 84, 67, 56, 50, 85, 38, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1884, 29, 91, 91, 73, 50, 73, 50, 53, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1885, 35, 99, 99, 80, 66, 59, 101, 45, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1885, 35, 108, 108, 87, 59, 87, 59, 63, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1886, 38, 107, 107, 87, 71, 64, 109, 49, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1886, 38, 117, 117, 94, 64, 94, 64, 68, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1887, 41, 114, 114, 93, 77, 68, 118, 52, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1887, 41, 125, 125, 101, 68, 101, 68, 73, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1888, 44, 122, 122, 100, 82, 73, 126, 56, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1888, 44, 134, 134, 108, 73, 108, 73, 78, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1889, 13, 39, 39, 27, 25, 18, 22, 26, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1890, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1891, 35, 82, 82, 62, 77, 69, 56, 40, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1891, 37, 92, 92, 77, 66, 55, 44, 44, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1891, 39, 109, 109, 58, 58, 65, 73, 58, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1892, 21, 63, 63, 29, 37, 29, 37, 27, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1893, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1894, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1894, 25, 59, 59, 34, 49, 49, 26, 44, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1895, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1895, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1896, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1896, 36, 152, 152, 68, 43, 68, 43, 61, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1896, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1897, 38, 94, 94, 41, 60, 49, 68, 92, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1897, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1897, 38, 103, 103, 68, 90, 90, 52, 83, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1898, 40, 98, 98, 43, 63, 51, 71, 97, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1898, 40, 200, 200, 91, 55, 91, 55, 67, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1898, 40, 124, 124, 95, 95, 95, 95, 87, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1899, 39, 98, 98, 89, 34, 69, 34, 69, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1899, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1900, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1900, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1900, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1900, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1901, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1901, 29, 130, 130, 56, 41, 64, 44, 41, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1902, 49, 157, 157, 101, 96, 91, 91, 121, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1902, 49, 213, 213, 91, 66, 105, 71, 66, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1903, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1903, 27, 65, 65, 44, 36, 41, 41, 63, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1903, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1904, 24, 71, 71, 32, 52, 42, 35, 32, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1906, 29, 75, 75, 43, 43, 53, 53, 41, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1906, 29, 84, 84, 51, 51, 61, 61, 50, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1907, 29, 90, 90, 41, 43, 50, 53, 35, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1907, 29, 72, 72, 41, 35, 38, 38, 67, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1908, 49, 145, 145, 66, 69, 81, 86, 56, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1908, 49, 140, 140, 91, 81, 86, 86, 135, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1909, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1909, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1910, 23, 63, 63, 38, 32, 32, 30, 52, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1911, 40, 103, 103, 63, 53, 53, 49, 87, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1912, 60, 176, 176, 125, 103, 103, 97, 161, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1914, 23, 63, 63, 35, 39, 35, 41, 43, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1915, 23, 64, 64, 37, 35, 43, 36, 38, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1916, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1917, 43, 124, 124, 85, 92, 66, 103, 110, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1918, 29, 77, 77, 47, 39, 39, 36, 64, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1919, 45, 115, 115, 70, 59, 59, 54, 97, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1920, 59, 137, 137, 79, 67, 73, 73, 132, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1920, 59, 148, 148, 91, 75, 75, 69, 126, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1920, 59, 149, 149, 79, 79, 67, 67, 85, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1922, 26, 70, 70, 39, 43, 39, 46, 48, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1923, 26, 71, 71, 41, 39, 48, 40, 42, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1924, 45, 129, 129, 89, 96, 69, 107, 115, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1925, 16, 62, 62, 33, 34, 41, 39, 29, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1925, 16, 76, 76, 33, 25, 37, 26, 25, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1926, 36, 112, 112, 75, 79, 97, 82, 53, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1926, 42, 117, 117, 57, 62, 95, 87, 78, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1927, 16, 55, 55, 36, 41, 39, 42, 26, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1928, 44, 100, 100, 82, 69, 60, 69, 42, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1928, 47, 130, 130, 111, 97, 78, 97, 50, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1928, 44, 134, 134, 108, 84, 100, 84, 61, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1929, 16, 76, 76, 33, 25, 37, 26, 25, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1929, 16, 62, 62, 33, 34, 41, 39, 29, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1930, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1930, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1931, 18, 47, 47, 24, 25, 24, 31, 29, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1931, 18, 54, 54, 27, 29, 27, 34, 40, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1932, 9, 28, 28, 16, 14, 14, 16, 11, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1932, 13, 36, 36, 21, 18, 18, 21, 14, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1932, 16, 42, 42, 25, 21, 21, 25, 17, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1933, 27, 71, 71, 47, 32, 41, 32, 55, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1933, 27, 71, 71, 48, 34, 49, 44, 66, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1934, 24, 76, 76, 40, 40, 52, 42, 35, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1935, 27, 84, 84, 44, 44, 57, 47, 39, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1935, 27, 71, 71, 47, 32, 41, 32, 55, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1936, 27, 71, 71, 48, 34, 49, 44, 66, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1936, 27, 84, 84, 44, 44, 57, 47, 39, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1937, 34, 98, 98, 66, 54, 55, 52, 74, 472); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1938, 34, 93, 93, 61, 81, 81, 47, 75, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1939, 12, 41, 41, 20, 22, 24, 23, 25, 533); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1939, 12, 40, 40, 20, 21, 30, 28, 26, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1940, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1941, 43, 115, 115, 92, 110, 118, 84, 65, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1942, 43, 115, 115, 109, 110, 101, 84, 65, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1943, 32, 91, 91, 74, 61, 54, 93, 42, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1943, 34, 105, 105, 85, 58, 85, 58, 61, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1944, 38, 107, 107, 87, 71, 64, 109, 49, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1944, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1945, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1945, 44, 134, 134, 108, 73, 108, 73, 78, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1946, 47, 130, 130, 106, 87, 78, 134, 59, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1946, 48, 145, 145, 118, 79, 118, 79, 84, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1946, 49, 169, 169, 137, 101, 86, 91, 112, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1947, 15, 43, 43, 30, 28, 20, 25, 29, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1948, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1949, 43, 120, 120, 84, 93, 106, 93, 119, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1950, 41, 131, 131, 87, 83, 97, 85, 89, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1950, 41, 205, 205, 93, 56, 93, 56, 68, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1952, 17, 50, 50, 28, 43, 24, 28, 23, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1955, 9, 27, 27, 14, 13, 26, 14, 22, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1956, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1956, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1956, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1956, 50, 108, 108, 103, 113, 78, 68, 78, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1956, 50, 128, 128, 73, 118, 63, 73, 58, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1956, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1957, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1957, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1957, 52, 163, 163, 119, 91, 91, 106, 94, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1957, 52, 137, 137, 122, 143, 70, 70, 60, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1957, 52, 163, 163, 112, 122, 54, 54, 49, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1957, 53, 170, 170, 108, 103, 98, 98, 131, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1958, 51, 109, 109, 130, 115, 48, 48, 74, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1958, 51, 139, 139, 87, 104, 89, 104, 82, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1958, 51, 115, 115, 64, 125, 115, 79, 59, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1958, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1958, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1958, 51, 115, 115, 69, 186, 53, 69, 94, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1959, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1959, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1959, 51, 160, 160, 107, 102, 120, 104, 110, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1959, 52, 143, 143, 106, 138, 75, 106, 70, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1959, 53, 119, 119, 71, 193, 55, 71, 98, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1959, 53, 150, 150, 119, 92, 88, 88, 130, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1960, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1960, 53, 177, 177, 98, 108, 98, 124, 98, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1960, 53, 165, 165, 112, 130, 114, 135, 106, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1960, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1960, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1960, 55, 123, 123, 112, 79, 79, 101, 156, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1961, 52, 143, 143, 143, 132, 91, 96, 106, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1961, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1961, 51, 140, 140, 99, 110, 125, 110, 140, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1961, 53, 166, 166, 151, 161, 82, 92, 71, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1961, 52, 158, 158, 127, 138, 70, 80, 91, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1961, 51, 140, 140, 135, 94, 84, 84, 125, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1962, 52, 179, 179, 153, 105, 86, 127, 107, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1962, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1962, 51, 140, 140, 99, 110, 125, 110, 140, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1962, 52, 153, 153, 86, 153, 143, 96, 80, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1962, 51, 186, 186, 155, 145, 69, 69, 64, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1962, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1963, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1963, 52, 163, 163, 96, 91, 106, 148, 127, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1963, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1963, 53, 193, 193, 161, 151, 71, 71, 66, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1963, 51, 115, 115, 104, 74, 74, 94, 145, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1963, 51, 160, 160, 130, 89, 84, 99, 155, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1964, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1964, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1964, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1964, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1964, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1964, 50, 119, 119, 87, 68, 73, 73, 73, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1965, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1965, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1965, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1965, 50, 161, 161, 103, 98, 93, 93, 124, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1965, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1965, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1966, 52, 179, 179, 106, 132, 65, 96, 127, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1966, 51, 140, 140, 104, 74, 64, 64, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1966, 52, 148, 148, 122, 101, 80, 80, 112, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1966, 51, 135, 135, 79, 110, 89, 110, 59, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1966, 52, 137, 137, 70, 75, 70, 91, 106, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1966, 51, 334, 334, 28, 28, 59, 130, 74, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1967, 51, 150, 150, 125, 140, 53, 89, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1967, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1967, 54, 132, 132, 83, 73, 94, 73, 105, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1967, 51, 135, 135, 64, 110, 104, 130, 64, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1967, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1967, 54, 148, 148, 110, 143, 78, 110, 73, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1968, 53, 182, 182, 108, 135, 66, 98, 130, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1968, 51, 155, 155, 79, 94, 79, 120, 135, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1968, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1968, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1968, 51, 145, 145, 64, 94, 104, 166, 94, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1968, 53, 230, 230, 98, 71, 114, 77, 71, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1969, 52, 226, 226, 96, 70, 112, 75, 70, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1969, 52, 148, 148, 158, 86, 122, 138, 91, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1969, 52, 174, 174, 119, 114, 101, 112, 102, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1969, 52, 158, 158, 106, 112, 138, 117, 75, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1969, 51, 155, 155, 79, 94, 79, 120, 135, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1969, 51, 171, 171, 99, 99, 115, 125, 94, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1970, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1970, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1970, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1970, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1970, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1970, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1971, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1971, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1971, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1971, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1971, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1971, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1972, 5, 21, 21, 11, 11, 13, 13, 11, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1972, 5, 20, 20, 11, 10, 10, 10, 12, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1973, 12, 38, 38, 24, 30, 17, 17, 12, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1973, 11, 33, 33, 15, 16, 19, 20, 23, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1973, 11, 31, 31, 18, 28, 15, 15, 17, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1974, 9, 29, 29, 13, 13, 18, 13, 23, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1974, 9, 30, 30, 16, 14, 11, 13, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1975, 62, 181, 181, 138, 114, 101, 101, 114, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1975, 61, 178, 178, 173, 75, 142, 75, 142, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1975, 62, 205, 205, 151, 101, 138, 101, 126, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1975, 61, 169, 169, 173, 130, 136, 94, 94, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1976, 29, 78, 78, 64, 38, 64, 38, 35, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1976, 29, 87, 87, 44, 56, 70, 61, 53, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1977, 29, 71, 71, 35, 35, 53, 47, 44, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1978, 30, 89, 89, 54, 54, 45, 45, 69, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1978, 30, 83, 83, 72, 48, 36, 60, 84, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1979, 21, 65, 65, 39, 32, 29, 29, 43, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1979, 21, 59, 59, 35, 30, 30, 28, 48, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1980, 19, 54, 54, 44, 32, 36, 36, 46, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1980, 19, 56, 56, 36, 25, 34, 23, 44, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1981, 24, 66, 66, 54, 40, 44, 44, 56, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1981, 24, 73, 73, 61, 47, 52, 52, 64, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1982, 23, 64, 64, 52, 38, 43, 43, 54, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1982, 23, 64, 64, 52, 38, 43, 43, 54, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1983, 14, 54, 54, 24, 19, 26, 22, 29, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1985, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1985, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1985, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1986, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1986, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1987, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1987, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1988, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1988, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1988, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1989, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1989, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1989, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1989, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1990, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1990, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1990, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1990, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1990, 25, 84, 84, 54, 39, 34, 39, 26, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1991, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1991, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1991, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1992, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1992, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1993, 33, 97, 97, 76, 96, 72, 63, 56, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1994, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1994, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1994, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1994, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1995, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1995, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1995, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1996, 33, 124, 124, 86, 66, 59, 82, 49, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1997, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1997, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1998, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1998, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1999, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1999, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1999, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1999, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (1999, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2000, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2000, 30, 89, 89, 69, 87, 66, 57, 51, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2000, 30, 85, 85, 54, 50, 63, 54, 63, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2001, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2001, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2001, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2001, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2002, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2002, 32, 95, 95, 74, 93, 70, 61, 54, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2002, 30, 89, 89, 72, 50, 75, 66, 71, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2003, 34, 100, 100, 105, 58, 81, 92, 61, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2004, 32, 95, 95, 77, 53, 80, 70, 76, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2004, 32, 95, 95, 77, 53, 80, 70, 76, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2005, 34, 100, 100, 78, 98, 75, 64, 58, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2006, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2006, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2007, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2007, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2007, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2008, 33, 124, 124, 86, 66, 59, 82, 49, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2009, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2009, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2009, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2009, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2009, 25, 84, 84, 54, 39, 34, 39, 26, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2010, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2011, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2011, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2012, 37, 89, 89, 66, 88, 62, 51, 44, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2012, 37, 119, 119, 77, 55, 47, 55, 36, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2013, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2014, 38, 122, 122, 79, 56, 49, 56, 37, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2015, 33, 97, 97, 76, 96, 72, 63, 56, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2016, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2016, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2016, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2017, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2017, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2017, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2018, 24, 81, 81, 52, 37, 32, 37, 25, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2018, 24, 81, 81, 52, 37, 32, 37, 25, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2019, 28, 106, 106, 73, 57, 51, 71, 43, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2019, 30, 113, 113, 78, 60, 54, 75, 45, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2020, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2020, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2021, 49, 140, 140, 110, 140, 105, 91, 81, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2021, 49, 179, 179, 125, 96, 86, 120, 71, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2022, 50, 123, 123, 98, 60, 93, 78, 106, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2023, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2023, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2024, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2024, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2024, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2024, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2025, 47, 111, 111, 83, 111, 78, 64, 54, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2025, 47, 111, 111, 83, 111, 78, 64, 54, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2025, 47, 172, 172, 120, 92, 83, 115, 68, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2025, 47, 135, 135, 106, 134, 101, 87, 78, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2026, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2026, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2027, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2027, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2028, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2028, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2028, 23, 78, 78, 50, 36, 31, 36, 24, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2029, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2029, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2029, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2030, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2030, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2030, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2031, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2031, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2031, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2032, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2032, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2032, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2032, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2032, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2033, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2034, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2034, 49, 155, 155, 91, 86, 101, 140, 120, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2035, 55, 178, 178, 105, 101, 105, 151, 98, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2035, 55, 172, 172, 101, 96, 112, 156, 134, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2036, 55, 172, 172, 101, 96, 112, 156, 134, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2036, 58, 187, 187, 110, 107, 110, 159, 103, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2036, 58, 181, 181, 107, 101, 118, 165, 141, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2037, 41, 98, 98, 73, 97, 68, 56, 48, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2037, 42, 121, 121, 95, 120, 91, 78, 70, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2037, 41, 113, 113, 72, 67, 85, 73, 85, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2038, 47, 139, 139, 62, 71, 62, 71, 59, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2039, 39, 117, 117, 52, 60, 52, 60, 50, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2039, 37, 108, 108, 84, 107, 81, 70, 62, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2039, 37, 108, 108, 84, 107, 81, 70, 62, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2040, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2040, 39, 94, 94, 69, 93, 65, 54, 46, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2040, 40, 96, 96, 71, 95, 67, 55, 47, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2040, 41, 98, 98, 73, 97, 68, 56, 48, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2041, 45, 125, 125, 93, 66, 66, 66, 57, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2041, 44, 131, 131, 38, 64, 38, 64, 56, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2042, 46, 127, 127, 95, 67, 67, 67, 58, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2042, 47, 167, 167, 68, 97, 78, 97, 68, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2043, 48, 132, 132, 99, 70, 70, 70, 60, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2043, 49, 174, 174, 71, 101, 81, 101, 71, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2044, 58, 193, 193, 176, 112, 112, 112, 89, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2044, 54, 191, 191, 78, 110, 89, 110, 78, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2045, 39, 94, 94, 69, 93, 65, 54, 46, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2045, 43, 124, 124, 97, 123, 93, 80, 72, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2045, 41, 119, 119, 97, 66, 101, 89, 96, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2046, 42, 121, 121, 129, 70, 99, 112, 74, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2047, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2047, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2048, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2048, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2049, 47, 111, 111, 68, 106, 50, 73, 83, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2050, 45, 129, 129, 102, 129, 97, 84, 75, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2051, 42, 117, 117, 91, 78, 74, 86, 87, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2051, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2052, 48, 132, 132, 103, 88, 84, 98, 99, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2052, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2053, 56, 153, 153, 120, 102, 97, 113, 114, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2053, 55, 156, 156, 123, 156, 118, 101, 90, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2054, 46, 139, 139, 113, 76, 113, 76, 81, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2055, 45, 114, 114, 76, 57, 76, 57, 66, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2056, 43, 102, 102, 76, 102, 72, 59, 50, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2056, 43, 102, 102, 76, 102, 72, 59, 50, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2057, 35, 92, 92, 50, 52, 57, 52, 63, 544); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2057, 35, 92, 92, 70, 66, 42, 66, 51, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2057, 37, 104, 104, 79, 51, 51, 51, 73, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2058, 37, 130, 130, 99, 88, 47, 88, 59, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2059, 36, 102, 102, 77, 50, 50, 50, 71, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2059, 36, 94, 94, 71, 68, 43, 68, 52, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2060, 37, 93, 93, 81, 70, 47, 47, 62, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2061, 43, 102, 102, 63, 97, 46, 67, 76, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2062, 21, 55, 55, 31, 27, 25, 29, 35, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2062, 21, 70, 70, 46, 35, 23, 27, 27, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2063, 43, 107, 107, 93, 80, 54, 54, 72, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2064, 50, 113, 113, 83, 67, 63, 77, 78, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2064, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2064, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2064, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2065, 51, 120, 120, 89, 120, 84, 69, 59, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2065, 51, 160, 160, 104, 74, 64, 74, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2065, 52, 122, 122, 106, 60, 60, 70, 96, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2065, 53, 124, 124, 108, 61, 61, 71, 98, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2065, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2065, 52, 148, 148, 117, 65, 70, 106, 101, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2066, 51, 150, 150, 86, 91, 79, 79, 80, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2066, 51, 141, 141, 96, 81, 79, 79, 89, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2066, 51, 160, 160, 104, 74, 64, 74, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2066, 51, 120, 120, 89, 120, 84, 69, 59, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2066, 51, 160, 160, 125, 94, 74, 84, 69, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2066, 51, 130, 130, 130, 103, 59, 135, 100, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2067, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2067, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2067, 53, 135, 135, 151, 80, 61, 140, 116, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2067, 53, 135, 135, 135, 107, 61, 140, 104, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2067, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2067, 51, 135, 135, 105, 84, 74, 94, 122, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2068, 53, 145, 145, 114, 97, 92, 107, 108, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2068, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2068, 51, 186, 186, 130, 99, 89, 125, 74, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2068, 51, 171, 171, 120, 120, 94, 115, 94, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2068, 53, 166, 166, 130, 98, 77, 87, 71, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2068, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2069, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2069, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2069, 52, 148, 148, 132, 86, 86, 96, 122, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2069, 51, 160, 160, 125, 94, 74, 84, 69, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2069, 53, 150, 150, 156, 130, 82, 98, 114, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2069, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2070, 51, 145, 145, 115, 145, 110, 94, 84, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2070, 51, 186, 186, 130, 99, 89, 125, 74, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2070, 52, 174, 174, 119, 114, 101, 112, 102, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2070, 52, 174, 174, 158, 106, 91, 112, 80, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2070, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2070, 52, 174, 174, 122, 122, 96, 117, 96, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2071, 51, 145, 145, 115, 145, 110, 94, 84, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2071, 53, 167, 167, 132, 105, 114, 103, 114, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2071, 52, 174, 174, 158, 106, 91, 112, 80, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2071, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2071, 52, 148, 148, 158, 86, 122, 138, 91, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2071, 51, 186, 186, 120, 104, 64, 104, 115, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2072, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2072, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2072, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2072, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2072, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2072, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2073, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2073, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2073, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2073, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2073, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2073, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2074, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2074, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2074, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2074, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2074, 55, 194, 194, 101, 101, 96, 96, 74, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2074, 55, 183, 183, 107, 118, 151, 123, 85, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2075, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2075, 51, 145, 145, 104, 166, 64, 94, 94, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2075, 52, 164, 164, 129, 103, 112, 101, 112, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2075, 51, 171, 171, 99, 110, 140, 115, 79, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2075, 52, 132, 132, 122, 210, 112, 70, 96, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2075, 51, 140, 140, 120, 104, 84, 104, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2076, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2076, 51, 130, 130, 120, 206, 110, 69, 94, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2076, 52, 158, 158, 112, 231, 80, 91, 54, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2076, 52, 189, 189, 158, 148, 70, 70, 65, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2076, 52, 163, 163, 109, 110, 127, 127, 106, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2076, 51, 140, 140, 110, 93, 89, 103, 104, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2077, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2077, 55, 227, 227, 96, 90, 145, 129, 96, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2077, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2077, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2077, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2077, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2078, 29, 72, 72, 41, 38, 35, 35, 47, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2078, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2079, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2079, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2079, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2079, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2079, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2080, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2080, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2080, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2080, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2081, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2081, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2081, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2081, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2082, 28, 70, 70, 40, 37, 34, 34, 46, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2082, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2082, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2083, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2083, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2084, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2084, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2084, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2086, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2086, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2087, 28, 81, 81, 76, 54, 48, 48, 71, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2087, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2087, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2088, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2088, 26, 63, 63, 58, 37, 32, 32, 53, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2088, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2089, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2089, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2090, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2090, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2090, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2090, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2091, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2092, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2092, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2092, 30, 88, 88, 51, 48, 45, 45, 58, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2093, 9, 29, 29, 19, 13, 13, 13, 20, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2094, 34, 124, 124, 51, 51, 68, 82, 64, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2095, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2095, 32, 91, 91, 86, 61, 54, 54, 80, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2095, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2096, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2096, 32, 95, 95, 74, 58, 55, 55, 80, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2097, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2097, 14, 46, 46, 26, 25, 24, 24, 29, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2098, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2098, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2098, 20, 63, 63, 48, 38, 36, 36, 52, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2102, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2102, 34, 112, 112, 71, 68, 64, 64, 85, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2104, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2104, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2104, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2105, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2105, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2106, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2106, 35, 103, 103, 80, 63, 60, 60, 87, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2107, 17, 46, 46, 26, 24, 23, 23, 30, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2107, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2107, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2107, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2107, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2108, 15, 40, 40, 35, 23, 20, 20, 32, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2108, 16, 42, 42, 37, 25, 21, 21, 34, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2108, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2109, 25, 75, 75, 44, 41, 39, 39, 49, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2109, 25, 75, 75, 44, 41, 39, 39, 49, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2110, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2110, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2111, 38, 124, 124, 79, 75, 71, 71, 95, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2111, 38, 124, 124, 79, 75, 71, 71, 95, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2112, 32, 79, 79, 48, 45, 61, 45, 61, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2112, 32, 79, 79, 35, 35, 51, 35, 70, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2112, 32, 91, 91, 70, 54, 48, 48, 96, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2112, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2113, 36, 102, 102, 79, 61, 53, 53, 107, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2113, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2113, 36, 105, 105, 71, 68, 86, 68, 86, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2114, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2114, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2115, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2115, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2116, 26, 66, 66, 42, 29, 29, 29, 58, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2116, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2117, 29, 72, 72, 44, 41, 56, 41, 56, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2117, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2118, 27, 79, 79, 60, 47, 41, 41, 82, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2119, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2120, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2121, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2121, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2121, 25, 74, 74, 56, 44, 39, 39, 76, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2122, 30, 77, 77, 39, 51, 39, 60, 45, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2123, 32, 79, 79, 48, 45, 61, 45, 61, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2123, 32, 82, 82, 42, 54, 42, 64, 48, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2124, 35, 85, 85, 52, 49, 66, 49, 66, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2124, 35, 110, 110, 66, 80, 66, 91, 73, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2125, 38, 92, 92, 56, 52, 71, 52, 71, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2125, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2126, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2126, 41, 119, 119, 81, 77, 97, 77, 97, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2127, 28, 70, 70, 31, 31, 45, 31, 62, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2127, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2127, 28, 81, 81, 43, 71, 62, 54, 51, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2128, 32, 91, 91, 70, 54, 48, 48, 96, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2128, 32, 95, 95, 67, 106, 42, 61, 61, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2129, 30, 86, 86, 45, 75, 66, 57, 54, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2129, 30, 89, 89, 60, 57, 72, 57, 72, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2130, 33, 81, 81, 49, 46, 63, 46, 63, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2130, 33, 94, 94, 72, 56, 49, 49, 99, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2131, 34, 123, 123, 63, 73, 66, 76, 51, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2132, 36, 102, 102, 79, 61, 53, 53, 107, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2132, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2132, 36, 105, 105, 71, 68, 86, 68, 86, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2133, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2133, 25, 74, 74, 56, 44, 39, 39, 76, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2134, 17, 55, 55, 38, 58, 24, 34, 34, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2134, 19, 58, 58, 44, 34, 30, 30, 59, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2135, 28, 70, 70, 31, 31, 45, 31, 62, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2135, 28, 70, 70, 43, 40, 54, 40, 54, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2136, 30, 110, 110, 56, 65, 59, 68, 46, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2137, 29, 69, 69, 64, 41, 35, 35, 58, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2137, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2138, 25, 76, 76, 54, 84, 34, 49, 49, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2138, 25, 76, 76, 54, 84, 34, 49, 49, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2139, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2139, 25, 93, 93, 48, 55, 50, 57, 39, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2140, 30, 89, 89, 63, 99, 39, 57, 57, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2141, 27, 65, 65, 60, 39, 33, 33, 55, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2141, 27, 81, 81, 57, 90, 36, 52, 52, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2141, 27, 100, 100, 51, 59, 53, 61, 42, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2142, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2142, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2143, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2144, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2145, 33, 120, 120, 61, 71, 64, 74, 50, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2145, 33, 97, 97, 66, 63, 79, 63, 79, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2146, 29, 75, 75, 38, 50, 38, 58, 44, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2147, 32, 79, 79, 48, 45, 61, 45, 61, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2147, 32, 82, 82, 42, 54, 42, 64, 48, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2148, 35, 85, 85, 52, 49, 66, 49, 66, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2148, 35, 110, 110, 66, 80, 66, 91, 73, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2149, 38, 92, 92, 56, 52, 71, 52, 71, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2149, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2150, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2150, 41, 119, 119, 81, 77, 97, 77, 97, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2151, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2151, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2152, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2152, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2153, 32, 95, 95, 74, 58, 55, 55, 80, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2153, 32, 95, 95, 74, 58, 55, 55, 80, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2154, 49, 140, 140, 110, 86, 82, 82, 120, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2154, 49, 140, 140, 110, 86, 82, 82, 120, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2155, 28, 70, 70, 40, 37, 34, 34, 46, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2155, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2155, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2156, 47, 111, 111, 78, 50, 51, 51, 87, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2156, 49, 140, 140, 110, 86, 82, 82, 120, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2157, 53, 150, 150, 119, 92, 88, 88, 130, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2157, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2158, 28, 81, 81, 76, 54, 48, 48, 71, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2158, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2158, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2159, 30, 86, 86, 81, 57, 51, 51, 75, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2159, 30, 86, 86, 81, 57, 51, 51, 75, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2159, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2160, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2160, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2160, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2162, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2162, 26, 63, 63, 58, 37, 32, 32, 53, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2162, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2163, 47, 130, 130, 50, 50, 55, 74, 68, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2163, 49, 174, 174, 71, 71, 97, 116, 91, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2164, 53, 188, 188, 77, 77, 104, 125, 98, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2164, 55, 194, 194, 79, 79, 108, 130, 101, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2165, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2166, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2166, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2166, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2166, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2167, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2167, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2167, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2167, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2168, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2168, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2168, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2168, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2169, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2169, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2169, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2170, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2170, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2170, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2171, 48, 137, 137, 108, 84, 80, 80, 118, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2171, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2171, 48, 137, 137, 108, 84, 80, 80, 118, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2172, 47, 111, 111, 64, 59, 54, 54, 74, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2172, 49, 138, 138, 81, 76, 71, 71, 92, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2173, 53, 148, 148, 87, 82, 77, 77, 99, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2173, 55, 176, 176, 112, 107, 101, 101, 135, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2174, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2174, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2174, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2174, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2175, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2175, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2175, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2175, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2175, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2176, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2177, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2177, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2177, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2177, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2178, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2178, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2178, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2178, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2179, 47, 151, 151, 97, 92, 87, 87, 116, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2179, 47, 151, 151, 97, 92, 87, 87, 116, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2179, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2179, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2180, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2180, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2180, 30, 88, 88, 51, 48, 45, 45, 58, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2181, 29, 72, 72, 41, 38, 35, 35, 47, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2181, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2182, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2182, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2183, 19, 58, 58, 23, 23, 25, 33, 30, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2184, 54, 148, 148, 116, 89, 78, 78, 159, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2185, 59, 161, 161, 126, 97, 85, 85, 173, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2186, 53, 145, 145, 114, 68, 114, 68, 120, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2186, 57, 201, 201, 168, 84, 145, 84, 106, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2187, 27, 79, 79, 30, 30, 34, 44, 41, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2187, 27, 100, 100, 41, 41, 55, 66, 52, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2188, 38, 137, 137, 56, 56, 76, 91, 71, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2188, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2189, 60, 211, 211, 86, 86, 117, 141, 110, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2189, 60, 211, 211, 86, 86, 117, 141, 110, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2190, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2190, 57, 161, 161, 111, 105, 133, 105, 133, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2191, 46, 164, 164, 67, 67, 91, 109, 85, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2191, 48, 156, 156, 137, 89, 70, 79, 118, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2192, 31, 114, 114, 47, 47, 63, 75, 59, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2193, 55, 150, 150, 145, 101, 90, 90, 134, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2193, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2193, 55, 194, 194, 162, 82, 140, 82, 102, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2194, 17, 46, 46, 29, 21, 21, 21, 31, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2194, 17, 53, 53, 21, 21, 23, 30, 28, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2195, 51, 120, 120, 79, 53, 53, 53, 110, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2195, 55, 176, 176, 112, 107, 101, 101, 135, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2196, 59, 161, 161, 126, 97, 85, 85, 173, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2196, 61, 194, 194, 124, 118, 112, 112, 150, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2197, 54, 148, 148, 116, 69, 116, 69, 122, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2197, 54, 153, 153, 105, 100, 127, 100, 127, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2198, 31, 89, 89, 34, 34, 38, 50, 47, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2198, 33, 120, 120, 49, 49, 67, 80, 63, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2199, 44, 157, 157, 64, 64, 87, 105, 82, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2199, 44, 157, 157, 64, 64, 87, 105, 82, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2200, 59, 166, 166, 120, 191, 73, 108, 108, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2200, 59, 208, 208, 85, 85, 115, 139, 108, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2200, 59, 208, 208, 85, 85, 115, 139, 108, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2201, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2201, 57, 161, 161, 111, 105, 133, 105, 133, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2202, 45, 161, 161, 66, 66, 89, 107, 84, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2202, 47, 125, 125, 59, 101, 97, 120, 59, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2203, 34, 124, 124, 51, 51, 68, 82, 64, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2204, 55, 145, 145, 107, 79, 68, 68, 112, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2204, 57, 161, 161, 128, 99, 95, 95, 139, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2204, 59, 208, 208, 85, 85, 115, 139, 108, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2205, 9, 29, 29, 19, 13, 13, 13, 20, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2206, 46, 109, 109, 49, 49, 72, 49, 99, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2206, 43, 124, 124, 97, 76, 72, 72, 106, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2207, 48, 171, 171, 70, 70, 95, 114, 89, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2208, 39, 90, 90, 85, 54, 46, 46, 77, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2208, 41, 114, 114, 109, 77, 68, 68, 101, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2208, 37, 86, 86, 81, 51, 44, 44, 73, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2209, 41, 98, 98, 64, 44, 44, 44, 89, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2209, 41, 119, 119, 93, 73, 69, 69, 101, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2210, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2210, 14, 46, 46, 26, 25, 24, 24, 29, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2211, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2211, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2211, 20, 63, 63, 48, 38, 36, 36, 52, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2212, 35, 82, 82, 77, 49, 42, 42, 70, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2212, 35, 82, 82, 77, 49, 42, 42, 70, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2212, 35, 99, 99, 94, 66, 59, 59, 87, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2212, 36, 102, 102, 97, 68, 61, 61, 89, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2213, 48, 113, 113, 75, 51, 51, 51, 79, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2214, 42, 121, 121, 95, 74, 71, 71, 104, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2214, 39, 94, 94, 65, 42, 43, 43, 73, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2215, 13, 38, 38, 21, 20, 18, 18, 24, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2215, 44, 142, 142, 91, 86, 82, 82, 109, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2216, 37, 108, 108, 84, 66, 63, 63, 92, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2217, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2217, 44, 127, 127, 91, 144, 56, 82, 82, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2218, 48, 137, 137, 99, 156, 60, 89, 89, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2218, 51, 145, 145, 115, 89, 85, 85, 125, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2219, 55, 156, 156, 112, 178, 68, 101, 101, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2219, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2224, 44, 127, 127, 86, 82, 104, 82, 104, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2224, 39, 141, 141, 58, 58, 78, 93, 73, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2225, 36, 105, 105, 82, 64, 61, 61, 89, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2225, 37, 106, 106, 62, 59, 55, 55, 70, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2226, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2226, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2226, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2228, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2228, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2229, 38, 111, 111, 87, 68, 65, 65, 94, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2229, 44, 127, 127, 100, 78, 74, 74, 108, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2230, 17, 46, 46, 26, 24, 23, 23, 30, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2230, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2230, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2230, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2230, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2231, 16, 42, 42, 37, 25, 21, 21, 34, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2231, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2231, 18, 47, 47, 42, 27, 24, 24, 38, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2232, 28, 81, 81, 31, 31, 35, 46, 43, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2232, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2233, 33, 94, 94, 36, 36, 40, 53, 49, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2233, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2234, 37, 106, 106, 62, 59, 55, 55, 70, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2234, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2234, 38, 124, 124, 79, 75, 71, 71, 95, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2235, 56, 179, 179, 114, 109, 103, 103, 138, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2235, 44, 142, 142, 91, 86, 82, 82, 109, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2235, 54, 191, 191, 78, 78, 106, 128, 100, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2236, 37, 104, 104, 81, 62, 55, 55, 110, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2236, 37, 115, 115, 70, 84, 70, 96, 77, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2237, 39, 113, 113, 81, 128, 50, 73, 73, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2238, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2239, 26, 68, 68, 35, 45, 35, 53, 40, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2239, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2240, 32, 91, 91, 70, 54, 48, 48, 96, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2240, 32, 95, 95, 64, 61, 77, 61, 77, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2241, 30, 86, 86, 66, 51, 45, 45, 90, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2242, 30, 86, 86, 66, 51, 45, 45, 90, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2242, 30, 89, 89, 63, 99, 39, 57, 57, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2243, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2244, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2245, 34, 86, 86, 44, 58, 44, 68, 51, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2246, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2247, 43, 124, 124, 97, 76, 72, 72, 106, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2247, 43, 132, 132, 80, 97, 80, 110, 89, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2248, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2248, 48, 147, 147, 89, 108, 89, 123, 99, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2248, 49, 159, 159, 140, 91, 71, 81, 120, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2249, 32, 91, 91, 86, 61, 54, 54, 80, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2250, 100, 196, 196, 81, 71, 251, 151, 221, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2250, 100, 226, 226, 131, 111, 101, 121, 151, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2250, 100, 226, 226, 131, 121, 111, 111, 153, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2250, 100, 226, 226, 161, 101, 103, 103, 181, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2250, 100, 216, 216, 211, 131, 111, 111, 191, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2250, 100, 206, 206, 111, 101, 241, 111, 201, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2251, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2251, 100, 226, 226, 131, 111, 101, 121, 151, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2251, 100, 226, 226, 131, 121, 111, 111, 153, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2251, 100, 226, 226, 161, 101, 103, 103, 181, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2251, 100, 216, 216, 211, 131, 111, 111, 191, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2251, 100, 266, 266, 131, 141, 221, 201, 181, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2252, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2252, 100, 272, 272, 161, 151, 141, 141, 183, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2252, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2252, 100, 276, 276, 221, 121, 131, 201, 191, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2252, 100, 236, 236, 141, 131, 271, 151, 231, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2253, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2253, 100, 272, 272, 161, 151, 141, 141, 183, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2253, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2253, 100, 286, 286, 171, 161, 221, 191, 221, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2253, 100, 206, 206, 111, 101, 241, 111, 201, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2254, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2254, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2254, 100, 312, 312, 201, 191, 181, 181, 243, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2254, 100, 296, 296, 201, 181, 171, 191, 221, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2254, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2254, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2255, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2255, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2255, 100, 312, 312, 201, 191, 181, 181, 243, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2255, 100, 296, 296, 201, 181, 171, 191, 221, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2255, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2255, 100, 236, 236, 141, 131, 271, 151, 231, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2256, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2256, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2256, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2256, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2256, 100, 312, 312, 201, 191, 181, 181, 243, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2256, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2257, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2257, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2257, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2257, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2257, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2257, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2258, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2258, 100, 276, 276, 191, 251, 111, 171, 211, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2258, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2258, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2258, 100, 266, 266, 211, 125, 211, 125, 223, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2258, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2259, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2259, 100, 276, 276, 191, 181, 231, 181, 231, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2259, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2259, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2259, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2259, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2260, 50, 118, 118, 68, 63, 58, 58, 79, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2260, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2260, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2260, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2260, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2260, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2261, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2261, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2261, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2261, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2261, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2262, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2262, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2262, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2263, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2263, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2264, 36, 105, 105, 93, 61, 61, 68, 86, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2265, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2265, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2265, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2266, 37, 97, 97, 107, 57, 44, 99, 82, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2266, 37, 97, 97, 96, 76, 44, 99, 74, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2267, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2268, 40, 120, 120, 83, 59, 47, 47, 47, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2268, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2269, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2269, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2269, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2270, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2270, 43, 128, 128, 89, 63, 50, 50, 50, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2270, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2271, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2272, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2272, 30, 80, 80, 87, 47, 36, 81, 68, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2272, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2272, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2273, 33, 77, 77, 46, 122, 36, 46, 63, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2273, 36, 94, 94, 104, 56, 43, 97, 80, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2273, 33, 104, 104, 72, 148, 53, 59, 36, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2273, 38, 130, 130, 117, 79, 68, 83, 60, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2274, 27, 73, 73, 71, 57, 33, 74, 55, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2275, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2275, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2275, 25, 76, 76, 66, 44, 44, 49, 61, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2276, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2276, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2277, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2277, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2277, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2278, 27, 73, 73, 79, 43, 33, 74, 61, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2279, 30, 94, 94, 51, 33, 27, 33, 30, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2279, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2279, 30, 137, 137, 87, 51, 39, 51, 45, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2280, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2281, 14, 48, 48, 32, 24, 19, 19, 19, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2282, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2282, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2283, 33, 102, 102, 56, 36, 30, 36, 33, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2283, 33, 102, 102, 56, 36, 30, 36, 33, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2283, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2284, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2284, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2285, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2285, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2286, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2287, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2288, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2288, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2289, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2289, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2289, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2290, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2290, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2290, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2290, 33, 114, 114, 102, 69, 59, 72, 53, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2291, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2291, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2292, 32, 145, 145, 93, 54, 42, 54, 48, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2293, 13, 46, 46, 25, 17, 14, 17, 16, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2294, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2295, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2295, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2296, 34, 154, 154, 98, 58, 44, 58, 51, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2297, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2297, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2298, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2299, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2299, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2300, 39, 119, 119, 65, 42, 34, 42, 38, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2300, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2300, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2301, 41, 183, 183, 118, 68, 52, 68, 60, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2301, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2301, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2302, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2302, 43, 145, 145, 132, 89, 76, 93, 67, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2302, 43, 145, 145, 132, 89, 76, 93, 67, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2303, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2304, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2305, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2305, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2306, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2306, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2306, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2307, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2307, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2307, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2307, 33, 114, 114, 102, 69, 59, 72, 53, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2308, 15, 52, 52, 28, 19, 16, 19, 17, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2309, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2310, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2310, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2311, 31, 141, 141, 90, 53, 40, 53, 47, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2312, 36, 105, 105, 93, 61, 61, 68, 86, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2313, 40, 120, 120, 83, 59, 47, 47, 47, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2313, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2314, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2314, 43, 128, 128, 89, 63, 50, 50, 50, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2314, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2315, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2315, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2316, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2316, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2316, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2317, 37, 112, 112, 77, 55, 44, 44, 44, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2317, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2318, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2318, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2319, 55, 172, 172, 134, 101, 79, 90, 74, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2319, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2320, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2321, 37, 97, 97, 107, 57, 44, 99, 82, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2321, 37, 97, 97, 96, 76, 44, 99, 74, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2322, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2322, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2322, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2323, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2324, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2325, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2325, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2326, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2326, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2327, 55, 172, 172, 134, 101, 79, 90, 74, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2327, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2328, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2328, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2328, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2329, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2330, 52, 130, 130, 87, 65, 87, 65, 75, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2330, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2331, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2331, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2331, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2332, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2332, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2332, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2333, 30, 71, 71, 42, 111, 33, 42, 57, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2333, 32, 101, 101, 70, 144, 51, 58, 35, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2334, 54, 126, 126, 110, 62, 62, 73, 100, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2334, 53, 158, 158, 87, 55, 45, 55, 50, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2334, 55, 243, 243, 156, 90, 68, 90, 79, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2335, 58, 164, 164, 147, 95, 95, 107, 136, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2335, 59, 260, 260, 167, 97, 73, 97, 85, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2335, 60, 264, 264, 170, 98, 74, 98, 86, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2336, 25, 68, 68, 44, 34, 44, 34, 39, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2337, 52, 163, 163, 127, 96, 75, 86, 70, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2337, 58, 193, 193, 176, 118, 101, 124, 89, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2338, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2338, 22, 70, 70, 48, 34, 28, 28, 28, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2338, 21, 51, 51, 29, 35, 29, 35, 37, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2339, 57, 167, 167, 156, 93, 156, 93, 88, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2339, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2340, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2341, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2341, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2342, 35, 91, 91, 60, 45, 60, 45, 52, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2343, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2344, 36, 93, 93, 61, 46, 61, 46, 53, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2344, 35, 82, 82, 49, 129, 38, 49, 66, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2344, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2345, 49, 164, 164, 150, 101, 86, 105, 76, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2346, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2346, 22, 70, 70, 48, 34, 28, 28, 28, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2346, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2347, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2348, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2349, 28, 64, 64, 37, 45, 37, 45, 48, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2350, 53, 119, 119, 61, 61, 61, 61, 61, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2350, 57, 155, 155, 116, 150, 82, 116, 76, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2350, 58, 158, 158, 176, 118, 95, 95, 107, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2351, 33, 104, 104, 72, 148, 53, 59, 36, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2352, 28, 74, 74, 49, 37, 49, 37, 43, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2352, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2352, 27, 62, 62, 36, 44, 36, 44, 47, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2353, 54, 121, 121, 73, 197, 56, 73, 100, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2353, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2354, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2355, 55, 123, 123, 63, 63, 63, 63, 63, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2355, 59, 149, 149, 167, 88, 67, 156, 128, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2356, 23, 78, 78, 59, 45, 36, 40, 33, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2356, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2356, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2357, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2357, 25, 59, 59, 34, 41, 34, 41, 44, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2357, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2358, 35, 110, 110, 77, 157, 56, 63, 38, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2358, 37, 115, 115, 81, 166, 59, 66, 40, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2359, 54, 121, 121, 62, 62, 62, 62, 62, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2359, 54, 161, 161, 89, 56, 46, 56, 51, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2359, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2360, 59, 149, 149, 138, 138, 67, 156, 108, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2360, 59, 260, 260, 167, 97, 73, 97, 85, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2360, 59, 196, 196, 179, 120, 102, 126, 91, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2361, 26, 70, 70, 46, 35, 46, 35, 40, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2362, 51, 120, 120, 104, 59, 59, 69, 94, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2362, 53, 166, 166, 130, 98, 77, 87, 71, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2362, 55, 168, 168, 139, 102, 139, 102, 143, 550); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2363, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2363, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2363, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2364, 58, 158, 158, 176, 118, 95, 95, 107, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2364, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2365, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2366, 28, 92, 92, 85, 57, 37, 68, 62, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2367, 38, 124, 124, 99, 68, 84, 68, 83, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2368, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2369, 37, 95, 95, 63, 47, 63, 47, 55, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2369, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2369, 37, 89, 89, 70, 47, 44, 47, 62, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2370, 48, 161, 161, 147, 99, 84, 103, 75, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2371, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2371, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2371, 24, 57, 57, 32, 40, 32, 40, 42, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2372, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2373, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2374, 26, 70, 70, 46, 35, 46, 35, 40, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2374, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2375, 58, 158, 158, 176, 118, 95, 95, 107, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2375, 58, 185, 185, 148, 101, 125, 101, 124, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2376, 38, 118, 118, 83, 170, 60, 68, 41, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2377, 31, 81, 81, 53, 40, 53, 40, 47, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2377, 31, 70, 70, 40, 50, 40, 50, 53, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2377, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2378, 54, 169, 169, 159, 105, 67, 127, 116, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2378, 54, 180, 180, 164, 110, 94, 116, 83, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2379, 43, 124, 124, 110, 72, 72, 80, 102, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2379, 39, 105, 105, 93, 108, 54, 54, 46, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2379, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2380, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2381, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2381, 32, 85, 85, 93, 50, 38, 86, 72, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2381, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2381, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2382, 30, 71, 71, 42, 111, 33, 42, 57, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2382, 41, 106, 106, 118, 63, 48, 109, 91, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2382, 33, 77, 77, 46, 122, 36, 46, 63, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2382, 37, 126, 126, 114, 77, 66, 81, 59, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2383, 41, 94, 94, 56, 150, 44, 56, 77, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2383, 53, 135, 135, 151, 80, 61, 140, 116, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2383, 49, 110, 110, 66, 179, 52, 66, 91, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2383, 53, 177, 177, 161, 108, 92, 114, 82, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2384, 27, 73, 73, 71, 57, 33, 74, 55, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2385, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2385, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2385, 25, 76, 76, 66, 44, 44, 49, 61, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2386, 47, 158, 158, 111, 111, 87, 106, 87, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2387, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2387, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2388, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2388, 42, 92, 92, 53, 66, 53, 66, 70, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2388, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2389, 27, 73, 73, 79, 43, 33, 74, 61, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2390, 65, 195, 195, 190, 125, 67, 125, 138, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2390, 65, 163, 163, 184, 97, 73, 171, 141, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2391, 40, 124, 124, 119, 79, 43, 79, 87, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2392, 34, 90, 90, 68, 64, 41, 64, 49, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2392, 34, 137, 137, 85, 75, 37, 75, 47, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2392, 34, 107, 107, 102, 68, 37, 68, 75, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2393, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2393, 35, 106, 106, 52, 38, 84, 112, 91, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2393, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2394, 64, 180, 180, 162, 104, 104, 117, 149, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2394, 64, 180, 180, 143, 175, 85, 175, 102, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2394, 64, 212, 212, 149, 149, 117, 143, 117, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2395, 37, 101, 101, 70, 47, 62, 47, 47, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2396, 16, 55, 55, 36, 28, 18, 21, 21, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2397, 64, 148, 148, 130, 72, 72, 85, 117, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2397, 64, 199, 199, 188, 124, 79, 149, 136, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2397, 64, 231, 231, 207, 149, 98, 111, 85, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2398, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2399, 36, 112, 112, 107, 71, 39, 71, 79, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2400, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2400, 36, 98, 98, 68, 46, 61, 46, 46, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2401, 43, 124, 124, 97, 119, 59, 119, 70, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2401, 43, 107, 107, 93, 63, 67, 63, 76, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2401, 43, 158, 158, 140, 102, 67, 76, 59, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2402, 50, 153, 153, 103, 78, 48, 58, 58, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2403, 53, 172, 172, 135, 114, 66, 77, 66, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2403, 53, 150, 150, 119, 145, 71, 145, 85, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2404, 37, 123, 123, 96, 81, 47, 55, 47, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2404, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2404, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2405, 50, 128, 128, 98, 93, 58, 93, 71, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2406, 47, 135, 135, 106, 130, 64, 130, 76, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2407, 62, 243, 243, 151, 132, 64, 132, 83, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2407, 62, 205, 205, 188, 126, 107, 132, 95, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2407, 62, 156, 156, 145, 145, 70, 163, 114, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2408, 50, 128, 128, 98, 93, 58, 93, 71, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2409, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2410, 52, 163, 163, 153, 101, 65, 122, 112, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2410, 52, 189, 189, 169, 122, 80, 91, 70, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2410, 52, 169, 169, 164, 158, 86, 106, 49, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2411, 42, 134, 134, 125, 83, 53, 99, 91, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2412, 47, 139, 139, 111, 139, 83, 92, 64, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2413, 61, 135, 135, 69, 69, 69, 69, 69, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2413, 61, 172, 172, 136, 167, 81, 167, 97, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2413, 61, 180, 180, 100, 63, 51, 63, 57, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2414, 61, 141, 141, 124, 69, 69, 81, 112, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2414, 61, 190, 190, 179, 118, 75, 142, 130, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2414, 61, 221, 221, 197, 142, 94, 106, 81, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2415, 53, 161, 161, 156, 103, 55, 103, 114, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2416, 54, 153, 153, 159, 132, 83, 100, 116, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2416, 54, 169, 169, 159, 105, 67, 127, 116, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2417, 50, 153, 153, 103, 78, 48, 58, 58, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2418, 47, 153, 153, 120, 101, 59, 68, 59, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2419, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2419, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2419, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2419, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2420, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2421, 62, 187, 187, 182, 120, 64, 120, 132, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2421, 62, 224, 224, 200, 145, 95, 107, 83, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2421, 62, 168, 168, 188, 126, 101, 101, 114, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2422, 41, 135, 135, 105, 89, 52, 60, 52, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2423, 65, 285, 285, 184, 106, 80, 106, 93, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2423, 65, 254, 254, 158, 138, 67, 138, 86, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2423, 65, 163, 163, 151, 151, 73, 171, 119, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2424, 43, 124, 124, 97, 119, 59, 119, 70, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2424, 44, 175, 175, 108, 95, 47, 95, 60, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2425, 57, 195, 195, 166, 114, 104, 106, 91, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2425, 58, 181, 181, 170, 112, 72, 136, 124, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2426, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2427, 49, 157, 157, 126, 86, 106, 86, 105, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2427, 50, 153, 153, 148, 98, 53, 98, 108, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2428, 28, 90, 90, 85, 57, 31, 57, 62, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2429, 46, 150, 150, 118, 99, 58, 67, 58, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2430, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2431, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2432, 52, 230, 230, 148, 86, 65, 86, 75, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2433, 49, 150, 150, 145, 96, 52, 96, 105, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2433, 50, 173, 173, 147, 101, 92, 94, 81, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2434, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2435, 65, 203, 203, 161, 128, 138, 125, 138, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2435, 65, 189, 189, 171, 262, 106, 106, 93, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2435, 65, 224, 224, 242, 106, 112, 93, 103, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2436, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2437, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2438, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2438, 39, 125, 125, 116, 77, 50, 93, 85, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2439, 40, 136, 136, 123, 83, 71, 87, 63, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2440, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2440, 27, 84, 84, 57, 41, 33, 33, 33, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2441, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2441, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2442, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2443, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2444, 35, 113, 113, 87, 66, 52, 59, 49, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2445, 46, 155, 155, 141, 95, 81, 99, 72, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2446, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2446, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2446, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2447, 16, 54, 54, 29, 20, 17, 20, 18, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2447, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2448, 28, 128, 128, 82, 48, 37, 48, 43, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2449, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2449, 56, 164, 164, 148, 103, 153, 103, 125, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2450, 46, 155, 155, 108, 108, 85, 104, 85, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2451, 23, 107, 107, 68, 40, 31, 40, 36, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2452, 24, 111, 111, 71, 42, 32, 42, 37, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2454, 46, 155, 155, 141, 95, 81, 99, 72, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2455, 60, 205, 205, 175, 120, 109, 111, 96, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2455, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2456, 13, 46, 46, 25, 17, 14, 17, 16, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2457, 55, 243, 243, 156, 90, 68, 90, 79, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2458, 100, 226, 226, 201, 111, 111, 131, 181, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2458, 100, 286, 286, 201, 141, 111, 111, 111, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2458, 100, 206, 206, 201, 221, 151, 131, 151, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2458, 100, 216, 216, 151, 121, 141, 141, 221, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2458, 100, 206, 206, 153, 111, 91, 111, 185, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2458, 100, 246, 246, 141, 231, 121, 141, 111, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2459, 100, 286, 286, 201, 141, 111, 111, 111, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2459, 100, 276, 276, 221, 121, 131, 201, 191, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2459, 100, 206, 206, 153, 111, 91, 111, 185, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2459, 100, 256, 256, 151, 141, 131, 171, 151, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2459, 100, 246, 246, 141, 231, 121, 141, 111, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2460, 100, 226, 226, 101, 141, 151, 151, 241, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2460, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2460, 100, 306, 306, 241, 181, 141, 161, 131, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2460, 100, 266, 266, 221, 151, 221, 201, 261, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2460, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2460, 100, 266, 266, 201, 261, 141, 201, 131, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2461, 100, 246, 246, 251, 199, 111, 261, 193, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2461, 100, 226, 226, 201, 111, 111, 131, 181, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2461, 100, 306, 306, 241, 181, 141, 161, 131, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2461, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2461, 100, 256, 256, 203, 161, 141, 181, 235, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2461, 100, 268, 268, 185, 155, 151, 151, 171, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2462, 100, 246, 246, 251, 199, 111, 261, 193, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2462, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2462, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2462, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2462, 100, 256, 256, 203, 161, 141, 181, 235, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2462, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2463, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2463, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2463, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2463, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2463, 100, 266, 266, 201, 261, 141, 201, 131, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2463, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2464, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2464, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2464, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2464, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2464, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2464, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2465, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2465, 100, 276, 276, 291, 241, 151, 181, 211, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2465, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2465, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2465, 100, 406, 406, 171, 161, 261, 231, 171, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2465, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2466, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2466, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2466, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2466, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2466, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2466, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2467, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2467, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2467, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2467, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2467, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2467, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2468, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2468, 50, 139, 139, 95, 80, 78, 78, 88, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2468, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2468, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2468, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2468, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2469, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2469, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2469, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2469, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2469, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2469, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2470, 100, 526, 526, 107, 157, 107, 157, 107, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2470, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2470, 100, 246, 246, 251, 199, 111, 261, 193, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2470, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2470, 100, 246, 246, 231, 231, 111, 261, 181, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2470, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2471, 100, 526, 526, 107, 157, 107, 157, 107, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2471, 100, 304, 304, 207, 241, 211, 251, 197, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2471, 100, 306, 306, 181, 171, 201, 281, 241, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2471, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2471, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2471, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2472, 26, 71, 71, 40, 35, 29, 29, 40, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2472, 26, 71, 71, 40, 35, 29, 29, 40, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2473, 24, 57, 57, 44, 61, 35, 25, 32, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2473, 24, 57, 57, 44, 61, 35, 25, 32, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2473, 25, 69, 69, 61, 104, 56, 36, 49, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2474, 24, 73, 73, 35, 40, 35, 47, 35, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2474, 24, 73, 73, 35, 40, 35, 47, 35, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2474, 25, 89, 89, 49, 54, 49, 61, 49, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2475, 55, 183, 183, 101, 112, 101, 129, 101, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2475, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2476, 25, 76, 76, 36, 41, 36, 49, 36, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2476, 25, 76, 76, 36, 41, 36, 49, 36, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2476, 26, 92, 92, 50, 55, 50, 63, 50, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2477, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2477, 25, 76, 76, 36, 41, 36, 49, 36, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2477, 26, 71, 71, 63, 107, 58, 37, 50, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2478, 27, 73, 73, 41, 36, 30, 30, 41, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2478, 27, 73, 73, 41, 36, 30, 30, 41, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2479, 55, 139, 139, 129, 222, 118, 74, 101, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2479, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2480, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2480, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2480, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2480, 50, 123, 123, 53, 38, 108, 88, 88, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2480, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2480, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2481, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2481, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2481, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2481, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2481, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2481, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2482, 51, 125, 125, 79, 69, 89, 69, 99, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2482, 51, 135, 135, 120, 79, 59, 99, 140, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2482, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2482, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2482, 51, 140, 140, 104, 74, 74, 74, 64, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2482, 52, 215, 215, 91, 86, 138, 122, 91, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2483, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2483, 52, 189, 189, 122, 106, 65, 106, 117, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2483, 53, 347, 347, 29, 29, 61, 135, 77, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2483, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2483, 52, 179, 179, 96, 99, 122, 117, 86, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2484, 52, 137, 137, 122, 80, 60, 101, 143, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2484, 52, 127, 127, 80, 70, 91, 70, 101, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2484, 52, 162, 162, 110, 127, 112, 132, 104, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2484, 51, 145, 145, 89, 84, 135, 120, 155, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2484, 51, 211, 211, 89, 84, 135, 120, 89, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2484, 51, 145, 145, 155, 84, 120, 135, 89, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2485, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2485, 52, 174, 174, 112, 127, 122, 153, 112, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2485, 53, 352, 352, 34, 34, 103, 167, 82, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2485, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2485, 52, 189, 189, 122, 106, 65, 106, 117, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2485, 53, 177, 177, 119, 114, 156, 119, 130, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2486, 31, 76, 76, 44, 40, 56, 40, 56, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2486, 31, 76, 76, 34, 47, 50, 50, 78, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2487, 40, 96, 96, 55, 51, 71, 51, 71, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2487, 40, 96, 96, 43, 59, 63, 63, 99, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2488, 57, 155, 155, 93, 93, 122, 122, 122, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2488, 57, 155, 155, 173, 116, 93, 93, 105, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2488, 57, 155, 155, 122, 93, 122, 93, 88, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2489, 52, 117, 117, 112, 70, 60, 60, 101, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2489, 51, 165, 165, 95, 67, 95, 67, 72, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2489, 53, 172, 172, 104, 91, 71, 82, 119, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2490, 42, 122, 122, 54, 84, 71, 93, 39, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2490, 41, 110, 110, 56, 60, 56, 73, 85, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2490, 42, 113, 113, 49, 62, 66, 112, 91, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2491, 51, 140, 140, 84, 84, 84, 84, 84, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2491, 54, 159, 159, 115, 100, 94, 100, 79, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2491, 54, 153, 153, 127, 132, 89, 78, 78, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2491, 51, 125, 125, 115, 43, 89, 43, 89, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2492, 26, 71, 71, 50, 66, 35, 35, 29, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2492, 26, 92, 92, 45, 45, 35, 35, 35, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2492, 25, 69, 69, 51, 56, 24, 29, 34, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2493, 32, 85, 85, 70, 42, 70, 42, 38, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2493, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2494, 40, 104, 104, 87, 51, 87, 51, 47, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2494, 39, 94, 94, 50, 46, 58, 97, 73, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2495, 51, 140, 140, 64, 74, 99, 110, 120, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2495, 52, 117, 117, 80, 65, 75, 75, 117, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2496, 45, 146, 146, 85, 59, 85, 59, 64, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2496, 43, 188, 188, 80, 59, 93, 63, 59, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2497, 34, 83, 83, 54, 71, 41, 58, 37, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2497, 35, 92, 92, 66, 87, 45, 45, 38, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2498, 45, 147, 147, 93, 102, 115, 106, 75, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2498, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2498, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2499, 45, 147, 147, 93, 102, 115, 106, 75, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2499, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2499, 48, 175, 175, 109, 82, 109, 92, 87, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2500, 38, 118, 118, 98, 75, 98, 75, 52, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2500, 39, 141, 141, 73, 73, 69, 69, 54, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2500, 39, 117, 117, 65, 67, 81, 83, 65, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2500, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2501, 54, 164, 164, 137, 105, 137, 105, 73, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2501, 51, 181, 181, 94, 94, 89, 89, 69, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2501, 55, 161, 161, 85, 85, 112, 90, 74, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2501, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2502, 54, 164, 164, 137, 105, 137, 105, 73, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2502, 51, 181, 181, 94, 94, 89, 89, 69, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2502, 55, 161, 161, 85, 85, 112, 90, 74, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2502, 52, 195, 195, 106, 117, 122, 117, 91, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2503, 32, 82, 82, 64, 54, 42, 35, 48, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2503, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2503, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2503, 34, 86, 86, 54, 47, 61, 47, 68, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2504, 55, 150, 150, 96, 101, 118, 107, 68, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2504, 57, 178, 178, 139, 105, 82, 93, 76, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2504, 56, 175, 175, 114, 81, 69, 81, 53, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2505, 61, 190, 190, 124, 124, 94, 94, 136, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2505, 61, 188, 188, 129, 122, 159, 130, 148, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2505, 62, 272, 272, 176, 101, 76, 101, 89, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2506, 56, 156, 156, 159, 120, 125, 86, 86, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2506, 54, 164, 164, 137, 105, 137, 105, 73, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2506, 56, 147, 147, 141, 142, 130, 109, 83, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2506, 55, 172, 172, 115, 110, 129, 112, 118, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2507, 52, 163, 163, 112, 122, 54, 54, 49, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2507, 53, 113, 113, 66, 82, 66, 82, 87, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2508, 56, 198, 198, 81, 114, 92, 114, 81, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2508, 56, 198, 198, 81, 81, 110, 132, 103, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2508, 56, 153, 153, 81, 137, 120, 103, 97, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2508, 57, 130, 130, 65, 65, 99, 88, 82, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2509, 52, 153, 153, 106, 75, 60, 60, 60, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2509, 53, 135, 135, 114, 66, 114, 66, 61, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2509, 52, 143, 143, 91, 96, 112, 101, 65, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2510, 60, 175, 175, 122, 86, 68, 68, 68, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2510, 61, 202, 202, 185, 118, 118, 118, 94, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2510, 60, 187, 187, 146, 110, 86, 98, 80, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2511, 51, 120, 120, 94, 155, 84, 155, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2511, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2511, 52, 148, 148, 106, 169, 65, 96, 96, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2511, 52, 158, 158, 106, 112, 138, 117, 75, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2512, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2512, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2512, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2512, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2512, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2512, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2513, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2513, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2513, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2513, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2513, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2513, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2514, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2514, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2514, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2514, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2514, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2514, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2515, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2515, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2515, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2515, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2515, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2515, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2516, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2516, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2516, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2516, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2516, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2516, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2517, 50, 178, 178, 123, 113, 173, 163, 113, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2517, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2517, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2517, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2517, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2517, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2518, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2518, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2518, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2518, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2518, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2518, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2519, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2519, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2519, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2519, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2519, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2519, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2520, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2520, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2520, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2520, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2520, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2520, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2521, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2521, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2521, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2521, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2521, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2521, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2522, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2522, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2522, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2522, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2522, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2522, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2523, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2523, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2523, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2523, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2523, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2523, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2524, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2524, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2524, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2524, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2524, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2524, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2525, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2525, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2525, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2525, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2525, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2525, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2526, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2526, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2526, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2526, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2526, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2526, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2527, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2527, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2527, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2527, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2527, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2527, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2528, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2528, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2528, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2528, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2528, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2528, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2529, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2529, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2529, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2529, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2529, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2529, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2530, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2530, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2530, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2530, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2530, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2530, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2531, 63, 158, 158, 147, 147, 71, 166, 115, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2531, 63, 190, 190, 115, 141, 115, 159, 128, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2531, 64, 193, 193, 130, 149, 143, 156, 92, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2531, 64, 167, 167, 79, 136, 130, 162, 79, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2532, 40, 136, 136, 115, 115, 67, 67, 59, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2532, 40, 136, 136, 67, 75, 79, 75, 55, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2532, 40, 144, 144, 77, 85, 77, 85, 63, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2532, 40, 120, 120, 95, 87, 63, 71, 75, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2533, 64, 263, 263, 117, 72, 117, 72, 104, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2533, 64, 225, 225, 92, 130, 104, 130, 92, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2533, 64, 186, 186, 117, 117, 117, 117, 117, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2533, 64, 314, 314, 143, 85, 143, 85, 104, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2534, 15, 42, 42, 22, 22, 31, 22, 16, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2534, 10, 33, 33, 15, 19, 13, 13, 11, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2535, 17, 56, 56, 38, 28, 23, 23, 23, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2535, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2536, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2536, 23, 59, 59, 31, 29, 36, 59, 45, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2537, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2537, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2538, 11, 35, 35, 23, 19, 18, 19, 17, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2538, 13, 39, 39, 21, 18, 14, 17, 14, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2538, 14, 38, 38, 15, 28, 21, 28, 15, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2539, 7, 24, 24, 12, 12, 12, 12, 12, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2539, 8, 33, 33, 20, 15, 14, 15, 11, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2539, 8, 27, 27, 15, 13, 12, 14, 16, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2540, 16, 42, 42, 21, 21, 21, 21, 21, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2540, 17, 60, 60, 38, 28, 24, 28, 19, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2540, 16, 44, 44, 25, 21, 20, 23, 28, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2541, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2541, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2541, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2542, 100, 358, 358, 261, 221, 349, 221, 301, 556); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2542, 100, 376, 376, 271, 211, 221, 191, 241, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2543, 28, 72, 72, 59, 51, 43, 34, 34, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2543, 28, 87, 87, 48, 49, 59, 61, 48, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2544, 42, 117, 117, 74, 78, 91, 83, 53, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2544, 42, 125, 125, 95, 78, 70, 70, 53, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2544, 42, 125, 125, 74, 74, 66, 66, 78, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2545, 44, 193, 193, 82, 60, 95, 64, 60, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2545, 44, 140, 140, 91, 91, 69, 69, 100, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2546, 6, 22, 22, 12, 11, 10, 11, 13, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2546, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2547, 67, 294, 294, 189, 109, 82, 109, 96, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2547, 67, 288, 288, 122, 89, 143, 96, 89, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2547, 67, 302, 302, 243, 163, 156, 116, 163, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2548, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2548, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2549, 40, 124, 124, 91, 59, 107, 83, 95, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2549, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2549, 40, 120, 120, 71, 71, 63, 63, 75, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2549, 40, 120, 120, 91, 75, 67, 67, 75, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2550, 100, 346, 346, 241, 241, 241, 241, 241, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2550, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2551, 64, 173, 173, 117, 162, 117, 181, 124, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2551, 64, 199, 199, 85, 111, 143, 168, 130, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2551, 64, 207, 207, 131, 152, 131, 165, 83, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2551, 63, 196, 196, 115, 109, 128, 178, 153, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2552, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2553, 30, 104, 104, 51, 57, 60, 57, 42, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2553, 30, 80, 80, 57, 45, 45, 45, 57, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2554, 67, 194, 194, 143, 116, 169, 143, 189, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2554, 67, 208, 208, 189, 122, 176, 122, 136, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2554, 67, 235, 235, 176, 149, 143, 149, 109, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2554, 67, 208, 208, 139, 163, 140, 163, 136, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2554, 67, 205, 205, 141, 133, 175, 143, 163, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2554, 67, 215, 215, 169, 163, 134, 140, 133, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2555, 40, 116, 116, 51, 75, 83, 131, 75, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2555, 40, 112, 112, 59, 59, 67, 75, 59, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2555, 40, 98, 98, 43, 63, 51, 71, 97, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2555, 40, 96, 96, 43, 45, 59, 61, 71, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2556, 53, 166, 166, 145, 108, 92, 82, 122, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2556, 53, 129, 129, 114, 98, 66, 66, 87, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2556, 53, 156, 156, 135, 135, 77, 66, 45, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2557, 53, 145, 145, 114, 97, 87, 97, 105, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2557, 53, 145, 145, 130, 118, 82, 97, 142, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2557, 53, 144, 144, 102, 77, 61, 77, 61, 557); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2558, 56, 153, 153, 120, 102, 92, 102, 111, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2558, 56, 161, 161, 89, 86, 111, 86, 152, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2558, 56, 164, 164, 128, 97, 114, 86, 134, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2559, 80, 246, 246, 177, 161, 241, 209, 209, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2559, 80, 291, 291, 241, 185, 161, 169, 197, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2559, 80, 254, 254, 129, 137, 249, 201, 193, 559); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2560, 80, 246, 246, 161, 177, 209, 241, 209, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2560, 80, 264, 264, 248, 185, 193, 193, 161, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2560, 80, 254, 254, 129, 137, 249, 201, 193, 559); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2561, 56, 175, 175, 153, 114, 97, 86, 129, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2561, 56, 201, 201, 92, 121, 92, 121, 81, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2561, 56, 158, 158, 120, 103, 109, 103, 69, 264); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2562, 59, 190, 190, 156, 132, 79, 132, 120, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2562, 59, 178, 178, 147, 120, 108, 120, 134, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2562, 59, 155, 155, 114, 97, 114, 97, 147, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2563, 59, 202, 202, 156, 138, 73, 138, 91, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2563, 59, 178, 178, 128, 100, 128, 100, 141, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2563, 59, 161, 161, 144, 131, 91, 107, 158, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2564, 62, 174, 174, 138, 169, 83, 169, 99, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2564, 62, 184, 184, 169, 101, 101, 101, 138, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2564, 62, 199, 199, 147, 109, 157, 109, 107, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2565, 62, 199, 199, 194, 188, 101, 126, 58, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2565, 62, 184, 184, 151, 101, 151, 101, 107, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2565, 62, 166, 166, 162, 166, 86, 86, 162, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2566, 65, 176, 176, 119, 164, 119, 184, 125, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2566, 65, 189, 189, 106, 190, 177, 119, 99, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2566, 65, 228, 228, 106, 119, 138, 164, 106, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2567, 65, 185, 185, 144, 179, 131, 179, 71, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2567, 65, 176, 176, 177, 164, 112, 119, 132, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2567, 65, 214, 214, 189, 132, 99, 132, 99, 279); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2568, 68, 218, 218, 97, 158, 192, 185, 138, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2568, 68, 211, 211, 199, 131, 83, 158, 145, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2568, 68, 234, 234, 253, 111, 117, 97, 108, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2569, 68, 218, 218, 138, 124, 213, 131, 151, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2569, 68, 184, 184, 206, 138, 111, 111, 124, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2569, 68, 204, 204, 199, 165, 124, 138, 90, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2570, 71, 241, 241, 115, 142, 172, 208, 145, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2570, 71, 262, 262, 215, 144, 129, 115, 144, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2570, 71, 205, 205, 186, 129, 193, 129, 158, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2571, 71, 241, 241, 208, 142, 115, 172, 145, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2571, 71, 205, 205, 200, 122, 94, 151, 208, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2571, 71, 170, 170, 172, 222, 122, 222, 94, 562); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2572, 74, 251, 251, 192, 187, 142, 157, 114, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2572, 74, 243, 243, 194, 150, 179, 150, 172, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2573, 74, 223, 223, 185, 136, 185, 136, 191, 550); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2573, 74, 221, 221, 238, 127, 197, 127, 194, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2574, 77, 256, 256, 194, 171, 225, 171, 183, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2574, 77, 253, 253, 163, 186, 179, 225, 163, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2574, 77, 291, 291, 209, 163, 171, 148, 186, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2575, 77, 261, 261, 240, 155, 202, 155, 186, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2575, 77, 253, 253, 186, 171, 225, 163, 171, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2575, 77, 253, 253, 163, 148, 209, 186, 209, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2576, 80, 278, 278, 153, 217, 177, 217, 169, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2576, 80, 264, 264, 177, 203, 241, 203, 157, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2576, 80, 246, 246, 177, 161, 241, 209, 209, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2577, 80, 262, 262, 177, 169, 233, 177, 193, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2577, 80, 310, 310, 145, 225, 153, 241, 169, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2577, 80, 246, 246, 161, 177, 209, 241, 209, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2578, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2578, 60, 173, 173, 176, 104, 104, 164, 122, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2579, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2579, 46, 205, 205, 131, 76, 58, 76, 67, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2580, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2581, 47, 182, 182, 73, 101, 122, 111, 49, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2581, 47, 135, 135, 120, 78, 78, 87, 111, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2582, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2582, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2583, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2583, 35, 113, 113, 87, 66, 52, 59, 49, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2584, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2584, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2585, 46, 123, 123, 67, 62, 145, 108, 131, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2585, 46, 155, 155, 141, 95, 81, 99, 72, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2586, 53, 140, 140, 77, 71, 167, 124, 151, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2586, 53, 177, 177, 161, 108, 92, 114, 82, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2587, 6, 22, 22, 11, 10, 9, 9, 13, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2587, 6, 23, 23, 10, 11, 9, 9, 12, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2588, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2588, 7, 25, 25, 11, 14, 11, 11, 12, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2588, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2589, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2590, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2590, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2590, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2591, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2591, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2591, 9, 30, 30, 13, 14, 11, 11, 16, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2591, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2592, 11, 34, 34, 15, 16, 13, 13, 18, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2592, 11, 35, 35, 13, 21, 14, 14, 15, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2593, 11, 33, 33, 16, 15, 13, 13, 19, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2593, 11, 34, 34, 14, 19, 14, 14, 16, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2594, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2594, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2594, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2595, 14, 41, 41, 18, 19, 15, 15, 22, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2595, 14, 40, 40, 19, 18, 15, 15, 24, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2596, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2596, 16, 46, 46, 20, 21, 17, 17, 25, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2596, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2597, 20, 61, 61, 30, 32, 48, 44, 40, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2598, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2598, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2599, 20, 55, 55, 24, 26, 20, 20, 30, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2599, 20, 53, 53, 26, 24, 20, 20, 32, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2599, 20, 61, 61, 34, 32, 28, 34, 30, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2600, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2600, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2601, 6, 24, 24, 9, 13, 10, 10, 10, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2601, 6, 23, 23, 10, 11, 9, 9, 12, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2601, 6, 24, 24, 9, 13, 10, 10, 10, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2602, 8, 28, 28, 12, 13, 11, 11, 15, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2602, 8, 28, 28, 11, 16, 11, 11, 12, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2603, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2604, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2604, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2604, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2605, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2605, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2605, 9, 30, 30, 13, 14, 11, 11, 16, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2605, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2606, 11, 34, 34, 15, 16, 13, 13, 18, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2606, 11, 35, 35, 13, 21, 14, 14, 15, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2607, 11, 33, 33, 16, 15, 13, 13, 19, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2607, 11, 34, 34, 14, 19, 14, 14, 16, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2608, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2608, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2608, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2609, 14, 41, 41, 18, 19, 15, 15, 22, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2609, 14, 40, 40, 19, 18, 15, 15, 24, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2610, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2610, 16, 46, 46, 20, 21, 17, 17, 25, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2610, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2611, 20, 61, 61, 30, 32, 48, 44, 40, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2612, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2612, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2613, 20, 55, 55, 24, 26, 20, 20, 30, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2613, 20, 53, 53, 26, 24, 20, 20, 32, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2613, 20, 61, 61, 34, 32, 28, 34, 30, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2614, 12, 35, 35, 17, 16, 14, 14, 21, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2614, 12, 37, 37, 16, 17, 14, 14, 20, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2615, 15, 48, 48, 26, 25, 22, 26, 23, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2616, 19, 58, 58, 32, 30, 27, 32, 28, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2617, 28, 87, 87, 51, 48, 65, 57, 65, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2618, 36, 109, 109, 64, 61, 82, 71, 82, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2619, 40, 120, 120, 71, 67, 91, 79, 91, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2620, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2620, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2620, 12, 41, 41, 30, 18, 20, 28, 27, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2621, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2621, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2622, 32, 98, 98, 74, 61, 54, 54, 42, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2623, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2623, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2623, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2624, 13, 36, 36, 27, 23, 21, 23, 16, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2625, 30, 92, 92, 69, 57, 51, 51, 39, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2625, 32, 95, 95, 96, 80, 51, 61, 70, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2626, 32, 95, 95, 74, 42, 45, 67, 64, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2626, 32, 91, 91, 45, 48, 74, 67, 61, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2627, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2627, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2627, 3, 16, 16, 8, 7, 7, 7, 9, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2627, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2628, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2628, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2628, 10, 32, 32, 13, 18, 13, 13, 15, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2628, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2629, 14, 45, 45, 22, 24, 35, 32, 29, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2629, 14, 45, 45, 22, 24, 35, 32, 29, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2629, 15, 49, 49, 37, 22, 23, 34, 32, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2629, 14, 45, 45, 22, 24, 35, 32, 29, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2630, 24, 71, 71, 35, 37, 56, 52, 47, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2630, 24, 71, 71, 35, 37, 56, 52, 47, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2630, 25, 76, 76, 59, 34, 36, 54, 51, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2630, 24, 71, 71, 35, 37, 56, 52, 47, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2631, 30, 86, 86, 42, 45, 69, 63, 57, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2631, 30, 86, 86, 42, 45, 69, 63, 57, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2631, 32, 95, 95, 74, 42, 45, 67, 64, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2631, 34, 97, 97, 47, 51, 78, 71, 64, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2632, 8, 27, 27, 11, 12, 14, 20, 16, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2632, 10, 30, 30, 22, 19, 17, 19, 13, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2633, 26, 61, 61, 37, 61, 29, 29, 35, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2633, 26, 61, 61, 37, 61, 29, 29, 35, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2634, 26, 79, 79, 52, 42, 38, 53, 58, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2634, 26, 79, 79, 38, 42, 52, 53, 58, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2635, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2636, 27, 79, 79, 63, 39, 41, 41, 101, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2637, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2637, 29, 84, 84, 67, 41, 44, 44, 108, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2638, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2638, 31, 89, 89, 47, 59, 47, 71, 56, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2638, 31, 89, 89, 71, 44, 47, 47, 115, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2639, 33, 81, 81, 36, 38, 49, 51, 59, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2639, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2639, 33, 94, 94, 49, 63, 49, 76, 59, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2639, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2640, 8, 28, 28, 15, 13, 11, 12, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2640, 8, 28, 28, 13, 16, 11, 11, 10, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2640, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2641, 26, 77, 77, 61, 37, 40, 40, 97, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2642, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2642, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2642, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2642, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2642, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2642, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2643, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2643, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2644, 27, 81, 81, 82, 68, 44, 52, 60, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2645, 28, 65, 65, 40, 65, 31, 31, 37, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2645, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2646, 25, 76, 76, 50, 41, 37, 51, 56, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2646, 25, 76, 76, 37, 41, 50, 51, 56, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2647, 6, 21, 21, 12, 17, 10, 10, 11, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2647, 6, 21, 21, 12, 17, 10, 10, 11, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2648, 27, 79, 79, 63, 39, 41, 41, 101, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2649, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2649, 29, 84, 84, 67, 41, 44, 44, 108, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2650, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2650, 31, 89, 89, 47, 59, 47, 71, 56, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2650, 31, 89, 89, 71, 44, 47, 47, 115, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2651, 33, 81, 81, 36, 38, 49, 51, 59, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2651, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2651, 33, 94, 94, 49, 63, 49, 76, 59, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2651, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2652, 8, 28, 28, 15, 13, 11, 12, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2652, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2653, 25, 74, 74, 59, 36, 39, 39, 94, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2654, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2654, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2654, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2654, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2655, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2655, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2656, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2656, 8, 28, 28, 12, 13, 11, 11, 15, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2657, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2657, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2658, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2658, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2659, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2659, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2659, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2659, 10, 32, 32, 13, 18, 13, 13, 15, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2660, 7, 26, 26, 10, 15, 11, 11, 11, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2660, 7, 26, 26, 10, 15, 11, 11, 11, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2660, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2661, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2661, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2661, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2662, 19, 54, 54, 19, 32, 21, 21, 23, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2662, 19, 51, 51, 25, 23, 19, 19, 30, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2662, 19, 54, 54, 19, 32, 21, 21, 23, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2663, 27, 79, 79, 39, 41, 63, 57, 52, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2663, 27, 71, 71, 28, 41, 28, 28, 33, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2663, 27, 79, 79, 39, 41, 63, 57, 52, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2664, 51, 140, 140, 69, 74, 115, 104, 94, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2664, 54, 153, 153, 121, 67, 73, 110, 105, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2664, 51, 140, 140, 69, 74, 115, 104, 94, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2665, 20, 55, 55, 24, 26, 20, 20, 30, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2665, 20, 53, 53, 26, 24, 20, 20, 32, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2665, 20, 61, 61, 34, 32, 28, 34, 30, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2666, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2666, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2666, 7, 25, 25, 11, 14, 11, 11, 12, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2667, 20, 61, 61, 30, 32, 48, 44, 40, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2668, 49, 155, 155, 145, 96, 61, 115, 105, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2669, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2669, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2669, 9, 30, 30, 13, 14, 11, 11, 16, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2669, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2670, 11, 34, 34, 15, 16, 13, 13, 18, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2670, 11, 35, 35, 13, 21, 14, 14, 15, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2671, 45, 129, 129, 79, 61, 88, 61, 106, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2671, 46, 132, 132, 81, 62, 90, 62, 108, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2671, 45, 129, 129, 102, 57, 61, 93, 88, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2671, 47, 135, 135, 106, 59, 64, 97, 92, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2672, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2672, 16, 46, 46, 20, 21, 17, 17, 25, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2672, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2673, 11, 33, 33, 16, 15, 13, 13, 19, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2673, 11, 34, 34, 14, 19, 14, 14, 16, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2674, 6, 22, 22, 11, 10, 9, 9, 13, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2674, 6, 23, 23, 10, 11, 9, 9, 12, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2675, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2675, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2675, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2676, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2677, 48, 132, 132, 75, 70, 60, 75, 65, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2677, 48, 142, 142, 84, 79, 108, 94, 108, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2678, 7, 24, 24, 11, 13, 11, 13, 11, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2678, 7, 25, 25, 13, 12, 10, 11, 10, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2679, 17, 45, 45, 19, 25, 19, 25, 19, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2679, 17, 50, 50, 23, 29, 19, 19, 16, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2680, 29, 94, 94, 64, 45, 47, 45, 53, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2680, 29, 78, 78, 35, 47, 29, 29, 24, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2681, 53, 163, 163, 114, 78, 82, 78, 92, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2681, 53, 145, 145, 98, 77, 130, 77, 92, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2682, 12, 35, 35, 16, 20, 16, 20, 17, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2682, 12, 44, 44, 29, 21, 22, 21, 24, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2683, 9, 30, 30, 16, 14, 11, 13, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2683, 11, 35, 35, 16, 21, 14, 14, 12, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2683, 13, 43, 43, 27, 22, 35, 22, 26, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2684, 9, 30, 30, 16, 14, 11, 13, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2684, 11, 35, 35, 16, 21, 14, 14, 12, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2684, 13, 43, 43, 22, 27, 22, 33, 26, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2685, 10, 32, 32, 17, 15, 12, 14, 12, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2685, 11, 33, 33, 14, 17, 14, 17, 14, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2686, 21, 63, 63, 33, 41, 33, 50, 39, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2686, 23, 76, 76, 52, 36, 38, 36, 43, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2687, 30, 86, 86, 45, 57, 45, 69, 54, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2687, 32, 102, 102, 70, 49, 51, 49, 58, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2687, 34, 103, 103, 92, 71, 54, 71, 88, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2688, 49, 135, 135, 71, 91, 71, 110, 86, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2688, 51, 157, 157, 110, 75, 79, 75, 89, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2688, 53, 156, 156, 161, 130, 82, 108, 92, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2689, 14, 40, 40, 18, 22, 18, 22, 20, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2689, 14, 40, 40, 18, 22, 18, 22, 20, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2690, 11, 34, 34, 18, 16, 13, 15, 13, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2690, 13, 40, 40, 18, 23, 16, 16, 13, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2690, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2691, 11, 34, 34, 18, 16, 13, 15, 13, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2691, 13, 40, 40, 18, 23, 16, 16, 13, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2691, 15, 48, 48, 25, 31, 25, 37, 29, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2692, 44, 122, 122, 60, 64, 100, 91, 82, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2692, 44, 127, 127, 100, 56, 60, 91, 86, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2692, 44, 100, 100, 69, 56, 64, 64, 100, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2693, 12, 37, 37, 16, 17, 14, 14, 20, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2693, 12, 35, 35, 17, 16, 14, 14, 21, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2694, 15, 48, 48, 26, 25, 22, 26, 23, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2695, 36, 102, 102, 57, 53, 46, 57, 50, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2696, 43, 128, 128, 76, 72, 97, 84, 97, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2697, 45, 99, 99, 61, 102, 48, 48, 57, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2697, 56, 164, 164, 97, 92, 125, 109, 125, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2698, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2698, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2698, 12, 41, 41, 30, 18, 20, 28, 27, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2699, 44, 127, 127, 100, 56, 60, 91, 86, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2699, 48, 132, 132, 65, 70, 108, 99, 89, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2700, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2701, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2701, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2702, 39, 109, 109, 54, 58, 89, 81, 73, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2702, 37, 112, 112, 84, 70, 62, 62, 47, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2703, 40, 112, 112, 55, 59, 91, 83, 75, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2703, 40, 120, 120, 91, 75, 67, 67, 51, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2704, 47, 130, 130, 64, 68, 106, 97, 87, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2704, 46, 136, 136, 104, 85, 76, 76, 58, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2705, 52, 143, 143, 70, 75, 117, 106, 96, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2705, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2706, 43, 102, 102, 45, 59, 45, 59, 51, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2706, 43, 124, 124, 97, 54, 59, 89, 84, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2706, 43, 120, 120, 59, 63, 97, 89, 80, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2707, 28, 70, 70, 34, 31, 26, 26, 43, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2707, 38, 95, 95, 37, 56, 37, 37, 45, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2707, 46, 132, 132, 104, 58, 62, 95, 90, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2708, 13, 36, 36, 27, 23, 21, 23, 16, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2709, 39, 117, 117, 89, 73, 65, 65, 50, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2709, 40, 116, 116, 119, 99, 63, 75, 87, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2710, 40, 116, 116, 91, 51, 55, 83, 79, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2710, 39, 109, 109, 54, 58, 89, 81, 73, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2711, 45, 129, 129, 102, 57, 61, 93, 88, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2711, 32, 91, 91, 45, 48, 74, 67, 61, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2712, 52, 148, 148, 117, 65, 70, 106, 101, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2712, 48, 132, 132, 65, 70, 108, 99, 89, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2713, 56, 158, 158, 125, 69, 75, 114, 109, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2713, 56, 153, 153, 75, 81, 125, 114, 103, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2714, 52, 132, 132, 44, 80, 49, 49, 54, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2714, 56, 142, 142, 47, 86, 53, 53, 58, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2714, 60, 151, 151, 50, 92, 56, 56, 62, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2715, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2715, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2715, 3, 16, 16, 8, 7, 7, 7, 9, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2715, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2716, 18, 52, 52, 18, 31, 20, 20, 22, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2716, 18, 52, 52, 18, 31, 20, 20, 22, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2716, 22, 59, 59, 23, 34, 23, 23, 28, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2716, 29, 84, 84, 41, 44, 67, 61, 56, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2717, 28, 81, 81, 40, 43, 65, 59, 54, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2717, 28, 81, 81, 40, 43, 65, 59, 54, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2717, 37, 108, 108, 84, 47, 51, 77, 73, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2717, 40, 112, 112, 55, 59, 91, 83, 75, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2718, 36, 102, 102, 50, 53, 82, 75, 68, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2718, 36, 102, 102, 50, 53, 82, 75, 68, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2718, 43, 124, 124, 97, 54, 59, 89, 84, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2718, 52, 143, 143, 70, 75, 117, 106, 96, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2719, 26, 79, 79, 52, 42, 38, 53, 58, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2719, 28, 84, 84, 41, 45, 55, 57, 62, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2720, 29, 84, 84, 56, 44, 73, 44, 53, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2721, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2722, 10, 31, 31, 14, 15, 18, 19, 21, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2722, 10, 29, 29, 17, 26, 14, 14, 16, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2723, 12, 35, 35, 16, 17, 21, 21, 24, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2723, 12, 33, 33, 20, 30, 16, 16, 18, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2724, 24, 61, 61, 28, 29, 37, 38, 44, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2724, 24, 71, 71, 56, 35, 37, 37, 90, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2725, 46, 136, 136, 76, 78, 95, 97, 76, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2725, 46, 136, 136, 104, 85, 76, 76, 58, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2725, 46, 128, 128, 104, 62, 67, 67, 168, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2725, 46, 123, 123, 53, 67, 72, 122, 99, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2726, 7, 25, 25, 13, 12, 10, 11, 10, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2726, 7, 26, 26, 12, 15, 11, 11, 9, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2726, 7, 23, 23, 13, 20, 11, 11, 13, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2727, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2728, 5, 21, 21, 11, 10, 8, 9, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2728, 5, 21, 21, 11, 10, 8, 9, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2728, 5, 21, 21, 11, 10, 8, 9, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2729, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2730, 16, 54, 54, 30, 32, 28, 28, 28, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2730, 15, 40, 40, 28, 23, 22, 26, 26, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2730, 15, 48, 48, 26, 25, 22, 26, 23, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2730, 15, 48, 48, 23, 25, 37, 34, 31, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2730, 15, 43, 43, 17, 25, 17, 17, 20, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2730, 15, 40, 40, 31, 26, 23, 26, 17, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2731, 16, 50, 50, 25, 26, 39, 36, 33, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2731, 16, 42, 42, 29, 24, 23, 28, 28, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2731, 16, 50, 50, 28, 26, 23, 28, 25, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2731, 16, 54, 54, 45, 36, 28, 36, 44, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2731, 16, 50, 50, 30, 30, 36, 36, 29, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2732, 25, 66, 66, 29, 31, 24, 24, 36, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2732, 25, 64, 64, 31, 29, 24, 24, 39, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2732, 25, 61, 61, 49, 41, 36, 41, 26, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2732, 25, 66, 66, 39, 41, 51, 46, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2732, 25, 69, 69, 51, 31, 49, 29, 34, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2732, 25, 74, 74, 34, 54, 44, 36, 34, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2733, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2733, 26, 68, 68, 29, 32, 24, 24, 37, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2733, 26, 63, 63, 45, 37, 35, 42, 42, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2733, 26, 68, 68, 40, 42, 53, 48, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2733, 26, 71, 71, 53, 32, 50, 29, 35, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2733, 26, 76, 76, 35, 55, 45, 37, 35, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2734, 50, 123, 123, 53, 58, 43, 43, 68, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2734, 50, 118, 118, 58, 53, 43, 43, 73, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2734, 50, 128, 128, 43, 78, 48, 48, 53, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2734, 50, 123, 123, 48, 73, 48, 48, 58, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2734, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2734, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2735, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2735, 50, 108, 108, 79, 58, 48, 58, 95, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2735, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2735, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2735, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2735, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2736, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2736, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2736, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2736, 50, 108, 108, 79, 58, 48, 58, 95, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2736, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2736, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2737, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2737, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2737, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2737, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2737, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2737, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2738, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2738, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2738, 50, 123, 123, 53, 58, 43, 43, 68, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2738, 50, 118, 118, 58, 53, 43, 43, 73, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2738, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2738, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2739, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2739, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2739, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2739, 50, 123, 123, 48, 73, 48, 48, 58, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2739, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2739, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2740, 51, 150, 150, 135, 104, 79, 104, 130, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2740, 52, 143, 143, 70, 75, 117, 106, 96, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2740, 52, 143, 143, 122, 106, 86, 106, 54, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2740, 52, 184, 184, 96, 96, 91, 91, 70, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2740, 52, 163, 163, 153, 101, 65, 122, 112, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2740, 51, 145, 145, 150, 125, 79, 94, 110, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2741, 51, 135, 135, 59, 74, 79, 135, 110, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2741, 53, 156, 156, 87, 156, 145, 98, 82, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2741, 51, 140, 140, 135, 94, 84, 84, 125, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2741, 53, 150, 150, 92, 71, 103, 71, 124, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2741, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2741, 51, 145, 145, 115, 64, 69, 104, 99, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2742, 28, 70, 70, 31, 33, 43, 44, 51, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2742, 28, 70, 70, 31, 33, 43, 44, 51, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2742, 28, 70, 70, 31, 33, 43, 44, 51, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2743, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2743, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2743, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2744, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2744, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2744, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2745, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2745, 36, 91, 91, 50, 43, 32, 39, 32, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2745, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2745, 36, 109, 109, 61, 62, 75, 77, 61, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2746, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2746, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2746, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2746, 38, 114, 114, 64, 65, 79, 81, 64, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2746, 38, 107, 107, 71, 56, 94, 56, 68, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2747, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2748, 15, 39, 39, 23, 37, 19, 19, 22, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2748, 15, 48, 48, 25, 31, 25, 37, 29, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2748, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2749, 25, 66, 66, 36, 31, 24, 29, 24, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2749, 25, 69, 69, 31, 41, 26, 26, 21, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2749, 25, 74, 74, 49, 39, 64, 39, 46, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2750, 25, 66, 66, 36, 31, 24, 29, 24, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2750, 25, 69, 69, 31, 41, 26, 26, 21, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2750, 25, 74, 74, 39, 49, 39, 59, 46, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2751, 17, 55, 55, 27, 29, 35, 36, 40, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2751, 17, 55, 55, 35, 29, 27, 36, 40, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2752, 26, 66, 66, 29, 31, 40, 41, 48, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2753, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2753, 29, 84, 84, 56, 44, 73, 44, 53, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2754, 16, 50, 50, 26, 33, 26, 39, 31, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2754, 16, 50, 50, 33, 26, 42, 26, 31, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2755, 24, 64, 64, 35, 30, 23, 28, 23, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2755, 24, 66, 66, 30, 40, 25, 25, 20, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2755, 24, 71, 71, 47, 37, 61, 37, 44, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2756, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2756, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2756, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2757, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2757, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2757, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2758, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2758, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2758, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2759, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2759, 36, 91, 91, 50, 43, 32, 39, 32, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2759, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2759, 36, 109, 109, 61, 62, 75, 77, 61, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2760, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2760, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2760, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2760, 38, 114, 114, 64, 65, 79, 81, 64, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2760, 38, 107, 107, 71, 56, 94, 56, 68, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2761, 27, 71, 71, 39, 33, 25, 30, 25, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2761, 27, 73, 73, 33, 44, 28, 28, 22, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2761, 27, 79, 79, 41, 52, 41, 63, 49, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2762, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2763, 39, 117, 117, 65, 67, 81, 83, 65, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2763, 39, 113, 113, 116, 97, 61, 73, 85, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2764, 43, 128, 128, 72, 73, 89, 91, 72, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2764, 43, 124, 124, 127, 106, 67, 80, 93, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2765, 47, 139, 139, 78, 80, 97, 99, 78, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2765, 47, 146, 146, 101, 69, 73, 69, 83, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2765, 47, 135, 135, 139, 115, 73, 87, 101, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2765, 47, 139, 139, 97, 117, 97, 117, 59, 574); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2766, 28, 87, 87, 48, 49, 59, 61, 48, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2766, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2767, 15, 39, 39, 23, 37, 19, 19, 22, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2767, 15, 48, 48, 25, 31, 25, 37, 29, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2767, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2768, 30, 86, 86, 57, 45, 75, 45, 54, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2769, 30, 86, 86, 45, 57, 45, 69, 54, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2770, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2770, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2770, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2770, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2770, 50, 128, 128, 58, 78, 48, 48, 38, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2772, 34, 82, 82, 52, 46, 58, 51, 61, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2772, 34, 95, 95, 60, 56, 71, 61, 71, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2773, 38, 117, 117, 76, 75, 80, 94, 94, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2774, 34, 93, 93, 64, 47, 64, 51, 58, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2774, 34, 90, 90, 75, 54, 61, 61, 78, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2775, 36, 98, 98, 68, 50, 68, 53, 61, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2775, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2775, 36, 111, 111, 72, 71, 76, 89, 89, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2776, 41, 106, 106, 89, 64, 73, 73, 93, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2777, 37, 88, 88, 48, 47, 55, 66, 66, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2777, 37, 101, 101, 70, 51, 70, 55, 62, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2778, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2778, 28, 84, 84, 68, 47, 71, 62, 67, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2778, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2778, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2779, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2779, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2779, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2780, 26, 73, 73, 50, 37, 50, 40, 45, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2780, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2781, 34, 82, 82, 52, 46, 58, 51, 61, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2781, 34, 95, 95, 60, 56, 71, 61, 71, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2782, 37, 88, 88, 48, 47, 55, 66, 66, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2782, 37, 101, 101, 70, 51, 70, 55, 62, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2783, 100, 226, 226, 131, 111, 121, 121, 221, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2783, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2784, 34, 93, 93, 64, 47, 64, 51, 58, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2784, 34, 90, 90, 75, 54, 61, 61, 78, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2785, 36, 98, 98, 68, 50, 68, 53, 61, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2785, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2785, 36, 111, 111, 72, 71, 76, 89, 89, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2786, 41, 106, 106, 89, 64, 73, 73, 93, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2787, 38, 117, 117, 76, 75, 80, 94, 94, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2788, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2788, 36, 105, 105, 86, 59, 89, 79, 84, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2788, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2788, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2789, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2789, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2789, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2790, 26, 73, 73, 50, 37, 50, 40, 45, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2790, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2791, 16, 55, 55, 35, 34, 36, 42, 42, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2791, 16, 49, 49, 33, 25, 33, 26, 29, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2791, 15, 45, 45, 32, 35, 16, 19, 22, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2791, 17, 53, 53, 27, 26, 25, 41, 25, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2791, 16, 50, 50, 31, 29, 36, 31, 36, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2791, 15, 41, 41, 22, 22, 25, 29, 29, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2792, 18, 60, 60, 38, 38, 40, 47, 47, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2792, 17, 45, 45, 26, 65, 21, 26, 34, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2792, 15, 54, 54, 31, 29, 34, 46, 40, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2792, 15, 48, 48, 24, 23, 23, 37, 23, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2792, 18, 47, 47, 40, 29, 29, 36, 54, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2792, 17, 60, 60, 45, 37, 40, 36, 40, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2793, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2793, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2793, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2793, 50, 133, 133, 93, 68, 93, 73, 83, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2793, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2793, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2794, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2794, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2794, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2794, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2794, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2794, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2795, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2795, 53, 143, 143, 91, 85, 108, 92, 108, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2795, 52, 127, 127, 86, 54, 106, 75, 91, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2795, 53, 150, 150, 112, 84, 124, 114, 135, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2795, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2795, 52, 148, 148, 101, 132, 60, 91, 112, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2796, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2796, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2796, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2796, 55, 165, 165, 108, 107, 113, 134, 134, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2796, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2796, 55, 167, 167, 118, 244, 85, 96, 57, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2797, 51, 158, 158, 109, 102, 134, 110, 125, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2797, 51, 155, 155, 115, 74, 135, 104, 120, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2797, 52, 132, 132, 75, 148, 106, 106, 54, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2797, 52, 117, 117, 106, 75, 75, 96, 148, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2797, 52, 156, 156, 122, 88, 112, 91, 112, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2797, 52, 148, 148, 101, 132, 60, 91, 112, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2798, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2798, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2798, 53, 145, 145, 114, 68, 114, 68, 120, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2798, 51, 145, 145, 150, 125, 79, 94, 110, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2798, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2798, 53, 177, 177, 130, 119, 156, 114, 119, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2799, 62, 218, 218, 179, 120, 98, 120, 126, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2800, 21, 63, 63, 48, 33, 37, 33, 37, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2800, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2801, 17, 53, 53, 26, 34, 26, 41, 43, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2802, 26, 58, 58, 32, 50, 63, 42, 37, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2803, 6, 26, 26, 16, 13, 11, 11, 11, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2804, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2805, 30, 65, 65, 36, 57, 72, 48, 42, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2805, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2806, 43, 89, 89, 50, 80, 102, 67, 59, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2806, 42, 109, 109, 70, 99, 120, 78, 78, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2806, 45, 143, 143, 111, 84, 66, 75, 61, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2807, 48, 123, 123, 79, 113, 137, 89, 89, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2807, 48, 123, 123, 79, 113, 137, 89, 89, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2807, 51, 171, 171, 155, 104, 89, 110, 79, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2808, 54, 137, 137, 89, 127, 154, 100, 100, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2808, 54, 137, 137, 89, 127, 154, 100, 100, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2808, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2809, 11, 27, 27, 21, 14, 16, 18, 29, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2809, 11, 35, 35, 25, 27, 13, 15, 17, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2810, 18, 48, 48, 40, 24, 24, 27, 36, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2811, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2811, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2812, 20, 54, 54, 31, 38, 32, 37, 29, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2813, 16, 44, 44, 29, 20, 20, 20, 33, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2813, 16, 49, 49, 36, 29, 26, 33, 41, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2814, 21, 61, 61, 41, 31, 41, 33, 37, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2814, 21, 54, 54, 34, 30, 37, 33, 39, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2815, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2815, 19, 39, 39, 32, 21, 25, 28, 47, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2815, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2815, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2816, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2817, 9, 24, 24, 18, 12, 14, 16, 25, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2817, 9, 31, 31, 21, 23, 11, 13, 15, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2818, 18, 48, 48, 40, 24, 24, 27, 36, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2819, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2819, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2820, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2820, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2821, 16, 52, 52, 39, 26, 37, 25, 28, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2822, 16, 44, 44, 29, 20, 20, 20, 33, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2822, 16, 49, 49, 36, 29, 26, 33, 41, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2823, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2823, 19, 39, 39, 32, 21, 25, 28, 47, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2823, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2823, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2824, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2825, 36, 117, 117, 91, 73, 79, 71, 79, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2826, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2826, 31, 98, 98, 78, 84, 44, 50, 56, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2827, 13, 40, 40, 29, 31, 14, 17, 20, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2827, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2828, 10, 25, 25, 19, 13, 15, 17, 27, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2828, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2828, 14, 31, 31, 25, 17, 19, 22, 36, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2829, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2830, 34, 111, 111, 86, 69, 75, 68, 75, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2831, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2831, 30, 89, 89, 78, 51, 51, 57, 72, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2831, 30, 95, 95, 75, 72, 39, 57, 81, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2833, 32, 75, 75, 67, 48, 48, 61, 93, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2833, 29, 101, 101, 70, 70, 56, 67, 56, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2833, 29, 87, 87, 76, 50, 50, 56, 70, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2834, 17, 50, 50, 36, 40, 17, 21, 24, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2834, 17, 58, 58, 45, 48, 26, 29, 33, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2834, 19, 51, 51, 28, 25, 23, 27, 32, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2835, 17, 46, 46, 38, 23, 23, 26, 34, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2836, 14, 43, 43, 24, 23, 28, 24, 25, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2837, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2837, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2837, 23, 64, 64, 37, 35, 43, 36, 38, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2838, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2838, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2838, 26, 71, 71, 41, 39, 48, 40, 42, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2839, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2839, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2839, 30, 74, 74, 39, 39, 57, 39, 27, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2839, 32, 85, 85, 49, 47, 58, 48, 51, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2840, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2840, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2840, 36, 94, 94, 53, 104, 75, 75, 39, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2840, 34, 110, 110, 73, 70, 81, 71, 75, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2841, 22, 57, 57, 30, 37, 30, 43, 37, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2841, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2841, 22, 57, 57, 30, 37, 30, 43, 37, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2842, 24, 66, 66, 49, 54, 23, 28, 32, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2843, 21, 54, 54, 25, 29, 25, 29, 37, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2843, 21, 55, 55, 35, 25, 25, 25, 48, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2844, 26, 65, 65, 29, 35, 29, 35, 45, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2844, 26, 66, 66, 42, 29, 29, 29, 58, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2845, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2845, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2846, 31, 83, 83, 62, 68, 28, 34, 40, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2846, 31, 100, 100, 59, 53, 47, 53, 78, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2846, 31, 89, 89, 68, 53, 47, 47, 93, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2847, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2847, 34, 107, 107, 85, 92, 47, 54, 61, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2847, 34, 109, 109, 64, 58, 51, 58, 85, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2848, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2849, 18, 48, 48, 22, 26, 22, 26, 33, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2849, 18, 59, 59, 36, 25, 33, 25, 33, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2850, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2850, 19, 62, 62, 38, 27, 34, 27, 34, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2851, 29, 72, 72, 47, 32, 32, 32, 64, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2851, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2852, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2853, 21, 55, 55, 29, 35, 29, 41, 35, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2853, 21, 59, 59, 44, 48, 20, 25, 29, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2853, 21, 55, 55, 29, 35, 29, 41, 35, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2854, 22, 57, 57, 37, 26, 26, 26, 50, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2854, 22, 70, 70, 43, 30, 39, 30, 39, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2855, 23, 64, 64, 47, 52, 22, 27, 31, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2856, 20, 52, 52, 24, 28, 24, 28, 36, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2856, 20, 53, 53, 34, 24, 24, 24, 46, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2857, 26, 65, 65, 29, 35, 29, 35, 45, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2857, 26, 66, 66, 42, 29, 29, 29, 58, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2858, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2858, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2859, 31, 83, 83, 62, 68, 28, 34, 40, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2859, 31, 89, 89, 68, 53, 47, 47, 93, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2859, 31, 100, 100, 59, 53, 47, 53, 78, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2860, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2860, 34, 107, 107, 85, 92, 47, 54, 61, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2860, 34, 109, 109, 64, 58, 51, 58, 85, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2861, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2861, 29, 87, 87, 58, 56, 70, 56, 70, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2862, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2863, 18, 59, 59, 36, 25, 33, 25, 33, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2864, 18, 48, 48, 25, 31, 25, 36, 31, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2864, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2865, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2865, 18, 59, 59, 36, 25, 33, 25, 33, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2866, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2867, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2868, 36, 102, 102, 69, 59, 57, 57, 64, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2868, 36, 98, 98, 76, 61, 53, 68, 87, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2868, 36, 112, 112, 89, 97, 50, 57, 64, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2869, 21, 61, 61, 41, 31, 41, 33, 37, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2869, 21, 54, 54, 34, 30, 37, 33, 39, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2870, 24, 69, 69, 47, 35, 47, 37, 42, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2870, 24, 61, 61, 38, 34, 42, 37, 44, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2871, 29, 81, 81, 56, 41, 56, 44, 50, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2871, 29, 83, 83, 52, 49, 61, 53, 61, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2872, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2872, 54, 146, 146, 93, 87, 110, 94, 110, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2873, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2873, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2873, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2873, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2874, 18, 48, 48, 40, 24, 24, 27, 36, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2875, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2875, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2876, 16, 44, 44, 29, 20, 20, 20, 33, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2876, 16, 49, 49, 36, 29, 26, 33, 41, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2877, 21, 55, 55, 37, 25, 25, 25, 41, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2877, 21, 61, 61, 46, 37, 33, 41, 53, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2878, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2878, 29, 81, 81, 62, 50, 44, 56, 71, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2879, 54, 153, 153, 121, 94, 90, 90, 132, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2879, 54, 142, 142, 111, 89, 78, 100, 129, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2880, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2880, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2881, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2882, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2883, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2883, 11, 35, 35, 25, 27, 13, 15, 17, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2884, 20, 54, 54, 31, 38, 32, 37, 29, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2885, 22, 59, 59, 34, 41, 34, 41, 31, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2886, 30, 86, 86, 53, 63, 54, 63, 50, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2887, 55, 149, 149, 94, 112, 96, 112, 88, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2888, 49, 140, 140, 145, 120, 76, 91, 105, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2888, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2889, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2889, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2890, 19, 54, 54, 44, 32, 36, 36, 46, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2891, 7, 25, 25, 16, 12, 13, 12, 13, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2892, 13, 40, 40, 18, 23, 16, 16, 13, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2892, 17, 53, 53, 28, 34, 28, 41, 33, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2893, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2893, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2893, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2894, 14, 43, 43, 33, 25, 28, 28, 35, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2895, 31, 89, 89, 68, 46, 53, 46, 53, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2895, 31, 91, 91, 55, 45, 41, 41, 62, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2896, 15, 46, 46, 29, 20, 28, 19, 35, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2896, 15, 43, 43, 29, 20, 22, 20, 23, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2897, 14, 40, 40, 32, 38, 18, 18, 15, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2898, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2899, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2900, 55, 145, 145, 129, 151, 74, 74, 63, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2901, 22, 59, 59, 38, 32, 38, 32, 39, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2902, 7, 25, 25, 15, 11, 11, 11, 15, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2902, 7, 25, 25, 16, 12, 13, 12, 13, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2903, 22, 64, 64, 43, 37, 30, 37, 50, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2904, 14, 43, 43, 33, 25, 28, 28, 35, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2905, 34, 93, 93, 64, 54, 44, 54, 75, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2905, 36, 120, 120, 93, 57, 79, 53, 100, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2906, 20, 59, 59, 38, 26, 36, 24, 46, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2906, 20, 55, 55, 38, 25, 28, 25, 30, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2907, 14, 44, 44, 29, 25, 21, 25, 33, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2908, 24, 69, 69, 47, 40, 32, 40, 54, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2909, 35, 110, 110, 87, 63, 59, 63, 98, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2910, 52, 158, 158, 127, 92, 86, 92, 143, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2910, 52, 162, 162, 112, 86, 80, 86, 97, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2911, 48, 153, 153, 120, 96, 103, 94, 103, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2912, 40, 108, 108, 71, 47, 67, 43, 87, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2913, 44, 140, 140, 93, 89, 104, 91, 95, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2913, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2914, 13, 40, 40, 29, 31, 14, 17, 20, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2914, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2915, 21, 61, 61, 31, 33, 31, 39, 46, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2915, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2916, 10, 25, 25, 19, 13, 15, 17, 27, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2916, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2916, 14, 31, 31, 25, 17, 19, 22, 36, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2917, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2918, 46, 147, 147, 115, 92, 99, 90, 99, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2919, 45, 141, 141, 84, 76, 66, 76, 111, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2921, 43, 98, 98, 89, 63, 63, 80, 123, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2921, 40, 136, 136, 95, 95, 75, 91, 75, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2921, 40, 116, 116, 103, 67, 67, 75, 95, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2922, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2922, 18, 61, 61, 47, 51, 27, 31, 34, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2922, 20, 53, 53, 30, 26, 24, 28, 34, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2923, 38, 114, 114, 94, 106, 41, 68, 41, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2924, 41, 123, 123, 101, 114, 44, 73, 44, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2924, 41, 127, 127, 50, 50, 65, 65, 74, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2925, 48, 142, 142, 118, 132, 51, 84, 51, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2925, 47, 191, 191, 76, 76, 93, 93, 84, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2925, 44, 118, 118, 60, 64, 60, 78, 91, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2926, 52, 153, 153, 127, 143, 54, 91, 54, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2926, 52, 158, 158, 80, 96, 80, 122, 138, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2926, 52, 210, 210, 84, 84, 102, 102, 93, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2927, 17, 46, 46, 38, 23, 23, 26, 34, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2928, 14, 43, 43, 24, 23, 28, 24, 25, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2929, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2929, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2929, 32, 85, 85, 49, 47, 58, 48, 51, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2930, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2930, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2930, 36, 116, 116, 77, 74, 86, 75, 79, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2930, 32, 79, 79, 42, 42, 61, 42, 29, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2931, 36, 98, 98, 86, 100, 50, 50, 43, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2931, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2931, 54, 137, 137, 78, 154, 110, 110, 56, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2931, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2932, 43, 120, 120, 72, 72, 50, 50, 46, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2933, 26, 84, 84, 66, 71, 37, 42, 48, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2934, 26, 73, 73, 63, 74, 37, 37, 32, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2935, 24, 76, 76, 34, 39, 34, 39, 32, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2936, 28, 104, 104, 55, 61, 55, 61, 45, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2937, 31, 114, 114, 61, 67, 61, 67, 50, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2937, 31, 98, 98, 65, 59, 56, 62, 71, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2938, 38, 137, 137, 74, 81, 74, 81, 60, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2938, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2939, 47, 167, 167, 90, 99, 90, 99, 73, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2939, 47, 170, 170, 109, 84, 88, 79, 100, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2939, 47, 153, 153, 106, 97, 87, 97, 144, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2940, 16, 44, 44, 28, 20, 20, 20, 37, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2940, 18, 48, 48, 27, 24, 22, 25, 31, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2941, 20, 61, 61, 28, 32, 42, 46, 50, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2941, 20, 63, 63, 41, 34, 31, 42, 46, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2942, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2942, 30, 86, 86, 45, 75, 66, 57, 54, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2943, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2944, 26, 50, 50, 42, 27, 32, 37, 63, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2944, 26, 58, 58, 32, 50, 63, 42, 37, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2944, 27, 68, 68, 39, 33, 30, 36, 44, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2944, 27, 67, 67, 42, 37, 47, 41, 49, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2944, 27, 70, 70, 40, 49, 41, 49, 37, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2945, 25, 79, 79, 36, 38, 44, 46, 31, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2945, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2945, 25, 56, 56, 24, 21, 66, 41, 59, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2945, 30, 80, 80, 45, 72, 39, 45, 36, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2945, 25, 71, 71, 49, 36, 49, 39, 44, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2945, 30, 74, 74, 47, 41, 51, 45, 54, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2946, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2946, 50, 118, 118, 68, 63, 58, 58, 79, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2946, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2946, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2946, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2947, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2947, 50, 161, 161, 103, 98, 93, 93, 124, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2947, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2947, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2947, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2948, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2948, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2948, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2948, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2948, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2948, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2949, 5, 21, 21, 11, 13, 11, 13, 11, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2949, 5, 21, 21, 13, 13, 11, 11, 11, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2949, 5, 20, 20, 12, 11, 12, 11, 13, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2949, 5, 17, 17, 12, 9, 10, 11, 16, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2949, 5, 24, 24, 10, 10, 12, 12, 13, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2949, 5, 21, 21, 14, 10, 13, 9, 10, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2950, 5, 20, 20, 10, 10, 10, 12, 11, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2950, 5, 22, 22, 11, 11, 9, 9, 8, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2950, 5, 17, 17, 12, 9, 10, 11, 16, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2950, 5, 22, 22, 14, 11, 11, 11, 10, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2950, 5, 20, 20, 11, 10, 10, 10, 15, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2950, 5, 21, 21, 12, 11, 13, 11, 12, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2951, 43, 180, 180, 80, 50, 80, 50, 72, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2951, 43, 120, 120, 73, 89, 74, 89, 72, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2951, 43, 120, 120, 72, 72, 93, 93, 93, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2952, 62, 224, 224, 188, 176, 83, 83, 76, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2952, 61, 178, 178, 142, 130, 94, 106, 112, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2952, 61, 166, 166, 161, 112, 100, 100, 148, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2953, 9, 29, 29, 22, 19, 17, 14, 14, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2953, 10, 32, 32, 16, 20, 16, 23, 18, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2954, 40, 104, 104, 87, 87, 63, 63, 59, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2954, 40, 128, 128, 83, 83, 63, 63, 91, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2954, 40, 144, 144, 91, 123, 55, 71, 63, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2954, 40, 128, 128, 87, 95, 43, 43, 39, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2955, 11, 33, 33, 22, 17, 17, 17, 15, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2955, 12, 35, 35, 22, 16, 16, 16, 29, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2956, 30, 80, 80, 66, 48, 54, 54, 69, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2956, 30, 83, 83, 64, 51, 45, 57, 74, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2957, 5, 21, 21, 11, 13, 11, 13, 11, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2957, 5, 20, 20, 14, 16, 9, 9, 8, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2958, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2958, 27, 84, 84, 44, 44, 57, 47, 39, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2958, 27, 95, 95, 47, 47, 36, 36, 36, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2959, 63, 139, 139, 108, 134, 120, 96, 68, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2959, 63, 196, 196, 134, 147, 65, 65, 59, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2959, 63, 190, 190, 141, 204, 103, 103, 78, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2959, 63, 171, 171, 90, 153, 134, 115, 109, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2960, 40, 108, 108, 47, 59, 63, 107, 87, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2960, 40, 104, 104, 87, 87, 63, 63, 59, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2960, 40, 113, 113, 91, 55, 59, 59, 147, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2960, 40, 128, 128, 119, 79, 51, 95, 87, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2960, 40, 116, 116, 119, 99, 63, 75, 87, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2961, 6, 22, 22, 13, 10, 10, 10, 17, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2961, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2962, 58, 132, 132, 66, 66, 101, 89, 83, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2962, 59, 172, 172, 120, 102, 132, 102, 126, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2962, 60, 139, 139, 68, 62, 170, 110, 152, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2962, 61, 178, 178, 94, 106, 142, 130, 112, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2963, 64, 237, 237, 127, 121, 125, 118, 104, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2963, 64, 98, 98, 143, 85, 66, 66, 79, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2963, 64, 257, 257, 102, 102, 125, 125, 113, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2963, 65, 221, 221, 138, 138, 112, 112, 73, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2964, 30, 92, 92, 53, 56, 48, 48, 49, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2964, 30, 83, 83, 57, 48, 39, 48, 66, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2965, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2965, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2965, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2965, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2965, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2965, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2966, 28, 64, 64, 40, 90, 40, 65, 31, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2966, 27, 84, 84, 63, 52, 47, 47, 52, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2967, 5, 19, 19, 10, 13, 16, 12, 11, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2967, 5, 23, 23, 11, 9, 11, 9, 9, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2968, 30, 77, 77, 47, 57, 39, 51, 41, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2969, 30, 77, 77, 47, 57, 39, 51, 41, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2970, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2971, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2972, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2973, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2973, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2974, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2975, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2976, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2977, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2978, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2979, 22, 59, 59, 34, 32, 63, 37, 54, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2980, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2980, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2980, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2981, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2982, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2983, 38, 95, 95, 56, 52, 106, 60, 90, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2984, 34, 76, 76, 41, 37, 85, 41, 71, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2984, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2985, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2985, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2985, 33, 84, 84, 49, 46, 92, 53, 79, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2986, 34, 76, 76, 41, 37, 85, 41, 71, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2986, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2987, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2987, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2987, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2988, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2989, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2990, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2991, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2992, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2993, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2994, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2995, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2995, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2996, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2997, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2998, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (2999, 38, 95, 95, 56, 52, 106, 60, 90, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3000, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3001, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3001, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3001, 33, 84, 84, 49, 46, 92, 53, 79, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3002, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3002, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3002, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3002, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3002, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3002, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3003, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3003, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3003, 52, 122, 122, 70, 60, 54, 65, 80, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3003, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3003, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3003, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3004, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3004, 51, 109, 109, 59, 53, 125, 59, 104, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3004, 51, 160, 160, 117, 89, 89, 104, 92, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3004, 51, 155, 155, 104, 94, 89, 99, 115, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3004, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3004, 51, 104, 104, 59, 94, 120, 79, 69, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3005, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3005, 51, 145, 145, 120, 81, 125, 110, 118, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3005, 51, 120, 120, 69, 59, 53, 64, 79, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3005, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3005, 51, 130, 130, 84, 120, 145, 94, 94, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3005, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3006, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3006, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3006, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3006, 51, 145, 145, 120, 81, 125, 110, 118, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3006, 54, 164, 164, 110, 100, 94, 105, 121, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3006, 54, 137, 137, 127, 218, 116, 73, 100, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3007, 51, 140, 140, 89, 84, 155, 99, 135, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3007, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3007, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3007, 52, 156, 156, 102, 101, 107, 127, 127, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3007, 51, 130, 130, 84, 120, 145, 94, 94, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3007, 52, 163, 163, 132, 91, 86, 101, 158, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3008, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3008, 52, 127, 127, 75, 70, 143, 80, 122, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3008, 54, 137, 137, 127, 218, 116, 73, 100, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3008, 51, 153, 153, 100, 99, 105, 125, 125, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3008, 53, 166, 166, 135, 92, 87, 103, 161, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3008, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3009, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3009, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3009, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3009, 53, 150, 150, 124, 84, 130, 114, 122, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3009, 52, 156, 156, 102, 101, 107, 127, 127, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3009, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3010, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3010, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3010, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3010, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3010, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3010, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3011, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3011, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3011, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3011, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3011, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3011, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3012, 56, 153, 153, 103, 81, 137, 81, 97, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3012, 56, 147, 147, 131, 86, 64, 109, 153, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3012, 56, 164, 164, 86, 86, 114, 92, 75, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3012, 57, 161, 161, 79, 88, 108, 111, 122, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3013, 25, 61, 61, 37, 31, 31, 36, 24, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3013, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3013, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3014, 35, 117, 117, 70, 62, 49, 56, 80, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3014, 32, 79, 79, 51, 35, 35, 35, 70, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3014, 21, 63, 63, 37, 37, 27, 27, 25, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3015, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3015, 51, 140, 140, 110, 84, 74, 74, 150, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3015, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3016, 58, 170, 170, 130, 107, 95, 95, 72, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3016, 56, 167, 167, 110, 109, 115, 137, 137, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3016, 57, 173, 173, 128, 185, 93, 93, 71, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3016, 57, 190, 190, 111, 111, 128, 139, 105, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3017, 60, 175, 175, 110, 74, 98, 74, 98, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3017, 61, 184, 184, 94, 112, 94, 142, 161, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3017, 60, 169, 169, 114, 92, 83, 116, 128, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3017, 60, 163, 163, 110, 86, 146, 86, 104, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3018, 27, 84, 84, 37, 43, 37, 43, 36, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3018, 27, 68, 68, 39, 33, 30, 36, 44, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3019, 36, 109, 109, 48, 56, 48, 56, 46, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3019, 36, 112, 112, 75, 68, 64, 71, 82, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3020, 54, 191, 191, 103, 114, 103, 114, 83, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3020, 54, 164, 164, 110, 100, 94, 105, 121, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3021, 36, 73, 73, 25, 57, 28, 32, 75, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3021, 36, 73, 73, 28, 32, 25, 57, 75, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3021, 40, 200, 200, 91, 55, 91, 55, 67, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3022, 42, 176, 176, 78, 49, 78, 49, 70, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3022, 42, 176, 176, 78, 49, 78, 49, 70, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3022, 45, 224, 224, 102, 61, 102, 61, 75, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3023, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3023, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3024, 56, 276, 276, 125, 75, 125, 75, 92, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3024, 56, 276, 276, 125, 75, 125, 75, 92, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3025, 31, 107, 107, 53, 53, 40, 40, 40, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3025, 32, 82, 82, 80, 45, 45, 45, 22, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3026, 38, 130, 130, 64, 64, 49, 49, 49, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3026, 38, 99, 99, 71, 56, 56, 56, 71, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3027, 52, 132, 132, 86, 70, 127, 106, 91, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3027, 52, 149, 149, 66, 103, 87, 114, 47, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3027, 51, 140, 140, 84, 84, 84, 84, 84, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3028, 37, 88, 88, 44, 44, 66, 59, 55, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3028, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3028, 38, 99, 99, 64, 52, 94, 79, 68, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3028, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3029, 54, 169, 169, 113, 108, 127, 110, 116, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3029, 53, 145, 145, 92, 98, 114, 103, 66, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3029, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3029, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3030, 54, 169, 169, 113, 108, 127, 110, 116, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3030, 53, 145, 145, 92, 98, 114, 103, 66, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3030, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3030, 52, 184, 184, 75, 75, 102, 123, 96, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3031, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3031, 31, 69, 69, 31, 31, 44, 37, 40, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3031, 32, 91, 91, 42, 54, 42, 54, 38, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3032, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3032, 38, 90, 90, 45, 45, 68, 60, 56, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3032, 39, 109, 109, 50, 65, 50, 65, 46, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3033, 33, 81, 81, 49, 46, 63, 46, 63, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3033, 32, 79, 79, 42, 38, 48, 80, 61, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3033, 32, 91, 91, 67, 48, 48, 48, 42, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3034, 40, 96, 96, 59, 55, 75, 55, 75, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3034, 41, 98, 98, 52, 48, 60, 101, 77, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3034, 39, 109, 109, 81, 58, 58, 58, 50, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3035, 32, 79, 79, 67, 80, 35, 35, 29, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3035, 31, 76, 76, 34, 34, 40, 47, 34, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3035, 32, 85, 85, 48, 48, 48, 48, 48, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3035, 31, 89, 89, 53, 53, 37, 37, 34, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3036, 37, 101, 101, 88, 103, 51, 51, 44, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3036, 38, 92, 92, 41, 41, 49, 56, 41, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3036, 37, 97, 97, 55, 55, 55, 55, 55, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3036, 38, 107, 107, 64, 64, 45, 45, 41, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3037, 40, 116, 116, 95, 99, 67, 59, 59, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3037, 41, 131, 131, 85, 85, 64, 64, 93, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3038, 30, 74, 74, 45, 42, 57, 42, 57, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3038, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3039, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3039, 40, 104, 104, 67, 95, 115, 75, 75, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3039, 40, 122, 122, 80, 79, 84, 99, 99, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3039, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3040, 52, 163, 163, 106, 106, 80, 80, 117, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3040, 55, 150, 150, 118, 90, 118, 90, 85, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3040, 53, 124, 124, 92, 124, 87, 71, 61, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3040, 54, 148, 148, 116, 89, 78, 78, 159, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3041, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3041, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3041, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3041, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3041, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3041, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3042, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3042, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3042, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3042, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3042, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3042, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3043, 100, 434, 434, 281, 161, 121, 161, 141, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3043, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3043, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3043, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3043, 100, 336, 336, 161, 199, 241, 291, 203, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3043, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3044, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3044, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3044, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3044, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3044, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3044, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3045, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3045, 100, 268, 268, 221, 131, 141, 141, 361, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3045, 100, 318, 318, 203, 235, 203, 255, 127, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3045, 100, 434, 434, 281, 161, 121, 161, 141, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3045, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3045, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3046, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3046, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3046, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3046, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3046, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3046, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3047, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3047, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3047, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3047, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3047, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3047, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3048, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3048, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3048, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3048, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3048, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3048, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3049, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3049, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3049, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3049, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3049, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3049, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3050, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3050, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3050, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3050, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3050, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3050, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3051, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3051, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3051, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3051, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3051, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3051, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3052, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3052, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3052, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3052, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3052, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3052, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3053, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3053, 29, 72, 72, 38, 35, 44, 73, 56, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3054, 43, 128, 128, 106, 119, 46, 76, 46, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3054, 43, 101, 101, 50, 50, 76, 67, 63, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3054, 43, 124, 124, 89, 89, 71, 74, 70, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3054, 42, 137, 137, 79, 56, 79, 56, 60, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3055, 13, 41, 41, 21, 21, 16, 16, 13, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3055, 12, 35, 35, 21, 20, 26, 20, 26, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3056, 12, 35, 35, 21, 19, 23, 21, 24, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3057, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3057, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3057, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3057, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3057, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3057, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3058, 16, 45, 45, 34, 21, 30, 21, 25, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3058, 16, 44, 44, 17, 20, 23, 36, 28, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3058, 16, 42, 42, 31, 21, 31, 21, 31, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3058, 16, 42, 42, 17, 31, 23, 31, 17, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3059, 23, 61, 61, 47, 29, 42, 28, 33, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3059, 23, 59, 59, 22, 27, 31, 50, 38, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3059, 23, 57, 57, 43, 29, 43, 29, 43, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3059, 23, 66, 66, 31, 52, 50, 61, 31, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3060, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3060, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3060, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3060, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3061, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3061, 29, 74, 74, 32, 47, 38, 53, 71, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3062, 34, 100, 100, 68, 64, 81, 64, 81, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3062, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3062, 33, 127, 127, 68, 65, 67, 63, 56, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3062, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3063, 14, 44, 44, 21, 21, 28, 22, 19, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3063, 14, 41, 41, 26, 21, 29, 24, 22, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3064, 20, 61, 61, 32, 28, 46, 42, 50, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3064, 20, 61, 61, 28, 32, 42, 46, 50, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3064, 20, 61, 61, 44, 32, 28, 28, 24, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3065, 27, 82, 82, 36, 56, 47, 61, 27, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3066, 42, 113, 113, 99, 66, 49, 83, 116, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3066, 42, 121, 121, 99, 104, 70, 62, 62, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3066, 42, 109, 109, 74, 57, 91, 74, 99, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3067, 17, 50, 50, 28, 24, 21, 21, 28, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3067, 17, 48, 48, 36, 31, 24, 21, 28, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3067, 17, 53, 53, 40, 25, 40, 25, 42, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3067, 17, 45, 45, 32, 40, 36, 29, 22, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3068, 23, 64, 64, 36, 31, 27, 27, 36, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3068, 23, 61, 61, 47, 40, 31, 27, 36, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3068, 23, 68, 68, 52, 32, 52, 32, 55, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3068, 23, 57, 57, 42, 52, 47, 38, 28, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3069, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3069, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3069, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3069, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3070, 6, 23, 23, 11, 14, 11, 16, 13, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3070, 6, 20, 20, 8, 9, 8, 13, 16, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3071, 17, 48, 48, 24, 31, 24, 36, 28, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3071, 17, 39, 39, 16, 17, 14, 29, 38, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3071, 16, 44, 44, 20, 20, 28, 20, 37, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3072, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3072, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3072, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3073, 20, 57, 57, 22, 23, 30, 34, 18, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3073, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3073, 20, 55, 55, 24, 18, 46, 38, 38, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3073, 20, 51, 51, 20, 38, 28, 38, 20, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3074, 35, 99, 99, 52, 66, 52, 80, 63, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3074, 36, 102, 102, 68, 53, 89, 53, 64, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3074, 34, 107, 107, 68, 54, 88, 75, 37, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3074, 36, 105, 105, 51, 57, 70, 71, 79, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3074, 36, 105, 105, 70, 57, 51, 71, 79, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3075, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3075, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3075, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3075, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3075, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3075, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3076, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3076, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3077, 20, 53, 53, 24, 24, 28, 32, 24, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3077, 20, 53, 53, 28, 32, 24, 24, 24, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3077, 20, 65, 65, 40, 40, 40, 40, 40, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3078, 20, 51, 51, 30, 25, 26, 30, 20, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3078, 20, 59, 59, 20, 26, 20, 30, 42, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3078, 20, 57, 57, 30, 30, 26, 26, 32, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3079, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3079, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3079, 50, 168, 168, 98, 98, 113, 123, 93, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3079, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3079, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3079, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3080, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3080, 100, 266, 266, 181, 251, 181, 281, 191, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3081, 20, 51, 51, 34, 26, 24, 24, 26, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3081, 20, 53, 53, 34, 24, 24, 24, 46, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3081, 20, 48, 48, 22, 22, 30, 26, 28, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3081, 20, 45, 45, 28, 48, 24, 48, 22, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3082, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3082, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3083, 20, 61, 61, 44, 32, 32, 32, 28, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3083, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3083, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3083, 20, 55, 55, 24, 18, 46, 38, 38, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3084, 5, 20, 20, 13, 11, 11, 11, 11, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3084, 5, 19, 19, 9, 9, 9, 9, 9, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3085, 5, 21, 21, 14, 11, 14, 11, 11, 583); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3085, 5, 21, 21, 15, 8, 13, 8, 13, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3086, 20, 53, 53, 34, 24, 24, 24, 46, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3086, 20, 53, 53, 32, 30, 40, 30, 40, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3086, 20, 55, 55, 36, 28, 40, 32, 30, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3086, 20, 55, 55, 28, 36, 28, 42, 32, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3087, 20, 55, 55, 52, 30, 30, 30, 16, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3087, 20, 61, 61, 22, 26, 40, 44, 36, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3087, 20, 61, 61, 36, 36, 36, 36, 36, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3088, 5, 22, 22, 12, 11, 10, 12, 11, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3088, 5, 21, 21, 11, 11, 11, 11, 11, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3089, 31, 98, 98, 76, 55, 76, 55, 78, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3089, 31, 98, 98, 76, 55, 76, 55, 78, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3089, 31, 98, 98, 76, 55, 76, 55, 78, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3090, 30, 88, 88, 51, 48, 45, 45, 58, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3091, 10, 33, 33, 19, 18, 19, 18, 21, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3091, 10, 33, 33, 19, 18, 19, 18, 21, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3092, 10, 33, 33, 19, 18, 19, 18, 21, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3092, 10, 33, 33, 19, 18, 19, 18, 21, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3093, 10, 33, 33, 19, 18, 19, 18, 21, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3093, 10, 33, 33, 19, 18, 19, 18, 21, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3094, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3095, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3096, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3096, 42, 121, 121, 99, 83, 66, 66, 91, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3096, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3097, 37, 104, 104, 73, 92, 59, 77, 55, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3097, 38, 122, 122, 109, 117, 60, 68, 52, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3097, 38, 114, 114, 83, 71, 64, 71, 56, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3097, 38, 114, 114, 94, 71, 98, 75, 49, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3097, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3098, 46, 127, 127, 85, 118, 85, 131, 90, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3098, 45, 138, 138, 102, 147, 75, 75, 57, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3098, 46, 146, 146, 113, 95, 95, 95, 113, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3098, 46, 173, 173, 93, 88, 91, 86, 76, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3098, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3099, 46, 127, 127, 85, 118, 85, 131, 90, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3099, 45, 138, 138, 102, 147, 75, 75, 57, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3099, 46, 146, 146, 113, 95, 95, 95, 113, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3099, 46, 173, 173, 93, 88, 91, 86, 76, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3099, 47, 144, 144, 106, 68, 125, 97, 111, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3100, 63, 171, 171, 115, 159, 115, 178, 122, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3100, 64, 193, 193, 143, 207, 104, 104, 79, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3100, 65, 228, 228, 171, 145, 138, 145, 106, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3100, 64, 186, 186, 149, 136, 98, 111, 117, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3100, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3101, 63, 171, 171, 115, 159, 115, 178, 122, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3101, 64, 193, 193, 143, 207, 104, 104, 79, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3101, 65, 228, 228, 171, 145, 138, 145, 106, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3101, 64, 186, 186, 149, 136, 98, 111, 117, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3101, 65, 195, 195, 145, 93, 171, 132, 151, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3102, 48, 147, 147, 99, 89, 84, 94, 108, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3102, 47, 125, 125, 119, 120, 110, 92, 70, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3102, 47, 191, 191, 76, 76, 93, 93, 84, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3102, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3102, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3103, 48, 156, 156, 108, 99, 89, 99, 147, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3103, 49, 135, 135, 71, 120, 105, 91, 86, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3103, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3103, 49, 135, 135, 96, 105, 120, 105, 135, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3103, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3104, 48, 156, 156, 108, 99, 89, 99, 147, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3104, 49, 135, 135, 71, 120, 105, 91, 86, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3104, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3104, 49, 135, 135, 96, 105, 120, 105, 135, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3104, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3105, 62, 174, 174, 76, 114, 126, 200, 114, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3105, 63, 227, 227, 191, 178, 84, 84, 78, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3105, 64, 218, 218, 188, 129, 104, 156, 131, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3105, 65, 208, 208, 145, 132, 119, 132, 197, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3105, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3106, 62, 174, 174, 76, 114, 126, 200, 114, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3106, 63, 227, 227, 191, 178, 84, 84, 78, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3106, 64, 218, 218, 188, 129, 104, 156, 131, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3106, 65, 208, 208, 145, 132, 119, 132, 197, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3106, 65, 189, 189, 125, 106, 164, 106, 164, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3107, 28, 92, 92, 54, 54, 65, 71, 54, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3107, 29, 95, 95, 56, 56, 67, 73, 56, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3107, 31, 101, 101, 59, 59, 71, 78, 59, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3107, 30, 98, 98, 57, 57, 69, 75, 57, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3107, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3108, 44, 140, 140, 82, 82, 100, 108, 82, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3108, 45, 143, 143, 84, 84, 102, 111, 84, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3108, 46, 149, 149, 86, 61, 86, 61, 65, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3108, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3108, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3109, 44, 140, 140, 82, 82, 100, 108, 82, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3109, 45, 143, 143, 84, 84, 102, 111, 84, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3109, 46, 149, 149, 86, 61, 86, 61, 65, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3109, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3109, 43, 132, 132, 127, 106, 80, 89, 59, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3110, 63, 196, 196, 115, 115, 141, 153, 115, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3110, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3110, 64, 230, 230, 144, 108, 144, 121, 115, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3110, 65, 202, 202, 119, 119, 145, 158, 119, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3110, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3111, 63, 196, 196, 115, 115, 141, 153, 115, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3111, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3111, 64, 230, 230, 144, 108, 144, 121, 115, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3111, 65, 202, 202, 119, 119, 145, 158, 119, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3111, 64, 193, 193, 188, 156, 117, 130, 85, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3112, 45, 134, 134, 79, 79, 70, 70, 84, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3112, 45, 138, 138, 97, 201, 70, 79, 48, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3112, 45, 128, 128, 124, 79, 95, 77, 79, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3112, 44, 135, 135, 91, 95, 117, 100, 64, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3112, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3113, 48, 147, 147, 99, 113, 108, 118, 70, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3113, 47, 130, 130, 78, 78, 101, 101, 101, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3113, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3113, 48, 209, 209, 89, 65, 103, 70, 65, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3113, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3114, 48, 147, 147, 99, 113, 108, 118, 70, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3114, 47, 130, 130, 78, 78, 101, 101, 101, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3114, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3114, 48, 209, 209, 89, 65, 103, 70, 65, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3114, 48, 166, 166, 79, 98, 118, 142, 100, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3115, 65, 429, 429, 41, 41, 125, 203, 99, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3115, 64, 148, 148, 117, 194, 104, 194, 60, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3115, 63, 171, 171, 141, 96, 141, 128, 166, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3115, 64, 199, 199, 133, 156, 134, 156, 130, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3115, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3116, 65, 429, 429, 41, 41, 125, 203, 99, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3116, 64, 148, 148, 117, 194, 104, 194, 60, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3116, 63, 171, 171, 141, 96, 141, 128, 166, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3116, 64, 199, 199, 133, 156, 134, 156, 130, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3116, 65, 221, 221, 106, 131, 158, 190, 133, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3117, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3117, 44, 118, 118, 64, 60, 139, 104, 126, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3117, 44, 135, 135, 104, 104, 104, 104, 95, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3117, 44, 140, 140, 130, 86, 56, 104, 95, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3117, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3117, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3118, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3118, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3118, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3118, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3118, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3118, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3119, 45, 126, 126, 102, 61, 66, 66, 165, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3119, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3119, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3119, 45, 143, 143, 111, 93, 93, 93, 111, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3119, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3119, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3120, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3120, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3120, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3120, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3120, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3120, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3121, 36, 102, 102, 82, 118, 53, 53, 46, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3121, 36, 123, 123, 61, 68, 71, 68, 50, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3121, 36, 127, 127, 71, 75, 89, 97, 39, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3121, 36, 123, 123, 111, 71, 71, 71, 57, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3121, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3121, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3122, 42, 146, 146, 83, 87, 104, 112, 45, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3122, 43, 145, 145, 132, 84, 84, 84, 67, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3122, 43, 128, 128, 115, 175, 72, 72, 63, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3122, 44, 166, 166, 91, 100, 104, 100, 78, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3122, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3123, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3123, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3123, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3123, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3123, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3123, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3124, 26, 110, 110, 44, 44, 53, 53, 49, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3124, 26, 94, 94, 58, 58, 48, 48, 32, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3124, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3124, 27, 84, 84, 52, 52, 52, 52, 52, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3124, 28, 81, 81, 57, 71, 45, 59, 43, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3125, 42, 117, 117, 83, 104, 66, 87, 62, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3125, 42, 146, 146, 91, 91, 74, 74, 49, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3125, 42, 125, 125, 129, 104, 66, 87, 74, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3125, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3125, 42, 125, 125, 78, 78, 78, 78, 78, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3125, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3126, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3126, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3126, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3126, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3126, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3126, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3127, 20, 54, 54, 24, 34, 28, 38, 51, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3127, 19, 58, 58, 38, 30, 49, 30, 36, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3127, 19, 54, 54, 34, 28, 49, 42, 36, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3127, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3128, 36, 107, 107, 64, 64, 107, 100, 75, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3128, 36, 98, 98, 78, 93, 100, 71, 55, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3128, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3128, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3129, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3129, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3129, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3129, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3129, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3129, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3130, 42, 151, 151, 104, 87, 70, 70, 62, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3130, 42, 134, 134, 87, 87, 87, 87, 87, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3130, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3131, 55, 194, 194, 134, 112, 90, 90, 79, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3131, 54, 169, 169, 110, 110, 110, 110, 110, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3131, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3132, 55, 194, 194, 134, 112, 90, 90, 79, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3132, 54, 169, 169, 110, 110, 110, 110, 110, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3132, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3133, 41, 114, 114, 73, 77, 89, 81, 52, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3133, 42, 130, 130, 66, 78, 66, 99, 112, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3133, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3134, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3134, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3134, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3135, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3135, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3135, 52, 132, 132, 86, 70, 127, 106, 91, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3136, 36, 87, 87, 75, 89, 39, 39, 32, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3136, 36, 87, 87, 75, 89, 39, 39, 32, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3136, 38, 118, 118, 94, 102, 52, 60, 68, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3137, 45, 165, 165, 115, 88, 79, 111, 66, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3137, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3138, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3138, 54, 169, 169, 73, 94, 121, 143, 110, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3138, 53, 156, 156, 130, 98, 135, 103, 66, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3138, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3139, 63, 227, 227, 159, 122, 109, 153, 90, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3139, 62, 193, 193, 83, 107, 138, 163, 126, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3139, 61, 178, 178, 148, 112, 155, 118, 75, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3139, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3140, 39, 125, 125, 81, 58, 50, 58, 38, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3140, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3140, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3141, 37, 123, 123, 74, 65, 51, 59, 84, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3141, 39, 90, 90, 69, 46, 69, 46, 69, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3141, 41, 123, 123, 77, 77, 77, 77, 77, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3141, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3142, 57, 184, 184, 112, 98, 76, 88, 128, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3142, 56, 170, 170, 142, 109, 142, 109, 75, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3142, 58, 170, 170, 107, 107, 107, 107, 107, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3142, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3143, 57, 184, 184, 112, 98, 76, 88, 128, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3143, 56, 170, 170, 142, 109, 142, 109, 75, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3143, 58, 170, 170, 107, 107, 107, 107, 107, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3143, 56, 242, 242, 103, 75, 120, 81, 75, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3144, 38, 114, 114, 87, 71, 64, 64, 49, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3144, 39, 109, 109, 69, 73, 85, 77, 50, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3144, 40, 116, 116, 57, 63, 77, 79, 87, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3145, 42, 125, 125, 70, 72, 87, 89, 70, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3145, 41, 123, 123, 93, 77, 68, 68, 52, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3145, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3146, 54, 159, 159, 89, 91, 110, 113, 89, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3146, 53, 161, 161, 119, 172, 87, 87, 66, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3146, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3147, 53, 156, 156, 87, 89, 108, 111, 87, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3147, 51, 155, 155, 115, 166, 84, 84, 64, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3147, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3148, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3148, 34, 86, 86, 78, 30, 61, 30, 61, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3149, 35, 85, 85, 45, 56, 45, 66, 56, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3149, 35, 77, 77, 35, 35, 49, 42, 45, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3149, 35, 84, 84, 42, 42, 63, 56, 52, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3150, 37, 93, 93, 62, 40, 77, 55, 66, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3150, 36, 73, 73, 46, 82, 39, 82, 35, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3150, 37, 89, 89, 66, 88, 62, 51, 44, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3150, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3151, 38, 111, 111, 74, 60, 54, 75, 83, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3151, 39, 94, 94, 65, 50, 50, 50, 42, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3151, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3152, 53, 150, 150, 101, 82, 73, 103, 114, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3152, 54, 159, 159, 121, 100, 89, 89, 67, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3152, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3153, 53, 150, 150, 101, 82, 73, 103, 114, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3153, 52, 153, 153, 117, 96, 86, 86, 65, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3153, 53, 150, 150, 73, 82, 101, 103, 114, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3154, 38, 114, 114, 71, 49, 64, 49, 64, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3154, 38, 95, 95, 87, 33, 68, 33, 68, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3154, 38, 95, 95, 64, 41, 79, 56, 68, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3154, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3155, 57, 167, 167, 105, 71, 93, 71, 93, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3155, 56, 164, 164, 159, 69, 131, 69, 131, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3155, 56, 136, 136, 92, 58, 114, 81, 97, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3155, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3156, 57, 167, 167, 105, 71, 93, 71, 93, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3156, 56, 164, 164, 159, 69, 131, 69, 131, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3156, 56, 136, 136, 92, 58, 114, 81, 97, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3156, 57, 150, 150, 133, 88, 65, 111, 156, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3157, 40, 128, 128, 87, 95, 43, 43, 39, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3157, 40, 104, 104, 71, 55, 87, 71, 95, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3157, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3158, 57, 178, 178, 122, 133, 59, 59, 54, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3158, 56, 142, 142, 97, 75, 120, 97, 131, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3158, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3159, 57, 178, 178, 122, 133, 59, 59, 54, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3159, 56, 142, 142, 97, 75, 120, 97, 131, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3159, 57, 167, 167, 93, 96, 116, 119, 93, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3160, 39, 125, 125, 90, 69, 69, 81, 72, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3160, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3160, 39, 109, 109, 58, 73, 81, 81, 128, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3160, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3160, 39, 117, 117, 97, 108, 42, 69, 42, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3161, 47, 139, 139, 101, 153, 101, 87, 40, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3161, 46, 118, 118, 67, 131, 95, 95, 49, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3161, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3162, 47, 139, 139, 101, 153, 101, 87, 40, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3162, 46, 118, 118, 67, 131, 95, 95, 49, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3162, 48, 145, 145, 95, 94, 100, 118, 118, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3163, 32, 85, 85, 58, 74, 38, 38, 26, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3163, 31, 71, 71, 44, 71, 34, 34, 40, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3163, 32, 79, 79, 35, 37, 48, 49, 58, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3163, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3164, 51, 155, 155, 115, 166, 84, 84, 64, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3164, 55, 151, 151, 123, 74, 79, 79, 200, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3164, 52, 153, 153, 86, 88, 106, 109, 86, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3164, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3165, 51, 155, 155, 115, 166, 84, 84, 64, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3165, 55, 151, 151, 123, 74, 79, 79, 200, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3165, 52, 153, 153, 86, 88, 106, 109, 86, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3165, 54, 148, 148, 100, 78, 132, 78, 94, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3166, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3166, 43, 120, 120, 93, 72, 63, 63, 127, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3166, 43, 120, 120, 97, 80, 72, 123, 54, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3166, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3167, 57, 133, 133, 65, 59, 162, 105, 145, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3167, 58, 158, 158, 124, 95, 83, 83, 170, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3167, 58, 158, 158, 130, 107, 95, 165, 72, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3167, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3168, 57, 133, 133, 65, 59, 162, 105, 145, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3168, 58, 158, 158, 124, 95, 83, 83, 170, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3168, 58, 158, 158, 130, 107, 95, 165, 72, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3168, 58, 199, 199, 124, 124, 101, 101, 66, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3169, 45, 165, 165, 115, 88, 79, 111, 66, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3169, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3170, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3170, 54, 169, 169, 73, 94, 121, 143, 110, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3170, 53, 145, 145, 161, 108, 87, 87, 98, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3170, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3171, 63, 227, 227, 159, 122, 109, 153, 90, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3171, 62, 193, 193, 83, 107, 138, 163, 126, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3171, 61, 166, 166, 185, 124, 100, 100, 112, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3171, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3172, 34, 103, 103, 44, 51, 54, 51, 34, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3172, 32, 95, 95, 42, 65, 55, 72, 31, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3172, 33, 94, 94, 49, 63, 49, 76, 59, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3173, 40, 136, 136, 67, 75, 79, 75, 55, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3173, 39, 114, 114, 51, 79, 66, 86, 36, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3173, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3174, 34, 97, 97, 44, 58, 44, 58, 41, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3174, 34, 90, 90, 75, 44, 75, 44, 41, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3175, 37, 130, 130, 35, 53, 35, 53, 35, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3175, 38, 88, 88, 67, 83, 74, 60, 43, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3175, 38, 92, 92, 79, 94, 41, 41, 33, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3175, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3176, 42, 226, 226, 47, 68, 47, 68, 47, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3176, 43, 98, 98, 75, 93, 84, 67, 48, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3176, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3176, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3177, 42, 226, 226, 47, 68, 47, 68, 47, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3177, 43, 98, 98, 75, 93, 84, 67, 48, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3177, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3177, 41, 114, 114, 68, 81, 68, 81, 85, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3178, 53, 283, 283, 59, 85, 59, 85, 59, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3178, 51, 135, 135, 129, 130, 119, 99, 76, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3178, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3178, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3179, 53, 283, 283, 59, 85, 59, 85, 59, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3179, 51, 135, 135, 129, 130, 119, 99, 76, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3179, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3179, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3180, 48, 157, 157, 100, 115, 100, 125, 63, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3180, 48, 147, 147, 99, 103, 127, 108, 70, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3180, 49, 145, 145, 135, 81, 135, 81, 76, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3180, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3181, 48, 157, 157, 100, 115, 100, 125, 63, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3181, 48, 147, 147, 99, 103, 127, 108, 70, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3181, 49, 145, 145, 135, 81, 135, 81, 76, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3181, 49, 145, 145, 105, 86, 125, 105, 140, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3182, 38, 120, 120, 71, 65, 56, 65, 94, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3182, 38, 122, 122, 79, 79, 60, 60, 87, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3182, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3183, 42, 132, 132, 78, 71, 62, 71, 104, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3183, 44, 140, 140, 91, 91, 69, 69, 100, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3183, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3184, 42, 132, 132, 78, 71, 62, 71, 104, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3184, 44, 140, 140, 91, 91, 69, 69, 100, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3184, 43, 128, 128, 76, 76, 67, 67, 80, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3185, 40, 120, 120, 86, 75, 71, 75, 60, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3185, 40, 96, 96, 55, 47, 43, 51, 63, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3185, 40, 100, 100, 51, 67, 51, 79, 59, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3185, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3186, 56, 164, 164, 119, 103, 97, 103, 82, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3186, 56, 170, 170, 114, 103, 97, 109, 125, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3186, 58, 141, 141, 72, 95, 72, 112, 83, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3186, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3187, 56, 164, 164, 119, 103, 97, 103, 82, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3187, 56, 170, 170, 114, 103, 97, 109, 125, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3187, 58, 141, 141, 72, 95, 72, 112, 83, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3187, 57, 144, 144, 122, 122, 88, 88, 82, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3188, 45, 165, 165, 115, 88, 79, 111, 66, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3188, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3189, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3189, 54, 169, 169, 73, 94, 121, 143, 110, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3189, 53, 156, 156, 151, 66, 124, 66, 124, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3189, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3190, 63, 227, 227, 159, 122, 109, 153, 90, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3190, 62, 193, 193, 83, 107, 138, 163, 126, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3190, 61, 178, 178, 173, 75, 142, 75, 142, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3190, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3191, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3191, 33, 87, 87, 79, 79, 39, 89, 63, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3191, 34, 154, 154, 98, 58, 44, 58, 51, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3191, 50, 148, 148, 88, 83, 113, 98, 113, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3191, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3192, 35, 117, 117, 80, 73, 66, 73, 108, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3192, 35, 108, 108, 87, 59, 87, 59, 63, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3192, 34, 100, 100, 51, 64, 81, 71, 61, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3192, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3193, 11, 31, 31, 17, 24, 24, 14, 22, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3193, 12, 37, 37, 25, 23, 17, 21, 24, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3193, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3194, 11, 31, 31, 17, 24, 24, 14, 22, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3194, 12, 37, 37, 25, 23, 17, 21, 24, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3194, 11, 33, 33, 21, 26, 16, 22, 15, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3195, 20, 49, 49, 28, 40, 40, 22, 36, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3195, 20, 55, 55, 39, 36, 26, 32, 37, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3195, 19, 51, 51, 32, 42, 25, 34, 23, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3196, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3196, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3196, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3197, 14, 45, 45, 18, 18, 20, 25, 24, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3197, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3198, 14, 45, 45, 18, 18, 20, 25, 24, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3198, 15, 48, 48, 28, 28, 20, 20, 19, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3199, 20, 77, 77, 32, 32, 42, 50, 40, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3199, 20, 69, 69, 44, 44, 34, 34, 48, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3200, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3200, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3201, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3201, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3201, 15, 45, 45, 26, 24, 29, 25, 26, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3201, 16, 42, 42, 31, 21, 31, 21, 31, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3202, 14, 34, 34, 21, 35, 18, 35, 17, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3202, 14, 43, 43, 22, 22, 19, 19, 24, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3203, 14, 43, 43, 24, 24, 24, 24, 24, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3203, 14, 43, 43, 23, 22, 22, 21, 26, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3204, 17, 41, 41, 17, 16, 46, 29, 41, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3204, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3204, 16, 38, 38, 15, 17, 13, 28, 36, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3204, 16, 54, 54, 29, 20, 17, 20, 18, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3205, 19, 62, 62, 28, 31, 28, 31, 27, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3205, 19, 56, 56, 27, 27, 36, 28, 25, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3205, 20, 54, 54, 24, 34, 28, 38, 51, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3205, 20, 67, 67, 44, 50, 48, 52, 32, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3206, 19, 68, 68, 40, 36, 28, 32, 46, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3206, 20, 52, 52, 24, 28, 24, 28, 36, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3206, 19, 56, 56, 27, 44, 42, 51, 27, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3206, 21, 57, 57, 35, 31, 39, 31, 44, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3207, 25, 74, 74, 29, 29, 32, 42, 39, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3207, 26, 73, 73, 63, 74, 37, 37, 32, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3207, 26, 81, 81, 36, 41, 36, 41, 35, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3207, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3208, 22, 56, 56, 28, 28, 41, 37, 34, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3208, 20, 68, 68, 40, 36, 32, 36, 52, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3208, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3209, 20, 51, 51, 46, 30, 26, 26, 42, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3209, 18, 48, 48, 25, 24, 29, 47, 36, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3209, 20, 63, 63, 32, 40, 50, 44, 38, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3210, 22, 55, 55, 37, 28, 26, 26, 28, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3210, 21, 49, 49, 27, 41, 52, 35, 31, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3210, 21, 51, 51, 31, 35, 41, 35, 48, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3210, 21, 65, 65, 67, 37, 44, 37, 44, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3211, 20, 66, 66, 52, 36, 52, 36, 38, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3211, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3211, 22, 72, 72, 48, 43, 41, 45, 52, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3211, 21, 67, 67, 50, 41, 37, 37, 41, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3212, 23, 68, 68, 36, 59, 52, 45, 43, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3212, 23, 59, 59, 33, 31, 43, 31, 43, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3212, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3213, 21, 57, 57, 44, 27, 39, 26, 31, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3213, 21, 63, 63, 46, 33, 33, 33, 29, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3213, 21, 61, 61, 35, 48, 39, 48, 27, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3214, 23, 71, 71, 36, 45, 56, 50, 43, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3214, 23, 74, 74, 56, 41, 52, 43, 52, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3214, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3215, 22, 55, 55, 41, 28, 41, 28, 41, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3215, 22, 72, 72, 48, 43, 41, 45, 52, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3215, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3216, 22, 57, 57, 28, 26, 65, 43, 59, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3216, 22, 70, 70, 37, 37, 48, 39, 32, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3216, 21, 72, 72, 46, 46, 35, 35, 50, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3216, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3217, 21, 57, 57, 40, 37, 27, 33, 39, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3217, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3217, 21, 55, 55, 39, 52, 37, 31, 27, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3217, 21, 67, 67, 50, 41, 37, 37, 41, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3218, 31, 92, 92, 47, 59, 75, 65, 56, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3218, 30, 86, 86, 69, 57, 51, 87, 39, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3218, 30, 110, 110, 45, 45, 61, 73, 57, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3218, 29, 90, 90, 67, 56, 50, 50, 56, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3219, 21, 46, 46, 29, 50, 25, 50, 23, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3219, 20, 54, 54, 44, 38, 32, 26, 26, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3219, 21, 65, 65, 52, 44, 35, 35, 48, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3220, 22, 57, 57, 28, 26, 65, 43, 59, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3220, 22, 64, 64, 54, 37, 28, 45, 63, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3220, 22, 66, 66, 39, 39, 50, 50, 50, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3220, 50, 118, 118, 68, 58, 63, 63, 113, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3221, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3221, 31, 101, 101, 90, 96, 50, 56, 44, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3221, 31, 98, 98, 71, 102, 53, 53, 40, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3221, 32, 95, 95, 42, 61, 67, 106, 61, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3221, 31, 104, 104, 71, 65, 59, 65, 96, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3222, 22, 66, 66, 50, 31, 50, 31, 52, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3222, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3222, 22, 70, 70, 52, 43, 39, 39, 30, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3223, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3223, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3223, 29, 107, 107, 57, 63, 57, 63, 47, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3223, 29, 92, 92, 61, 56, 53, 58, 67, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3223, 30, 92, 92, 87, 39, 72, 39, 72, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3224, 35, 103, 103, 108, 59, 70, 59, 70, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3224, 34, 97, 97, 78, 47, 51, 51, 126, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3224, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3224, 35, 92, 92, 77, 77, 56, 56, 52, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3225, 22, 70, 70, 50, 74, 50, 43, 21, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3225, 23, 73, 73, 45, 31, 40, 31, 40, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3225, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3226, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3226, 9, 30, 30, 17, 18, 21, 19, 13, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3226, 9, 31, 31, 23, 15, 23, 15, 14, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3226, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3226, 9, 31, 31, 19, 24, 14, 14, 10, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3226, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3227, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3227, 9, 30, 30, 17, 18, 21, 19, 13, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3227, 9, 31, 31, 23, 15, 23, 15, 14, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3227, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3227, 9, 31, 31, 19, 24, 14, 14, 10, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3228, 19, 51, 51, 23, 23, 27, 30, 23, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3228, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3228, 18, 52, 52, 42, 25, 42, 25, 24, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3228, 19, 58, 58, 27, 34, 27, 34, 25, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3228, 20, 57, 57, 38, 48, 26, 26, 18, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3229, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3229, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3229, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3229, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3229, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3230, 41, 168, 168, 67, 67, 82, 82, 74, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3230, 41, 106, 106, 68, 97, 118, 77, 77, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3230, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3231, 30, 86, 86, 39, 45, 60, 66, 72, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3231, 30, 86, 86, 57, 45, 75, 45, 54, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3231, 28, 78, 78, 34, 43, 45, 76, 62, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3231, 31, 92, 92, 45, 50, 61, 62, 68, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3232, 40, 115, 115, 111, 71, 85, 69, 71, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3232, 40, 104, 104, 79, 79, 71, 71, 59, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3232, 40, 96, 96, 75, 123, 67, 123, 39, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3232, 44, 144, 144, 100, 91, 82, 91, 135, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3232, 44, 219, 219, 100, 60, 100, 60, 73, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3233, 37, 115, 115, 84, 55, 99, 77, 88, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3233, 37, 114, 114, 74, 73, 78, 92, 92, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3233, 34, 107, 107, 71, 75, 92, 78, 51, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3233, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3233, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3234, 33, 101, 101, 56, 57, 69, 71, 56, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3234, 33, 120, 120, 63, 63, 59, 59, 46, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3234, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3234, 33, 94, 94, 56, 56, 56, 56, 56, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3235, 29, 91, 91, 73, 50, 73, 50, 53, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3235, 29, 84, 84, 64, 39, 64, 39, 68, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3235, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3235, 50, 133, 133, 93, 68, 93, 73, 83, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3236, 30, 86, 86, 45, 39, 66, 60, 72, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3236, 30, 86, 86, 45, 57, 45, 69, 54, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3236, 31, 92, 92, 62, 59, 75, 59, 75, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3236, 30, 89, 89, 59, 48, 44, 60, 66, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3237, 36, 91, 91, 57, 50, 64, 50, 71, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3237, 36, 116, 116, 50, 64, 82, 97, 75, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3237, 35, 127, 127, 68, 75, 68, 75, 56, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3237, 35, 127, 127, 80, 108, 49, 63, 56, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3237, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3237, 35, 124, 124, 77, 77, 63, 63, 42, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3238, 13, 36, 36, 31, 21, 18, 18, 29, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3238, 14, 40, 40, 25, 18, 18, 18, 33, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3239, 39, 113, 113, 69, 54, 77, 54, 93, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3239, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3239, 39, 105, 105, 34, 46, 34, 54, 77, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3239, 37, 115, 115, 77, 81, 99, 84, 55, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3239, 40, 124, 124, 75, 91, 75, 103, 83, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3240, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3240, 32, 75, 75, 38, 42, 38, 51, 48, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3240, 31, 95, 95, 53, 54, 65, 67, 53, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3240, 32, 101, 101, 67, 77, 74, 80, 48, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3241, 20, 63, 63, 41, 34, 31, 42, 46, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3241, 21, 63, 63, 23, 27, 41, 46, 37, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3241, 20, 63, 63, 31, 34, 41, 42, 46, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3241, 21, 69, 69, 54, 37, 54, 37, 39, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3241, 22, 97, 97, 43, 28, 43, 28, 39, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3242, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3242, 38, 122, 122, 109, 117, 60, 68, 52, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3242, 38, 111, 111, 75, 71, 90, 71, 90, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3242, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3243, 35, 106, 106, 80, 66, 59, 59, 66, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3243, 34, 105, 105, 81, 59, 75, 61, 75, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3243, 37, 114, 114, 103, 62, 62, 62, 84, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3243, 35, 106, 106, 101, 45, 84, 45, 84, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3243, 34, 107, 107, 68, 54, 88, 75, 37, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3244, 44, 87, 87, 29, 223, 29, 223, 25, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3244, 42, 281, 281, 28, 28, 83, 133, 66, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3244, 41, 119, 119, 93, 118, 89, 77, 68, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3245, 30, 89, 89, 93, 51, 60, 51, 60, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3245, 31, 86, 86, 28, 37, 28, 44, 62, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3245, 30, 104, 104, 87, 87, 51, 51, 45, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3245, 31, 107, 107, 62, 68, 87, 71, 50, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3245, 31, 101, 101, 59, 56, 65, 90, 78, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3246, 41, 131, 131, 85, 85, 85, 85, 85, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3246, 44, 149, 149, 86, 95, 122, 100, 69, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3246, 42, 117, 117, 129, 87, 70, 70, 78, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3246, 44, 149, 149, 126, 126, 73, 73, 64, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3246, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3247, 37, 112, 112, 92, 70, 96, 73, 47, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3247, 37, 108, 108, 84, 107, 81, 70, 62, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3247, 38, 141, 141, 98, 75, 68, 94, 56, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3247, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3247, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3248, 37, 112, 112, 103, 62, 103, 62, 59, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3248, 37, 114, 114, 74, 73, 78, 92, 92, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3248, 37, 112, 112, 81, 121, 81, 70, 33, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3248, 37, 108, 108, 47, 70, 77, 121, 70, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3248, 35, 126, 126, 65, 75, 68, 78, 53, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3249, 31, 73, 73, 55, 68, 62, 50, 36, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3249, 31, 98, 98, 81, 62, 81, 62, 44, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3249, 31, 129, 129, 52, 52, 63, 63, 57, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3249, 32, 117, 117, 74, 99, 45, 58, 51, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3250, 41, 125, 125, 97, 70, 89, 73, 89, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3250, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3250, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3250, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3251, 34, 97, 97, 51, 64, 71, 71, 112, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3251, 34, 97, 97, 58, 58, 75, 75, 75, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3251, 36, 102, 102, 68, 93, 68, 104, 71, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3251, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3251, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3252, 20, 59, 59, 50, 34, 26, 42, 58, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3252, 19, 60, 60, 36, 28, 40, 28, 47, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3252, 20, 61, 61, 36, 36, 46, 46, 46, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3252, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3253, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3253, 30, 101, 101, 61, 54, 42, 48, 69, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3253, 31, 86, 86, 40, 68, 65, 81, 40, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3253, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3254, 16, 44, 44, 26, 25, 33, 25, 33, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3254, 14, 37, 37, 22, 35, 18, 18, 21, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3254, 15, 69, 69, 31, 20, 31, 20, 28, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3255, 20, 53, 53, 36, 28, 28, 28, 24, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3255, 19, 58, 58, 38, 30, 49, 30, 36, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3255, 20, 61, 61, 32, 40, 32, 48, 38, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3255, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3256, 18, 49, 49, 40, 34, 29, 24, 24, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3256, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3256, 18, 63, 63, 40, 29, 25, 29, 20, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3257, 18, 48, 48, 31, 40, 24, 33, 22, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3257, 18, 56, 56, 42, 26, 42, 26, 44, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3257, 18, 56, 56, 33, 33, 24, 24, 22, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3257, 18, 63, 63, 42, 45, 22, 22, 20, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3258, 14, 43, 43, 24, 21, 18, 18, 24, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3258, 13, 39, 39, 29, 18, 26, 18, 21, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3258, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3259, 17, 72, 72, 26, 17, 26, 19, 17, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3259, 17, 55, 55, 28, 34, 43, 38, 33, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3259, 16, 63, 63, 33, 33, 31, 31, 25, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3260, 20, 65, 65, 52, 58, 24, 38, 24, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3260, 21, 53, 53, 39, 48, 43, 35, 26, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3261, 39, 125, 125, 54, 69, 89, 104, 81, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3261, 39, 113, 113, 81, 128, 50, 73, 73, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3261, 39, 109, 109, 77, 97, 61, 81, 58, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3261, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3261, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3262, 10, 39, 39, 24, 18, 16, 18, 13, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3262, 10, 31, 31, 16, 15, 18, 28, 22, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3262, 11, 33, 33, 23, 29, 22, 18, 16, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3262, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3263, 10, 39, 39, 24, 18, 16, 18, 13, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3263, 10, 31, 31, 16, 15, 18, 28, 22, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3263, 11, 33, 33, 23, 29, 22, 18, 16, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3263, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3264, 20, 69, 69, 44, 32, 28, 32, 22, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3264, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3264, 20, 53, 53, 38, 50, 36, 30, 26, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3264, 20, 53, 53, 30, 26, 24, 28, 34, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3265, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3265, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3265, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3265, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3266, 14, 40, 40, 21, 21, 29, 21, 15, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3266, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3267, 14, 40, 40, 21, 21, 29, 21, 15, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3267, 14, 45, 45, 26, 21, 28, 22, 19, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3268, 20, 53, 53, 28, 28, 40, 28, 20, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3268, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3269, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3269, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3270, 18, 50, 50, 43, 18, 34, 18, 34, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3270, 17, 50, 50, 27, 25, 26, 25, 31, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3271, 19, 60, 60, 47, 40, 32, 32, 44, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3271, 20, 69, 69, 46, 50, 24, 24, 22, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3271, 20, 67, 67, 27, 27, 34, 34, 39, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3271, 20, 53, 53, 38, 50, 36, 30, 26, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3272, 27, 76, 76, 70, 71, 65, 55, 42, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3272, 27, 73, 73, 60, 36, 60, 36, 33, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3272, 27, 79, 79, 57, 41, 41, 41, 36, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3272, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3273, 36, 98, 98, 92, 93, 85, 71, 55, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3273, 35, 106, 106, 98, 59, 98, 59, 56, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3273, 35, 103, 103, 80, 101, 77, 66, 59, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3273, 35, 120, 120, 108, 70, 70, 70, 56, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3273, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3274, 31, 52, 52, 71, 44, 34, 34, 40, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3274, 30, 164, 164, 35, 50, 35, 50, 35, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3274, 35, 92, 92, 66, 52, 52, 52, 66, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3274, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3275, 15, 38, 38, 17, 17, 23, 20, 22, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3275, 16, 44, 44, 20, 26, 28, 28, 42, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3275, 16, 46, 46, 34, 29, 23, 20, 26, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3275, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3276, 30, 94, 94, 61, 60, 64, 75, 75, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3276, 30, 95, 95, 48, 57, 48, 72, 81, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3276, 32, 117, 117, 48, 67, 54, 67, 48, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3276, 50, 143, 143, 78, 138, 123, 63, 83, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3276, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3277, 19, 58, 58, 46, 38, 34, 57, 27, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3277, 21, 55, 55, 25, 26, 33, 34, 39, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3277, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3278, 11, 41, 41, 17, 17, 21, 21, 23, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3278, 12, 35, 35, 20, 18, 24, 18, 24, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3278, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3279, 11, 41, 41, 17, 17, 21, 21, 23, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3279, 12, 35, 35, 20, 18, 24, 18, 24, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3279, 11, 30, 30, 16, 24, 29, 21, 18, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3280, 20, 67, 67, 27, 27, 34, 34, 39, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3280, 20, 53, 53, 30, 28, 38, 28, 38, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3280, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3281, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3281, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3281, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3285, 33, 81, 81, 39, 36, 96, 63, 86, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3286, 44, 105, 105, 51, 47, 126, 82, 113, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3286, 44, 135, 135, 108, 78, 73, 78, 122, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3287, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3287, 50, 153, 153, 123, 89, 83, 89, 138, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3288, 56, 147, 147, 81, 75, 176, 131, 159, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3288, 56, 170, 170, 137, 99, 92, 99, 153, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3294, 14, 45, 45, 24, 24, 26, 29, 24, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3294, 14, 48, 48, 29, 21, 26, 21, 26, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3295, 26, 76, 76, 40, 40, 45, 50, 40, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3295, 26, 81, 81, 50, 35, 45, 35, 45, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3296, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3296, 29, 90, 90, 56, 38, 50, 38, 50, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3297, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3297, 32, 98, 98, 61, 42, 54, 42, 54, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3298, 35, 113, 113, 66, 66, 80, 87, 66, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3298, 35, 120, 120, 87, 59, 80, 59, 73, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3299, 20, 66, 66, 52, 36, 52, 36, 38, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3300, 20, 66, 66, 58, 36, 36, 36, 48, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3301, 30, 94, 94, 84, 51, 51, 51, 69, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3301, 30, 94, 94, 75, 51, 75, 51, 54, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3302, 14, 45, 45, 24, 24, 26, 29, 24, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3302, 14, 48, 48, 29, 21, 26, 21, 26, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3303, 26, 76, 76, 40, 40, 45, 50, 40, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3303, 26, 81, 81, 50, 35, 45, 35, 45, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3304, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3304, 29, 90, 90, 56, 38, 50, 38, 50, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3305, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3305, 32, 98, 98, 61, 42, 54, 42, 54, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3306, 35, 113, 113, 66, 66, 80, 87, 66, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3306, 35, 120, 120, 87, 59, 80, 59, 73, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3307, 18, 60, 60, 52, 33, 33, 33, 43, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3307, 18, 60, 60, 47, 33, 47, 33, 34, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3308, 22, 61, 61, 50, 37, 41, 41, 52, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3308, 20, 57, 57, 46, 34, 38, 38, 48, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3308, 24, 66, 66, 54, 40, 44, 44, 56, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3309, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3309, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3309, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3310, 20, 57, 57, 36, 30, 52, 44, 38, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3310, 22, 61, 61, 39, 32, 56, 48, 41, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3310, 24, 66, 66, 42, 35, 61, 52, 44, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3311, 19, 62, 62, 49, 55, 23, 36, 23, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3311, 19, 62, 62, 49, 55, 23, 36, 23, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3311, 19, 62, 62, 49, 55, 23, 36, 23, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3312, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3312, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3312, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3314, 28, 86, 86, 55, 58, 36, 38, 33, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3314, 28, 86, 86, 55, 58, 36, 38, 33, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3314, 34, 102, 102, 66, 70, 43, 45, 39, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3315, 51, 148, 148, 96, 102, 62, 66, 56, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3315, 53, 154, 154, 100, 106, 64, 68, 58, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3315, 52, 151, 151, 98, 104, 63, 67, 57, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3316, 21, 61, 61, 39, 27, 37, 25, 48, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3316, 21, 61, 61, 39, 27, 37, 25, 48, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3316, 24, 69, 69, 44, 30, 42, 28, 54, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3317, 12, 33, 33, 17, 16, 33, 17, 28, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3317, 13, 35, 35, 18, 17, 35, 18, 30, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3317, 17, 43, 43, 23, 21, 45, 23, 38, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3318, 21, 55, 55, 33, 50, 25, 35, 39, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3318, 21, 69, 69, 54, 42, 50, 42, 31, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3318, 21, 65, 65, 35, 60, 54, 29, 37, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3318, 21, 80, 80, 41, 47, 42, 49, 33, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3318, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3318, 21, 65, 65, 39, 31, 44, 31, 52, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3319, 27, 98, 98, 49, 74, 47, 84, 49, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3319, 27, 81, 81, 49, 47, 84, 66, 74, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3320, 24, 73, 73, 44, 42, 66, 59, 76, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3320, 24, 73, 73, 76, 42, 59, 66, 44, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3320, 24, 105, 105, 44, 42, 66, 59, 44, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3321, 25, 111, 111, 56, 34, 34, 56, 16, 584); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3322, 28, 59, 59, 23, 26, 20, 45, 59, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3323, 25, 84, 84, 76, 51, 34, 61, 56, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3324, 35, 96, 96, 45, 77, 73, 91, 45, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3325, 54, 175, 175, 78, 127, 154, 148, 110, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3326, 27, 81, 81, 47, 52, 60, 55, 36, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3327, 22, 65, 65, 43, 32, 30, 32, 31, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3328, 15, 48, 48, 25, 25, 28, 31, 25, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3328, 15, 51, 51, 31, 22, 28, 22, 28, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3329, 25, 74, 74, 39, 39, 44, 49, 39, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3329, 25, 79, 79, 49, 34, 44, 34, 44, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3330, 39, 125, 125, 73, 73, 89, 97, 73, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3330, 39, 133, 133, 97, 65, 89, 65, 81, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3331, 43, 137, 137, 80, 80, 97, 106, 80, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3331, 43, 145, 145, 106, 72, 97, 72, 89, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3332, 49, 155, 155, 91, 91, 110, 120, 91, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3332, 49, 164, 164, 120, 81, 110, 81, 101, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3333, 24, 77, 77, 61, 42, 61, 42, 44, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3334, 24, 77, 77, 68, 42, 42, 42, 56, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3335, 28, 78, 78, 34, 43, 45, 76, 62, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3335, 29, 87, 87, 87, 73, 47, 56, 64, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3336, 13, 62, 62, 31, 20, 20, 31, 10, 584); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3336, 14, 41, 41, 31, 26, 21, 18, 24, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3337, 31, 94, 94, 71, 56, 47, 50, 67, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3340, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3340, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3340, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3340, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3340, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3340, 50, 128, 128, 103, 118, 33, 68, 33, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3341, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3341, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3341, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3341, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3342, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3342, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3342, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3342, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3342, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3342, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3343, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3343, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3343, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3343, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3343, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3343, 50, 152, 152, 123, 95, 113, 95, 69, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3344, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3344, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3344, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3344, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3344, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3344, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3345, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3345, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3345, 50, 142, 142, 101, 75, 101, 75, 104, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3345, 50, 153, 153, 112, 108, 78, 88, 59, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3345, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3345, 50, 142, 142, 89, 91, 104, 99, 73, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3346, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3346, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3346, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3346, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3346, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3346, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3347, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3347, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3347, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3347, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3347, 50, 146, 146, 113, 88, 73, 78, 105, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3347, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3348, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3348, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3348, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3348, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3348, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3348, 50, 128, 128, 103, 118, 33, 68, 33, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3349, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3349, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3349, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3349, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3349, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3350, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3350, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3350, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3350, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3350, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3350, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3351, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3351, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3351, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3351, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3351, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3351, 50, 152, 152, 123, 95, 113, 95, 69, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3352, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3352, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3352, 50, 142, 142, 101, 75, 101, 75, 104, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3352, 50, 153, 153, 112, 108, 78, 88, 59, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3352, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3352, 50, 142, 142, 89, 91, 104, 99, 73, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3353, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3353, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3353, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3353, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3353, 50, 146, 146, 113, 88, 73, 78, 105, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3353, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3358, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3358, 35, 97, 97, 34, 77, 34, 77, 33, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3358, 37, 121, 121, 96, 66, 81, 66, 81, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3359, 38, 92, 92, 45, 41, 109, 71, 98, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3359, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3359, 40, 130, 130, 104, 71, 88, 71, 87, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3360, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3360, 16, 54, 54, 37, 31, 31, 29, 46, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3361, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3361, 37, 102, 102, 36, 81, 36, 81, 35, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3361, 39, 118, 118, 83, 68, 68, 65, 106, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3362, 41, 112, 112, 39, 90, 39, 90, 38, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3362, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3362, 45, 135, 135, 95, 78, 78, 74, 122, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3363, 18, 48, 48, 27, 24, 22, 25, 31, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3363, 20, 78, 78, 49, 39, 40, 36, 45, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3364, 41, 112, 112, 39, 90, 39, 90, 38, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3364, 41, 127, 127, 85, 77, 73, 81, 93, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3364, 46, 167, 167, 107, 83, 86, 77, 98, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3365, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3365, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3365, 40, 130, 130, 104, 71, 88, 71, 87, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3366, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3366, 42, 115, 115, 40, 92, 40, 92, 39, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3366, 44, 142, 142, 114, 78, 96, 78, 95, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3367, 15, 42, 42, 23, 20, 19, 22, 26, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3367, 17, 57, 57, 39, 32, 32, 31, 49, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3368, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3368, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3368, 40, 121, 121, 85, 70, 70, 66, 109, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3369, 44, 120, 120, 41, 96, 41, 96, 41, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3369, 44, 135, 135, 91, 82, 78, 86, 100, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3369, 46, 137, 137, 97, 80, 80, 75, 124, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3370, 58, 166, 166, 129, 160, 117, 160, 64, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3370, 58, 175, 175, 118, 107, 101, 112, 130, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3370, 60, 176, 176, 125, 103, 103, 97, 161, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3371, 21, 55, 55, 31, 27, 25, 29, 35, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3371, 23, 88, 88, 56, 44, 45, 41, 51, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3372, 44, 120, 120, 41, 96, 41, 96, 41, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3372, 44, 135, 135, 91, 82, 78, 86, 100, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3372, 46, 167, 167, 107, 83, 86, 77, 98, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3373, 58, 166, 166, 129, 160, 117, 160, 64, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3373, 58, 175, 175, 118, 107, 101, 112, 130, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3373, 60, 215, 215, 138, 107, 111, 99, 127, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3393, 13, 40, 40, 23, 22, 26, 22, 23, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3394, 55, 172, 172, 115, 110, 129, 112, 118, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3396, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3397, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3397, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3397, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3397, 50, 138, 138, 85, 73, 85, 83, 63, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3397, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3397, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3399, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3399, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3400, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3400, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3401, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3401, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3402, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3402, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3403, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3403, 52, 179, 179, 106, 132, 65, 96, 127, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3404, 57, 173, 173, 139, 133, 71, 105, 150, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3404, 57, 195, 195, 116, 145, 71, 105, 139, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3405, 45, 144, 144, 113, 90, 97, 88, 97, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3405, 45, 152, 152, 104, 99, 88, 97, 89, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3406, 25, 71, 71, 31, 39, 41, 69, 56, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3407, 25, 76, 76, 61, 64, 44, 39, 39, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3407, 25, 69, 69, 39, 74, 54, 54, 29, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3408, 25, 64, 64, 41, 63, 34, 53, 37, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3408, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3409, 25, 74, 74, 59, 84, 39, 39, 34, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3409, 25, 79, 79, 64, 71, 29, 46, 29, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3410, 25, 79, 79, 24, 39, 24, 39, 34, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3410, 25, 86, 86, 49, 35, 49, 35, 38, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3411, 25, 81, 81, 64, 69, 36, 41, 46, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3411, 25, 76, 76, 54, 84, 34, 49, 49, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3412, 25, 79, 79, 56, 84, 56, 49, 24, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3412, 25, 73, 73, 69, 89, 36, 38, 31, 305); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3413, 14, 45, 45, 22, 21, 19, 21, 18, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3413, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3413, 16, 50, 50, 25, 23, 21, 23, 20, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3413, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3413, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3414, 23, 64, 64, 52, 38, 43, 43, 54, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3417, 48, 137, 137, 123, 79, 79, 89, 113, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3417, 48, 123, 123, 113, 113, 55, 127, 89, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3417, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3418, 54, 153, 153, 137, 89, 89, 100, 127, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3418, 54, 137, 137, 127, 127, 62, 143, 100, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3418, 54, 180, 180, 164, 110, 94, 116, 83, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3419, 38, 99, 99, 109, 58, 45, 102, 84, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3419, 38, 99, 99, 98, 78, 45, 102, 76, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3420, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3421, 100, 326, 326, 225, 215, 191, 211, 193, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3422, 37, 89, 89, 77, 44, 44, 51, 70, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3422, 37, 108, 108, 96, 62, 62, 70, 88, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3423, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3423, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3424, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3424, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3425, 38, 99, 99, 109, 58, 45, 102, 84, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3425, 38, 99, 99, 98, 78, 45, 102, 76, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3426, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3426, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3427, 55, 139, 139, 156, 83, 63, 145, 120, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3427, 55, 139, 139, 140, 111, 63, 145, 108, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3428, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3428, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3429, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3429, 39, 113, 113, 100, 65, 65, 73, 93, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3430, 51, 160, 160, 125, 94, 74, 84, 69, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3430, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3431, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3431, 56, 158, 158, 142, 92, 92, 103, 131, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3432, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3432, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3433, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3433, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3434, 29, 78, 78, 76, 61, 35, 79, 59, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3434, 29, 78, 78, 85, 46, 35, 79, 65, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3435, 33, 87, 87, 86, 69, 39, 89, 67, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3435, 33, 87, 87, 96, 51, 39, 89, 74, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3436, 51, 130, 130, 130, 103, 59, 135, 100, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3436, 51, 130, 130, 145, 77, 59, 135, 112, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3437, 56, 142, 142, 142, 113, 64, 148, 110, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3437, 56, 142, 142, 159, 84, 64, 148, 122, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3438, 5, 23, 23, 14, 11, 10, 10, 10, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3438, 5, 19, 19, 10, 9, 16, 10, 14, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3439, 40, 112, 112, 67, 67, 87, 87, 87, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3439, 40, 147, 147, 92, 69, 92, 77, 73, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3439, 40, 140, 140, 71, 107, 67, 123, 71, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3439, 40, 216, 216, 45, 65, 45, 65, 45, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3440, 28, 73, 73, 48, 31, 59, 43, 51, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3440, 28, 78, 78, 45, 62, 51, 62, 34, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3440, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3441, 58, 158, 158, 101, 107, 124, 112, 72, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3441, 59, 178, 178, 114, 91, 150, 126, 61, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3441, 60, 181, 181, 122, 128, 158, 134, 86, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3442, 30, 89, 89, 48, 84, 75, 39, 51, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3442, 30, 110, 110, 57, 57, 54, 54, 42, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3443, 43, 111, 111, 93, 54, 93, 54, 50, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3443, 43, 120, 120, 72, 54, 76, 59, 50, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3443, 43, 107, 107, 72, 46, 89, 63, 76, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3443, 44, 122, 122, 100, 144, 64, 64, 56, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3444, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3445, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3446, 17, 51, 51, 36, 28, 24, 24, 38, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3447, 17, 50, 50, 40, 29, 33, 33, 41, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3448, 15, 42, 42, 26, 19, 19, 19, 28, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3448, 15, 46, 46, 32, 25, 22, 22, 34, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3449, 28, 78, 78, 57, 43, 37, 37, 59, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3449, 30, 83, 83, 60, 45, 39, 39, 63, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3450, 37, 101, 101, 73, 55, 47, 47, 77, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3450, 39, 105, 105, 77, 58, 50, 50, 81, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3451, 58, 187, 187, 165, 107, 83, 95, 141, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3451, 58, 187, 187, 165, 107, 83, 95, 141, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3452, 17, 45, 45, 29, 24, 28, 28, 41, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3453, 31, 73, 73, 50, 40, 47, 47, 71, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3454, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3455, 60, 163, 163, 134, 92, 134, 122, 158, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3456, 17, 48, 48, 33, 22, 24, 22, 26, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3457, 15, 42, 42, 26, 19, 19, 19, 28, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3457, 15, 45, 45, 35, 26, 29, 29, 37, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3458, 15, 43, 43, 29, 20, 22, 20, 23, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3458, 15, 43, 43, 29, 20, 22, 20, 23, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3459, 17, 46, 46, 26, 23, 21, 24, 29, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3460, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3461, 21, 59, 59, 48, 35, 39, 39, 50, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3462, 18, 48, 48, 31, 22, 22, 22, 33, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3462, 20, 59, 59, 42, 32, 28, 28, 44, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3463, 32, 88, 88, 64, 48, 42, 42, 67, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3463, 34, 114, 114, 98, 64, 51, 58, 85, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3464, 43, 141, 141, 123, 80, 63, 72, 106, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3464, 43, 141, 141, 123, 80, 63, 72, 106, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3465, 58, 158, 158, 153, 107, 95, 95, 141, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3465, 59, 190, 190, 167, 108, 85, 97, 144, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3466, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3467, 35, 82, 82, 56, 45, 52, 52, 80, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3468, 45, 125, 125, 102, 70, 102, 93, 120, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3469, 58, 158, 158, 83, 72, 124, 112, 136, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3469, 58, 158, 158, 72, 83, 112, 124, 136, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3469, 58, 158, 158, 130, 89, 130, 118, 153, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3470, 21, 61, 61, 44, 33, 29, 29, 46, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3471, 17, 46, 46, 29, 21, 21, 21, 31, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3471, 18, 48, 48, 31, 22, 22, 22, 33, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3471, 19, 51, 51, 32, 23, 23, 23, 34, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3472, 20, 57, 57, 46, 34, 38, 38, 48, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3472, 18, 50, 50, 34, 23, 25, 23, 27, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3473, 21, 57, 57, 39, 26, 29, 26, 31, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3474, 22, 57, 57, 37, 56, 30, 47, 33, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3474, 22, 57, 57, 37, 56, 30, 47, 33, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3475, 22, 67, 67, 32, 34, 32, 34, 37, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3475, 22, 68, 68, 51, 34, 51, 34, 59, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3476, 37, 119, 119, 103, 77, 66, 59, 87, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3477, 25, 75, 75, 52, 45, 39, 35, 46, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3478, 37, 115, 115, 92, 64, 77, 64, 104, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3479, 25, 64, 64, 41, 63, 34, 53, 37, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3480, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3480, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3482, 25, 79, 79, 59, 36, 21, 36, 39, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3483, 21, 59, 59, 34, 32, 34, 32, 39, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3484, 21, 59, 59, 34, 32, 34, 32, 39, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3485, 21, 59, 59, 34, 32, 34, 32, 39, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3486, 25, 69, 69, 51, 49, 31, 49, 38, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3488, 24, 76, 76, 56, 35, 20, 35, 37, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3489, 32, 98, 98, 74, 45, 26, 45, 48, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3494, 15, 45, 45, 32, 32, 29, 29, 25, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3495, 36, 109, 109, 82, 68, 61, 61, 68, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3496, 26, 71, 71, 58, 35, 58, 35, 32, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3496, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3497, 34, 103, 103, 98, 44, 81, 44, 81, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3498, 41, 123, 123, 118, 52, 97, 52, 97, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3499, 43, 128, 128, 123, 54, 102, 54, 102, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3499, 43, 115, 115, 102, 67, 50, 84, 119, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3500, 49, 145, 145, 140, 61, 115, 61, 115, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3500, 49, 145, 145, 140, 86, 66, 105, 145, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3501, 64, 109, 109, 98, 60, 72, 85, 149, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3501, 64, 141, 141, 130, 92, 92, 117, 181, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3502, 25, 74, 74, 56, 34, 29, 36, 48, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3503, 61, 105, 105, 94, 57, 69, 81, 142, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3503, 61, 135, 135, 124, 87, 87, 112, 173, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3504, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3504, 27, 79, 79, 63, 44, 63, 57, 74, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3505, 47, 153, 153, 134, 87, 68, 78, 115, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3505, 47, 177, 177, 95, 90, 93, 88, 78, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3506, 47, 163, 163, 139, 96, 78, 115, 98, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3506, 47, 130, 130, 78, 92, 78, 92, 97, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3507, 36, 127, 127, 107, 74, 61, 89, 76, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3507, 36, 102, 102, 82, 57, 82, 75, 97, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3508, 50, 163, 163, 143, 93, 73, 83, 123, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3508, 50, 153, 153, 123, 89, 83, 89, 138, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3509, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3509, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3510, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3510, 25, 76, 76, 55, 42, 61, 56, 66, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3511, 47, 106, 106, 97, 68, 68, 87, 134, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3511, 47, 135, 135, 99, 75, 111, 101, 120, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3512, 52, 169, 169, 106, 117, 132, 122, 86, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3512, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3513, 35, 89, 89, 70, 59, 45, 38, 52, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3514, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3514, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3515, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3515, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3516, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3516, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3517, 46, 113, 113, 90, 76, 58, 49, 67, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3517, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3517, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3518, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3518, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3518, 49, 140, 140, 115, 120, 81, 71, 71, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3519, 34, 86, 86, 68, 58, 44, 37, 51, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3520, 37, 115, 115, 70, 84, 70, 96, 77, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3520, 37, 115, 115, 70, 84, 70, 96, 77, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3521, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3521, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3522, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3522, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3523, 46, 113, 113, 90, 76, 58, 49, 67, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3523, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3523, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3524, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3524, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3524, 49, 140, 140, 115, 120, 81, 71, 71, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3525, 46, 125, 125, 85, 62, 58, 62, 60, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3525, 46, 125, 125, 85, 62, 58, 62, 60, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3525, 49, 169, 169, 145, 100, 81, 120, 102, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3526, 60, 205, 205, 176, 121, 98, 146, 123, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3527, 57, 144, 144, 105, 82, 82, 82, 105, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3527, 57, 157, 157, 121, 99, 105, 105, 105, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3527, 57, 150, 150, 99, 133, 133, 76, 122, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3528, 53, 125, 125, 91, 71, 77, 77, 77, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3528, 55, 151, 151, 117, 96, 101, 101, 101, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3529, 61, 167, 167, 129, 106, 112, 112, 112, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3529, 61, 167, 167, 129, 106, 112, 112, 112, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3530, 53, 129, 129, 66, 87, 66, 103, 77, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3530, 57, 173, 173, 105, 128, 105, 145, 116, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3531, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3531, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3532, 56, 162, 162, 125, 97, 81, 86, 117, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3532, 56, 192, 192, 165, 113, 92, 137, 115, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3533, 58, 199, 199, 170, 117, 95, 141, 119, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3534, 57, 138, 138, 111, 93, 71, 59, 82, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3534, 59, 166, 166, 138, 144, 97, 85, 85, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3535, 49, 143, 143, 110, 86, 71, 76, 103, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3536, 39, 108, 108, 73, 54, 50, 54, 51, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3537, 43, 126, 126, 97, 76, 63, 67, 91, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3538, 63, 181, 181, 141, 109, 90, 96, 131, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3539, 56, 147, 147, 97, 131, 131, 75, 120, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3539, 56, 192, 192, 165, 113, 92, 137, 115, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3540, 43, 118, 118, 80, 59, 54, 59, 56, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3540, 45, 111, 111, 57, 75, 57, 88, 66, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3540, 47, 137, 137, 106, 83, 68, 73, 99, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3541, 57, 153, 153, 105, 76, 71, 76, 73, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3541, 57, 165, 165, 128, 99, 82, 88, 119, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3541, 57, 157, 157, 121, 99, 105, 105, 105, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3542, 60, 200, 200, 187, 140, 146, 146, 122, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3543, 53, 154, 154, 119, 92, 77, 82, 111, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3543, 55, 167, 167, 101, 123, 101, 140, 112, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3544, 59, 178, 178, 108, 132, 108, 150, 120, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3544, 61, 224, 224, 185, 142, 124, 130, 151, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3545, 56, 170, 170, 103, 125, 103, 142, 114, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3545, 56, 147, 147, 97, 131, 131, 75, 120, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3546, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3546, 60, 181, 181, 140, 140, 140, 140, 128, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3547, 52, 123, 123, 90, 70, 75, 75, 75, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3547, 56, 162, 162, 125, 97, 81, 86, 117, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3548, 55, 134, 134, 134, 74, 74, 74, 35, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3548, 57, 144, 144, 105, 82, 82, 82, 105, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3549, 57, 138, 138, 111, 93, 71, 59, 82, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3549, 57, 161, 161, 133, 139, 93, 82, 82, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3549, 57, 144, 144, 105, 82, 82, 82, 105, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3550, 45, 138, 138, 84, 102, 84, 115, 93, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3550, 47, 137, 137, 106, 83, 68, 73, 99, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3551, 34, 95, 95, 64, 47, 44, 47, 45, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3552, 46, 135, 135, 104, 81, 67, 72, 97, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3553, 61, 172, 172, 142, 148, 100, 87, 87, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3553, 61, 175, 175, 136, 106, 87, 94, 127, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3553, 61, 167, 167, 129, 106, 112, 112, 112, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3554, 55, 129, 129, 95, 74, 79, 79, 79, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3554, 57, 173, 173, 105, 128, 105, 145, 116, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3555, 39, 113, 113, 93, 97, 65, 58, 58, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3555, 39, 121, 121, 93, 93, 93, 93, 85, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3556, 47, 144, 144, 87, 106, 87, 120, 97, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3557, 47, 144, 144, 111, 111, 111, 111, 101, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3558, 47, 149, 149, 115, 97, 97, 97, 115, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3559, 50, 163, 163, 93, 103, 120, 103, 146, 589); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3559, 50, 155, 155, 143, 113, 83, 113, 71, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3559, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3560, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3561, 66, 225, 225, 183, 134, 114, 121, 150, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3562, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3563, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3564, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3565, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3566, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3567, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3568, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3569, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3570, 57, 281, 281, 128, 76, 128, 76, 93, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3570, 57, 173, 173, 116, 122, 150, 128, 82, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3571, 47, 144, 144, 139, 115, 87, 97, 64, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3571, 47, 154, 154, 98, 113, 98, 122, 62, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3572, 56, 170, 170, 165, 137, 103, 114, 75, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3572, 56, 182, 182, 115, 133, 115, 145, 73, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3573, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3573, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3574, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3574, 46, 139, 139, 91, 90, 96, 113, 113, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3575, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3575, 24, 71, 71, 44, 47, 54, 49, 32, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3575, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3576, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3576, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3577, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3577, 39, 90, 90, 81, 58, 58, 73, 112, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3578, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3579, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3579, 44, 134, 134, 87, 86, 92, 108, 108, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3580, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3580, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3580, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3580, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3581, 43, 150, 150, 102, 93, 127, 76, 67, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3581, 43, 111, 111, 102, 175, 93, 59, 80, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3581, 43, 145, 145, 115, 89, 106, 89, 102, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3582, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3582, 43, 145, 145, 80, 89, 80, 102, 80, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3582, 43, 283, 283, 24, 24, 50, 110, 63, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3583, 43, 115, 115, 132, 119, 63, 63, 84, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3583, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3583, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3584, 43, 111, 111, 84, 50, 80, 46, 54, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3584, 43, 124, 124, 97, 63, 93, 59, 67, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3584, 43, 137, 137, 110, 76, 106, 80, 80, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3585, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3585, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3585, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3586, 27, 78, 78, 49, 46, 57, 49, 57, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3587, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3588, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3589, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3590, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3590, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3590, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3591, 35, 110, 110, 87, 94, 49, 56, 63, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3592, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3592, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3592, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3593, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3593, 35, 99, 99, 70, 77, 87, 77, 98, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3593, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3594, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3594, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3595, 25, 74, 74, 36, 39, 59, 54, 49, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3595, 25, 81, 81, 54, 61, 59, 64, 39, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3596, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3597, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3598, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3599, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3599, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3599, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3600, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3600, 35, 96, 96, 108, 98, 52, 52, 70, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3600, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3601, 39, 125, 125, 100, 69, 97, 73, 73, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3601, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3601, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3602, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3602, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3602, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3602, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3603, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3603, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3604, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3604, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3605, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3605, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3606, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3606, 32, 104, 104, 69, 80, 70, 83, 66, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3607, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3607, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3608, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3608, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3608, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3609, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3609, 35, 98, 98, 62, 58, 73, 63, 73, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3609, 35, 98, 98, 61, 73, 63, 73, 58, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3610, 25, 71, 71, 36, 39, 36, 46, 54, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3610, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3611, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3611, 36, 102, 102, 78, 64, 68, 68, 68, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3612, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3612, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3612, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3613, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3614, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3614, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3614, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3615, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3615, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3615, 34, 84, 84, 60, 47, 51, 51, 51, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3616, 38, 107, 107, 65, 66, 79, 79, 64, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3616, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3617, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3617, 31, 89, 89, 62, 68, 78, 68, 87, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3617, 33, 114, 114, 77, 74, 66, 72, 67, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3618, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3618, 34, 97, 97, 68, 75, 85, 75, 95, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3618, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3619, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3619, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3619, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3620, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3620, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3621, 35, 103, 103, 108, 59, 84, 94, 63, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3621, 35, 103, 103, 56, 98, 87, 45, 59, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3621, 35, 110, 110, 87, 84, 45, 66, 94, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3622, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3622, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3623, 35, 99, 99, 63, 66, 77, 70, 45, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3623, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3624, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3625, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3625, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3625, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3626, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3626, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3626, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3627, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3627, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3627, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3628, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3628, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3628, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3629, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3629, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3629, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3630, 43, 111, 111, 93, 93, 67, 67, 63, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3630, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3631, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3631, 29, 75, 75, 73, 41, 41, 41, 21, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3631, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3631, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3631, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3632, 44, 131, 131, 122, 73, 122, 73, 69, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3633, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3633, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3634, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3635, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3636, 31, 111, 111, 53, 65, 78, 93, 66, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3637, 27, 86, 86, 76, 47, 47, 47, 63, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3638, 43, 132, 132, 106, 115, 59, 67, 76, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3638, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3639, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3639, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3640, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3641, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3642, 42, 92, 92, 57, 133, 57, 95, 45, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3642, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3642, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3643, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3643, 42, 134, 134, 91, 99, 45, 45, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3643, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3644, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3645, 27, 84, 84, 49, 49, 44, 44, 52, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3646, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3646, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3646, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3647, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3647, 42, 117, 117, 95, 137, 62, 62, 53, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3647, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3648, 44, 122, 122, 82, 113, 82, 126, 86, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3649, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3649, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3649, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3650, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3650, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3650, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3650, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3651, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3651, 34, 90, 90, 51, 98, 71, 71, 37, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3651, 34, 110, 110, 64, 64, 78, 85, 64, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3652, 31, 83, 83, 68, 68, 50, 50, 47, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3652, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3652, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3653, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3653, 18, 81, 81, 36, 24, 36, 24, 33, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3653, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3654, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3654, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3654, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3655, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3655, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3655, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3656, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3656, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3656, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3657, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3657, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3657, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3658, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3659, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3659, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3660, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3660, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3661, 26, 118, 118, 50, 37, 58, 40, 37, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3662, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3662, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3663, 26, 86, 86, 55, 55, 42, 42, 61, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3664, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3664, 28, 73, 73, 71, 40, 40, 40, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3664, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3664, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3664, 28, 98, 98, 71, 48, 65, 48, 59, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3665, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3665, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3665, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3666, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3666, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3666, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3667, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3667, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3667, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3668, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3668, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3668, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3669, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3669, 34, 103, 103, 85, 64, 88, 68, 44, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3669, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3670, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3670, 24, 71, 71, 54, 42, 37, 37, 73, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3670, 24, 76, 76, 49, 42, 64, 42, 64, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3671, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3671, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3672, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3672, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3673, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3673, 35, 113, 113, 73, 73, 56, 56, 80, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3674, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3674, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3674, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3675, 39, 109, 109, 65, 65, 65, 65, 65, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3675, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3675, 39, 125, 125, 81, 81, 61, 61, 89, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3676, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3676, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3676, 41, 188, 188, 150, 101, 97, 73, 101, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3677, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3677, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3678, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3678, 43, 175, 175, 70, 70, 85, 85, 78, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3679, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3679, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3680, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3680, 43, 120, 120, 80, 110, 80, 123, 84, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3681, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3682, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3683, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3683, 43, 124, 124, 132, 72, 84, 72, 84, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3684, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3685, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3686, 30, 80, 80, 60, 60, 54, 54, 45, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3687, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3688, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3688, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3689, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3689, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3689, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3690, 43, 126, 126, 76, 76, 127, 119, 89, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3690, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3691, 45, 125, 125, 102, 147, 66, 66, 57, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3691, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3692, 30, 92, 92, 60, 51, 78, 51, 78, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3693, 46, 118, 118, 99, 99, 72, 72, 67, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3693, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3694, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3694, 29, 101, 101, 73, 50, 67, 50, 61, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3695, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3696, 26, 81, 81, 48, 48, 42, 42, 50, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3697, 42, 125, 125, 91, 137, 91, 78, 36, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3697, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3697, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3698, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3698, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3699, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3699, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3699, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3700, 26, 76, 76, 45, 45, 45, 45, 45, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3701, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3701, 43, 102, 102, 80, 132, 72, 132, 41, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3702, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3703, 34, 117, 117, 85, 58, 78, 58, 71, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3703, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3704, 42, 117, 117, 91, 70, 62, 62, 125, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3704, 42, 109, 109, 91, 91, 66, 66, 62, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3704, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3705, 45, 125, 125, 84, 115, 84, 129, 88, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3706, 44, 113, 113, 86, 86, 78, 78, 64, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3706, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3706, 44, 131, 131, 126, 56, 104, 56, 104, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3707, 42, 117, 117, 112, 78, 70, 70, 104, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3707, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3707, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3707, 42, 142, 142, 104, 70, 95, 70, 87, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3708, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3708, 33, 107, 107, 63, 63, 76, 82, 63, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3709, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3709, 29, 78, 78, 50, 41, 73, 61, 53, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3709, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3710, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3710, 17, 77, 77, 34, 23, 34, 23, 31, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3710, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3711, 26, 66, 66, 37, 35, 48, 35, 48, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3711, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3711, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3712, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3712, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3712, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3713, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3713, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3713, 32, 99, 99, 54, 35, 29, 35, 32, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3714, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3714, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3714, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3715, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3716, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3717, 42, 125, 125, 57, 60, 70, 74, 49, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3717, 42, 163, 163, 57, 36, 57, 41, 36, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3717, 42, 121, 121, 78, 70, 74, 74, 116, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3717, 42, 142, 142, 78, 87, 78, 99, 78, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3717, 42, 277, 277, 24, 24, 49, 108, 62, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3718, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3718, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3719, 42, 109, 109, 83, 49, 78, 45, 53, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3719, 42, 121, 121, 95, 62, 91, 57, 66, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3719, 42, 134, 134, 108, 74, 104, 78, 78, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3719, 42, 96, 96, 78, 66, 57, 66, 41, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3719, 42, 117, 117, 99, 87, 70, 87, 45, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3720, 41, 110, 110, 126, 114, 60, 60, 81, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3720, 42, 121, 121, 74, 74, 62, 62, 95, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3720, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3720, 42, 113, 113, 74, 99, 99, 57, 91, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3720, 43, 136, 136, 91, 106, 93, 110, 87, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3721, 42, 146, 146, 99, 91, 125, 74, 66, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3721, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3721, 42, 109, 109, 99, 171, 91, 57, 78, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3721, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3721, 42, 142, 142, 112, 87, 104, 87, 99, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3722, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3723, 47, 172, 172, 144, 134, 64, 64, 59, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3723, 48, 166, 166, 94, 127, 118, 99, 51, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3723, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3723, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3723, 47, 172, 172, 111, 97, 59, 97, 106, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3724, 52, 189, 189, 158, 148, 70, 70, 65, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3724, 54, 186, 186, 105, 143, 132, 110, 56, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3724, 55, 183, 183, 167, 107, 107, 107, 85, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3724, 52, 174, 174, 158, 106, 91, 112, 80, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3724, 52, 189, 189, 122, 106, 65, 106, 117, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3725, 22, 61, 61, 45, 28, 43, 26, 30, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3725, 22, 59, 59, 34, 37, 45, 41, 26, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3725, 22, 68, 68, 52, 34, 50, 32, 37, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3725, 22, 66, 66, 41, 43, 50, 45, 30, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3725, 22, 66, 66, 40, 40, 48, 48, 39, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3726, 47, 135, 135, 87, 78, 83, 83, 130, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3726, 47, 158, 158, 87, 97, 87, 111, 87, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3726, 48, 145, 145, 95, 94, 100, 118, 118, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3726, 48, 137, 137, 118, 89, 99, 99, 123, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3726, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3727, 53, 150, 150, 98, 87, 92, 92, 145, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3727, 53, 177, 177, 98, 108, 98, 124, 98, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3727, 54, 162, 162, 106, 105, 111, 132, 132, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3727, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3727, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3728, 42, 121, 121, 78, 70, 74, 74, 116, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3728, 42, 109, 109, 91, 66, 74, 74, 95, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3728, 42, 121, 121, 104, 78, 87, 87, 108, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3728, 42, 99, 99, 54, 53, 62, 74, 74, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3728, 42, 128, 128, 83, 83, 88, 104, 104, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3729, 42, 113, 113, 88, 70, 62, 78, 101, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3729, 42, 117, 117, 72, 73, 87, 87, 70, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3729, 42, 116, 116, 73, 87, 74, 87, 68, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3729, 42, 115, 115, 73, 68, 87, 74, 87, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3729, 42, 132, 132, 90, 85, 111, 91, 104, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3730, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3730, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3730, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3730, 39, 110, 110, 75, 63, 61, 61, 69, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3730, 39, 126, 126, 98, 79, 85, 77, 85, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3731, 37, 104, 104, 77, 99, 55, 77, 51, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3731, 37, 104, 104, 77, 99, 55, 77, 51, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3731, 38, 122, 122, 83, 90, 41, 41, 37, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3731, 39, 117, 117, 67, 71, 61, 61, 62, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3731, 39, 133, 133, 90, 86, 77, 85, 78, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3732, 38, 118, 118, 94, 102, 52, 60, 68, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3732, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3732, 38, 88, 88, 52, 140, 41, 52, 71, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3732, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3732, 38, 107, 107, 79, 102, 56, 79, 52, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3733, 59, 184, 184, 150, 102, 97, 114, 179, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3734, 37, 101, 101, 88, 59, 44, 73, 103, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3734, 37, 119, 119, 70, 66, 77, 107, 92, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3735, 26, 60, 60, 32, 29, 66, 32, 55, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3735, 28, 73, 73, 43, 40, 79, 45, 68, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3735, 30, 86, 86, 54, 51, 93, 60, 81, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3736, 27, 73, 73, 60, 44, 49, 49, 63, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3736, 27, 87, 87, 62, 60, 44, 49, 34, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3737, 39, 109, 109, 67, 58, 67, 65, 50, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3738, 54, 164, 164, 132, 95, 89, 95, 148, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3738, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3738, 54, 353, 353, 29, 29, 62, 137, 78, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3739, 59, 178, 178, 144, 104, 97, 104, 161, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3739, 59, 166, 166, 144, 108, 120, 120, 150, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3739, 59, 385, 385, 32, 32, 67, 150, 85, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3740, 55, 150, 150, 123, 85, 123, 112, 145, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3740, 55, 206, 206, 116, 99, 126, 115, 67, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3741, 35, 110, 110, 87, 63, 59, 63, 98, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3741, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3742, 54, 148, 148, 73, 100, 73, 121, 127, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3742, 54, 191, 191, 78, 110, 89, 110, 78, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3742, 54, 358, 358, 35, 35, 105, 170, 83, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3743, 33, 120, 120, 49, 69, 56, 69, 49, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3744, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3744, 33, 101, 101, 82, 92, 36, 59, 36, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3745, 39, 109, 109, 67, 58, 67, 65, 50, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3746, 30, 86, 86, 51, 51, 66, 66, 66, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3746, 30, 140, 140, 63, 42, 69, 48, 63, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3747, 30, 74, 74, 45, 69, 33, 48, 54, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3747, 32, 101, 101, 70, 144, 51, 58, 35, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3748, 54, 153, 153, 106, 115, 82, 128, 137, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3748, 54, 186, 186, 116, 116, 94, 94, 62, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3748, 54, 148, 148, 78, 132, 116, 100, 94, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3749, 34, 97, 97, 78, 54, 78, 71, 92, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3749, 38, 113, 113, 73, 77, 47, 50, 43, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3749, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3750, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3750, 54, 156, 156, 102, 108, 65, 69, 59, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3750, 54, 148, 148, 78, 132, 116, 100, 94, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3751, 55, 161, 161, 123, 101, 90, 90, 101, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3751, 55, 126, 126, 63, 63, 96, 85, 79, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3752, 53, 156, 156, 82, 82, 108, 87, 71, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3752, 53, 187, 187, 96, 112, 100, 116, 78, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3753, 60, 199, 199, 116, 128, 164, 134, 92, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3753, 60, 210, 210, 108, 126, 113, 131, 87, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3754, 23, 70, 70, 49, 37, 49, 37, 50, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3754, 23, 84, 84, 70, 49, 40, 59, 50, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3755, 39, 112, 112, 79, 59, 79, 59, 82, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3755, 39, 109, 109, 85, 57, 65, 57, 65, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3755, 39, 137, 137, 116, 80, 65, 97, 82, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3756, 59, 165, 165, 118, 87, 118, 87, 121, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3756, 59, 161, 161, 126, 84, 97, 84, 97, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3756, 59, 202, 202, 173, 119, 97, 144, 121, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3757, 44, 105, 105, 51, 47, 126, 82, 113, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3757, 44, 122, 122, 100, 69, 100, 91, 117, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3758, 25, 79, 79, 61, 39, 61, 39, 47, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3758, 26, 63, 63, 37, 97, 29, 37, 50, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3758, 27, 79, 79, 60, 41, 47, 41, 47, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3759, 55, 128, 128, 101, 167, 90, 167, 52, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3759, 55, 189, 189, 173, 112, 145, 112, 134, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3760, 35, 96, 96, 84, 56, 42, 70, 98, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3760, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3761, 56, 158, 158, 114, 181, 69, 103, 103, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3762, 49, 174, 174, 145, 73, 125, 73, 92, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3763, 39, 137, 137, 85, 85, 69, 69, 46, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3764, 33, 91, 91, 66, 49, 43, 43, 69, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3764, 33, 101, 101, 69, 59, 76, 59, 72, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3765, 55, 145, 145, 107, 79, 68, 68, 112, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3765, 55, 161, 161, 112, 96, 123, 96, 118, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3766, 56, 175, 175, 176, 170, 131, 125, 103, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3767, 59, 172, 172, 132, 156, 97, 114, 138, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3768, 31, 83, 83, 68, 50, 56, 56, 71, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3768, 31, 80, 80, 47, 44, 87, 50, 75, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3768, 34, 114, 114, 88, 54, 75, 51, 95, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3769, 55, 172, 172, 115, 110, 129, 112, 118, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3769, 55, 167, 167, 134, 145, 74, 85, 96, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3770, 58, 173, 173, 136, 97, 124, 101, 124, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3770, 58, 174, 174, 141, 109, 130, 109, 79, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3771, 57, 161, 161, 145, 93, 93, 105, 133, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3771, 57, 167, 167, 122, 185, 122, 105, 48, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3772, 37, 108, 108, 74, 80, 58, 89, 96, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3773, 34, 110, 110, 73, 70, 81, 71, 75, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3773, 33, 101, 101, 82, 92, 36, 59, 36, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3773, 35, 92, 92, 77, 56, 63, 63, 80, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3774, 46, 146, 146, 97, 93, 108, 95, 99, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3774, 48, 320, 320, 31, 31, 94, 151, 75, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3775, 23, 63, 63, 38, 32, 32, 30, 52, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3775, 23, 59, 59, 29, 27, 68, 45, 61, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3776, 40, 103, 103, 63, 53, 53, 49, 87, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3776, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3777, 60, 176, 176, 125, 103, 103, 97, 161, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3777, 60, 157, 157, 86, 80, 188, 140, 170, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3778, 55, 161, 161, 96, 96, 85, 85, 101, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3778, 55, 156, 156, 96, 74, 107, 74, 129, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3779, 54, 168, 168, 116, 89, 83, 89, 101, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3779, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3779, 54, 148, 148, 100, 78, 132, 78, 94, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3780, 56, 130, 130, 75, 64, 69, 69, 125, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3780, 56, 158, 158, 103, 92, 97, 97, 153, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3780, 56, 181, 181, 106, 103, 106, 153, 100, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3781, 57, 207, 207, 133, 116, 71, 116, 128, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3781, 57, 190, 190, 173, 111, 111, 111, 88, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3782, 56, 198, 198, 103, 103, 97, 97, 75, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3782, 56, 153, 153, 114, 148, 81, 114, 75, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3782, 56, 164, 164, 148, 114, 86, 114, 142, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3783, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3783, 37, 119, 119, 86, 66, 66, 77, 68, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3784, 55, 139, 139, 90, 74, 134, 112, 96, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3784, 55, 172, 172, 126, 96, 96, 112, 99, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3785, 45, 129, 129, 111, 84, 93, 93, 115, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3785, 45, 137, 137, 111, 86, 102, 86, 62, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3785, 48, 168, 168, 180, 79, 84, 70, 77, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3786, 53, 150, 150, 156, 130, 82, 98, 114, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3786, 53, 156, 156, 119, 98, 87, 87, 98, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3787, 53, 177, 177, 82, 103, 87, 103, 55, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3787, 53, 182, 182, 108, 135, 66, 98, 130, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3788, 60, 199, 199, 92, 116, 98, 116, 62, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3788, 60, 205, 205, 122, 152, 74, 110, 146, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3789, 54, 153, 153, 94, 94, 78, 78, 121, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3789, 54, 186, 186, 159, 109, 89, 132, 111, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3790, 57, 190, 190, 162, 111, 93, 93, 76, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3791, 55, 167, 167, 134, 129, 68, 101, 145, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3792, 62, 187, 187, 151, 145, 76, 114, 163, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3793, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3793, 36, 116, 116, 77, 74, 86, 75, 79, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3793, 37, 115, 115, 81, 166, 59, 66, 40, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3794, 37, 123, 123, 96, 59, 81, 55, 103, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3794, 37, 101, 101, 88, 59, 44, 73, 103, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3795, 30, 92, 92, 51, 57, 68, 62, 66, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3795, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3795, 34, 100, 100, 68, 74, 53, 82, 88, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3796, 54, 159, 159, 89, 100, 118, 108, 116, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3796, 54, 159, 159, 46, 78, 46, 78, 67, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3796, 54, 153, 153, 106, 115, 82, 128, 137, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3797, 57, 183, 183, 106, 74, 106, 74, 80, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3797, 57, 198, 198, 213, 93, 99, 82, 91, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3798, 57, 144, 144, 98, 82, 76, 82, 72, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3798, 57, 144, 144, 82, 162, 116, 116, 59, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3799, 46, 159, 159, 85, 88, 108, 104, 76, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3799, 48, 166, 166, 126, 123, 94, 103, 76, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3800, 44, 135, 135, 95, 196, 69, 78, 47, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3800, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3801, 59, 184, 184, 120, 120, 120, 120, 120, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3801, 60, 193, 193, 134, 122, 110, 122, 182, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3802, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3802, 43, 115, 115, 102, 67, 50, 84, 119, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3803, 21, 51, 51, 27, 25, 54, 27, 46, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3803, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3803, 24, 64, 64, 37, 35, 68, 40, 59, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3804, 32, 88, 88, 61, 51, 42, 51, 70, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3804, 33, 104, 104, 75, 72, 53, 59, 40, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3804, 32, 98, 98, 67, 58, 74, 58, 70, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3805, 44, 140, 140, 91, 91, 91, 91, 91, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3806, 54, 203, 203, 114, 97, 123, 113, 66, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3806, 54, 153, 153, 121, 67, 73, 110, 105, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3806, 55, 150, 150, 79, 101, 112, 112, 178, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3807, 39, 121, 121, 97, 70, 65, 70, 108, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3807, 40, 132, 132, 83, 91, 103, 95, 67, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3808, 54, 148, 148, 110, 143, 78, 110, 73, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3808, 57, 207, 207, 133, 116, 71, 116, 128, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3809, 35, 97, 97, 34, 77, 34, 77, 33, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3809, 36, 100, 100, 35, 79, 35, 79, 34, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3809, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3810, 38, 111, 111, 76, 82, 59, 91, 98, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3810, 35, 99, 99, 59, 70, 59, 70, 73, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3810, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3811, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3811, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3811, 41, 114, 114, 70, 60, 70, 68, 52, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3812, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3812, 24, 71, 71, 42, 42, 54, 54, 54, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3813, 40, 120, 120, 123, 99, 63, 83, 71, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3814, 53, 188, 188, 101, 112, 101, 112, 82, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3814, 54, 162, 162, 106, 105, 111, 132, 132, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3814, 56, 164, 164, 103, 153, 170, 125, 92, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3815, 40, 116, 116, 85, 65, 95, 87, 103, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3815, 40, 116, 116, 95, 65, 99, 87, 93, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3816, 54, 164, 164, 157, 96, 127, 116, 127, 200); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3816, 54, 164, 164, 127, 96, 159, 127, 114, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3817, 55, 161, 161, 123, 101, 90, 90, 101, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3817, 56, 128, 128, 64, 64, 97, 86, 81, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3818, 55, 161, 161, 85, 85, 112, 90, 74, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3818, 56, 197, 197, 101, 118, 105, 122, 82, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3819, 61, 202, 202, 118, 130, 167, 136, 94, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3819, 62, 217, 217, 111, 130, 116, 135, 90, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3820, 24, 73, 73, 49, 64, 30, 44, 54, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3820, 25, 119, 119, 54, 36, 59, 41, 54, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3820, 24, 69, 69, 44, 30, 42, 28, 54, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3821, 44, 127, 127, 86, 113, 51, 78, 95, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3821, 45, 206, 206, 93, 60, 102, 69, 93, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3821, 44, 144, 144, 113, 69, 95, 64, 122, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3822, 61, 184, 184, 142, 179, 81, 118, 142, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3822, 59, 267, 267, 120, 78, 132, 89, 120, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3822, 61, 196, 196, 155, 94, 130, 87, 167, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3823, 47, 135, 135, 99, 75, 111, 101, 120, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3823, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3824, 32, 98, 98, 86, 67, 51, 67, 83, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3824, 34, 97, 97, 75, 50, 58, 50, 58, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3824, 31, 89, 89, 50, 106, 62, 109, 40, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3825, 55, 128, 128, 101, 167, 90, 167, 52, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3825, 56, 192, 192, 176, 114, 148, 114, 137, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3826, 39, 94, 94, 73, 120, 65, 120, 38, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3826, 39, 117, 117, 104, 81, 61, 81, 100, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3827, 55, 123, 123, 63, 63, 63, 63, 63, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3827, 59, 149, 149, 150, 119, 67, 156, 115, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3828, 47, 172, 172, 144, 134, 64, 64, 59, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3828, 48, 146, 146, 118, 91, 108, 91, 66, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3829, 44, 157, 157, 108, 91, 73, 73, 64, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3830, 35, 117, 117, 101, 66, 52, 59, 87, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3830, 36, 109, 109, 75, 64, 82, 64, 79, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3831, 55, 178, 178, 156, 101, 79, 90, 134, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3831, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3832, 60, 187, 187, 188, 182, 140, 134, 110, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3833, 61, 178, 178, 136, 161, 100, 118, 142, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3834, 35, 124, 124, 77, 77, 63, 63, 42, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3834, 36, 120, 120, 104, 68, 53, 61, 89, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3834, 38, 113, 113, 73, 77, 47, 50, 43, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3835, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3835, 56, 170, 170, 137, 148, 75, 86, 97, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3835, 57, 167, 167, 111, 93, 145, 93, 145, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3836, 58, 175, 175, 89, 107, 89, 136, 153, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3836, 59, 196, 196, 114, 126, 161, 132, 91, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3836, 58, 129, 129, 78, 211, 60, 78, 107, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3837, 58, 164, 164, 147, 95, 95, 107, 136, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3837, 59, 165, 165, 161, 102, 124, 100, 102, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3837, 58, 164, 164, 122, 92, 136, 124, 147, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3838, 42, 150, 150, 77, 89, 80, 93, 62, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3839, 38, 122, 122, 81, 77, 90, 79, 83, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3839, 38, 114, 114, 94, 106, 41, 68, 41, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3839, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3840, 45, 300, 300, 30, 30, 88, 142, 70, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3840, 46, 146, 146, 95, 95, 95, 95, 95, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3840, 48, 142, 142, 89, 132, 147, 108, 79, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3841, 24, 66, 66, 42, 35, 61, 52, 44, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3841, 24, 56, 56, 25, 25, 35, 30, 32, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3841, 25, 89, 89, 41, 51, 44, 51, 29, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3842, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3842, 44, 103, 103, 51, 51, 78, 69, 64, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3842, 45, 152, 152, 70, 88, 75, 88, 48, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3843, 59, 161, 161, 108, 102, 173, 150, 132, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3843, 61, 175, 175, 106, 106, 179, 167, 124, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3843, 61, 227, 227, 130, 142, 124, 142, 87, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3844, 57, 167, 167, 99, 99, 88, 88, 105, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3844, 58, 193, 193, 132, 112, 132, 124, 95, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3845, 55, 150, 150, 107, 134, 85, 112, 79, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3845, 56, 175, 175, 103, 103, 125, 137, 103, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3846, 56, 167, 167, 137, 92, 137, 92, 97, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3846, 56, 158, 158, 103, 92, 97, 97, 153, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3846, 56, 158, 158, 170, 92, 109, 92, 109, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3847, 58, 181, 181, 165, 117, 136, 117, 107, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3847, 59, 196, 196, 179, 114, 114, 114, 91, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3847, 58, 175, 175, 136, 170, 78, 112, 136, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3848, 56, 170, 170, 137, 148, 75, 86, 97, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3848, 56, 210, 210, 118, 101, 128, 117, 68, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3848, 57, 155, 155, 105, 145, 105, 162, 111, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3849, 59, 178, 178, 144, 156, 79, 91, 102, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3849, 59, 221, 221, 124, 106, 134, 123, 72, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3849, 60, 163, 163, 110, 152, 110, 170, 116, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3850, 58, 251, 251, 107, 78, 124, 83, 78, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3850, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3850, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3851, 38, 90, 90, 45, 45, 68, 60, 56, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3851, 38, 103, 103, 68, 52, 52, 61, 83, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3851, 39, 125, 125, 90, 69, 69, 81, 72, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3852, 52, 151, 151, 91, 91, 153, 143, 106, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3852, 56, 175, 175, 128, 97, 97, 114, 101, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3852, 52, 148, 148, 102, 111, 79, 123, 132, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3853, 45, 170, 170, 138, 93, 84, 75, 93, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3853, 46, 136, 136, 108, 67, 108, 67, 82, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3853, 48, 168, 168, 180, 79, 84, 70, 77, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3854, 55, 156, 156, 162, 134, 85, 101, 118, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3854, 56, 226, 226, 90, 90, 110, 110, 100, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3855, 55, 150, 150, 107, 118, 134, 118, 151, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3855, 56, 142, 142, 103, 81, 81, 81, 103, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3856, 61, 166, 166, 118, 130, 148, 130, 167, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3856, 62, 193, 193, 151, 126, 126, 126, 151, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3857, 56, 164, 164, 103, 69, 92, 69, 92, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3857, 57, 195, 195, 168, 115, 93, 139, 117, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3858, 55, 123, 123, 112, 79, 79, 101, 156, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3858, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3858, 54, 162, 162, 106, 105, 111, 132, 132, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3859, 61, 184, 184, 148, 142, 75, 112, 161, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3860, 63, 190, 190, 153, 147, 78, 115, 166, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3861, 39, 102, 102, 58, 58, 58, 58, 58, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3861, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3861, 42, 134, 134, 87, 87, 87, 87, 87, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3862, 41, 114, 114, 70, 60, 70, 68, 52, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3862, 42, 113, 113, 99, 66, 49, 83, 116, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3863, 34, 103, 103, 58, 64, 76, 70, 75, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3863, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3863, 35, 103, 103, 70, 76, 55, 84, 91, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3864, 52, 153, 153, 86, 96, 114, 104, 112, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3864, 52, 184, 184, 75, 106, 86, 106, 75, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3864, 56, 158, 158, 110, 119, 85, 132, 142, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3865, 58, 186, 186, 108, 75, 108, 75, 81, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3865, 59, 204, 204, 220, 97, 102, 85, 94, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3865, 58, 158, 158, 83, 141, 124, 107, 101, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3866, 58, 170, 170, 123, 107, 101, 107, 85, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3866, 61, 208, 208, 159, 155, 118, 130, 95, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3867, 47, 163, 163, 87, 90, 111, 106, 78, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3867, 48, 166, 166, 126, 123, 94, 103, 76, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3868, 47, 135, 135, 99, 75, 111, 101, 120, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3868, 48, 123, 123, 79, 113, 137, 89, 89, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3869, 29, 83, 83, 52, 49, 61, 53, 61, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3869, 29, 63, 63, 35, 56, 70, 47, 41, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3870, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3870, 24, 70, 70, 44, 41, 52, 44, 52, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3870, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3871, 53, 159, 159, 124, 89, 114, 92, 114, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3871, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3872, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3872, 31, 111, 111, 68, 68, 56, 56, 37, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3872, 31, 89, 89, 40, 65, 53, 44, 40, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3873, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3873, 52, 153, 153, 127, 143, 54, 91, 54, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3874, 35, 96, 96, 45, 45, 63, 49, 42, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3875, 43, 120, 120, 63, 80, 89, 89, 140, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3875, 43, 120, 120, 84, 93, 106, 93, 119, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3875, 43, 131, 131, 85, 84, 90, 106, 106, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3876, 35, 78, 78, 45, 66, 66, 35, 59, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3876, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3877, 29, 81, 81, 38, 38, 53, 41, 35, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3877, 29, 92, 92, 61, 70, 67, 73, 44, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3878, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3879, 38, 103, 103, 68, 90, 90, 52, 83, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3880, 47, 135, 135, 144, 78, 92, 78, 92, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3880, 47, 125, 125, 68, 64, 148, 111, 134, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3881, 32, 104, 104, 83, 58, 80, 61, 61, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3881, 32, 88, 88, 99, 90, 48, 48, 64, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3881, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3882, 34, 110, 110, 88, 61, 85, 64, 64, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3882, 34, 93, 93, 105, 95, 51, 51, 68, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3882, 34, 100, 100, 105, 58, 81, 92, 61, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3883, 38, 122, 122, 98, 68, 94, 71, 71, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3883, 39, 105, 105, 120, 108, 58, 58, 77, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3883, 38, 111, 111, 117, 64, 90, 102, 68, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3884, 52, 163, 163, 132, 91, 127, 96, 96, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3884, 49, 130, 130, 150, 135, 71, 71, 96, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3884, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3885, 26, 73, 73, 42, 40, 37, 48, 42, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3885, 22, 97, 97, 41, 39, 61, 54, 41, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3885, 22, 68, 68, 41, 39, 61, 54, 70, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3885, 22, 68, 68, 70, 39, 54, 61, 41, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3886, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3886, 24, 81, 81, 57, 44, 44, 52, 46, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3887, 33, 94, 94, 79, 69, 56, 69, 36, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3887, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3887, 33, 140, 140, 59, 56, 89, 79, 59, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3888, 36, 105, 105, 89, 68, 75, 75, 93, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3888, 31, 95, 95, 50, 50, 65, 53, 44, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3889, 38, 111, 111, 94, 71, 79, 79, 98, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3889, 37, 126, 126, 73, 81, 103, 84, 59, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3890, 42, 121, 121, 104, 78, 87, 87, 108, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3890, 40, 136, 136, 79, 87, 111, 91, 63, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3891, 56, 158, 158, 137, 103, 114, 114, 142, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3891, 59, 196, 196, 114, 126, 161, 132, 91, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3892, 24, 57, 57, 35, 40, 47, 40, 54, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3892, 26, 76, 76, 53, 58, 66, 58, 74, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3893, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3893, 36, 115, 115, 77, 89, 79, 93, 74, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3894, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3894, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3895, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3895, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3895, 24, 70, 70, 43, 52, 44, 52, 41, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3896, 48, 152, 152, 103, 113, 51, 51, 46, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3896, 46, 125, 125, 80, 74, 95, 81, 95, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3896, 46, 126, 126, 79, 95, 81, 95, 74, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3897, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3898, 25, 71, 71, 34, 34, 46, 36, 31, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3898, 25, 80, 80, 52, 51, 54, 64, 64, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3899, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3899, 37, 105, 105, 80, 66, 70, 70, 70, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3900, 32, 82, 82, 47, 47, 58, 58, 45, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3900, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3900, 32, 104, 104, 69, 69, 80, 80, 67, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3901, 38, 108, 108, 82, 68, 71, 71, 71, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3902, 26, 65, 65, 41, 36, 45, 40, 48, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3902, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3902, 26, 68, 68, 39, 48, 40, 47, 36, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3903, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3903, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3903, 35, 96, 96, 63, 84, 84, 49, 77, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3904, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3904, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3904, 35, 96, 96, 63, 84, 84, 49, 77, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3905, 47, 130, 130, 80, 81, 97, 97, 78, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3905, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3906, 36, 98, 98, 68, 50, 68, 53, 61, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3906, 33, 101, 101, 57, 61, 53, 53, 53, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3906, 36, 80, 80, 50, 57, 68, 57, 79, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3907, 38, 103, 103, 71, 52, 71, 56, 64, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3907, 36, 109, 109, 62, 66, 57, 57, 58, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3907, 38, 84, 84, 52, 60, 71, 60, 83, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3908, 47, 158, 158, 125, 97, 115, 97, 111, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3908, 43, 145, 145, 99, 95, 84, 93, 85, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3908, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3909, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3909, 53, 177, 177, 121, 116, 103, 114, 104, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3909, 56, 153, 153, 109, 120, 137, 120, 153, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3910, 25, 85, 85, 54, 51, 49, 49, 64, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3910, 27, 81, 81, 59, 45, 66, 60, 71, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3911, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3911, 53, 198, 198, 114, 124, 108, 124, 77, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3912, 43, 124, 124, 76, 72, 115, 102, 132, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3912, 43, 124, 124, 67, 119, 106, 54, 72, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3912, 43, 132, 132, 106, 102, 54, 80, 115, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3913, 30, 86, 86, 66, 39, 33, 42, 56, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3913, 30, 95, 95, 75, 53, 63, 53, 85, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3914, 27, 82, 82, 45, 44, 56, 44, 76, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3915, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3916, 64, 205, 205, 125, 109, 85, 98, 143, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3916, 64, 184, 184, 143, 111, 92, 98, 133, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3916, 64, 199, 199, 85, 111, 143, 168, 130, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3917, 35, 93, 93, 63, 63, 73, 70, 58, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3917, 35, 99, 99, 49, 66, 70, 77, 56, 237); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3917, 35, 103, 103, 45, 52, 105, 59, 38, 238); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3918, 44, 135, 135, 107, 76, 107, 76, 109, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3918, 44, 135, 135, 107, 76, 107, 76, 109, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3918, 44, 135, 135, 107, 76, 107, 76, 109, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3919, 65, 189, 189, 128, 106, 154, 106, 168, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3919, 65, 227, 227, 116, 136, 122, 141, 94, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3919, 65, 241, 241, 197, 132, 119, 106, 132, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3920, 40, 128, 128, 99, 75, 67, 75, 95, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3920, 40, 144, 144, 67, 75, 87, 103, 67, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3921, 41, 119, 119, 115, 77, 52, 60, 74, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3922, 30, 86, 86, 56, 66, 62, 60, 85, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3922, 30, 83, 83, 62, 77, 47, 42, 29, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3923, 40, 106, 106, 71, 59, 55, 59, 49, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3923, 40, 126, 126, 115, 91, 67, 91, 57, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3924, 44, 122, 122, 91, 104, 82, 95, 64, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3924, 44, 162, 162, 104, 86, 95, 86, 85, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3925, 45, 147, 147, 120, 102, 61, 102, 93, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3925, 45, 125, 125, 111, 101, 70, 83, 122, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3926, 39, 121, 121, 95, 68, 95, 68, 97, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3926, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3926, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3927, 39, 98, 98, 85, 58, 61, 58, 69, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3927, 39, 105, 105, 61, 61, 85, 61, 42, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3927, 39, 98, 98, 85, 73, 50, 50, 65, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3928, 32, 94, 94, 72, 48, 72, 48, 84, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3928, 32, 91, 91, 70, 60, 54, 60, 65, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3928, 32, 96, 96, 53, 51, 65, 51, 89, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3929, 65, 312, 312, 125, 132, 80, 86, 112, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3929, 65, 176, 176, 158, 177, 119, 138, 145, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3929, 65, 195, 195, 125, 125, 190, 151, 80, 260); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3930, 66, 198, 198, 160, 154, 81, 121, 173, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3930, 66, 324, 324, 147, 88, 147, 88, 107, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3931, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3931, 36, 109, 109, 73, 61, 87, 61, 95, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3932, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3932, 35, 110, 110, 89, 73, 66, 73, 82, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3933, 31, 86, 86, 85, 44, 62, 44, 59, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3934, 39, 114, 114, 110, 73, 50, 58, 71, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3934, 39, 113, 113, 85, 73, 77, 73, 50, 264); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3934, 39, 125, 125, 73, 50, 97, 65, 132, 265); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3935, 40, 117, 117, 113, 75, 51, 59, 73, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3935, 40, 117, 117, 113, 75, 51, 59, 73, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3936, 68, 199, 199, 141, 116, 116, 109, 181, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3936, 68, 190, 190, 117, 111, 206, 158, 179, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3936, 68, 279, 279, 145, 138, 145, 158, 111, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3937, 32, 96, 96, 53, 51, 65, 51, 89, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3937, 32, 91, 91, 45, 61, 64, 70, 51, 237); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3938, 68, 190, 190, 206, 111, 131, 111, 131, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3938, 68, 184, 184, 179, 124, 111, 111, 165, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3938, 68, 252, 252, 138, 151, 158, 151, 117, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3939, 61, 175, 175, 106, 106, 179, 167, 124, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3939, 61, 175, 175, 179, 106, 106, 167, 124, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3940, 39, 98, 98, 85, 58, 61, 58, 69, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3940, 39, 105, 105, 61, 61, 85, 61, 42, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3940, 39, 98, 98, 85, 73, 50, 50, 65, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3941, 39, 121, 121, 95, 68, 95, 68, 97, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3941, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3941, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3942, 65, 182, 182, 93, 73, 177, 151, 151, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3942, 65, 267, 267, 112, 106, 171, 151, 112, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3942, 65, 195, 195, 151, 190, 86, 125, 151, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3943, 65, 163, 163, 93, 128, 151, 128, 146, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3943, 65, 176, 176, 86, 93, 145, 132, 119, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3943, 65, 312, 312, 125, 132, 80, 86, 112, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3944, 41, 108, 108, 73, 60, 56, 60, 50, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3945, 45, 125, 125, 81, 97, 90, 88, 125, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3945, 45, 138, 138, 111, 77, 93, 77, 125, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3946, 29, 75, 75, 32, 44, 47, 53, 41, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3946, 29, 90, 90, 50, 58, 79, 58, 67, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3946, 29, 85, 85, 40, 44, 40, 44, 47, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3947, 63, 147, 147, 108, 84, 90, 90, 90, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3947, 63, 183, 183, 153, 172, 65, 109, 65, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3947, 63, 183, 183, 166, 128, 96, 128, 159, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3947, 63, 183, 183, 122, 103, 159, 103, 159, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3948, 39, 103, 103, 69, 58, 54, 58, 48, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3948, 39, 114, 114, 110, 73, 50, 58, 71, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3948, 39, 123, 123, 112, 89, 65, 89, 56, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3949, 62, 187, 187, 145, 110, 182, 145, 130, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3950, 41, 119, 119, 115, 77, 52, 60, 74, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3951, 35, 99, 99, 75, 49, 49, 49, 69, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3951, 35, 110, 110, 63, 56, 63, 56, 65, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3951, 35, 99, 99, 73, 84, 66, 77, 52, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3952, 41, 119, 119, 82, 88, 64, 98, 105, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3952, 41, 114, 114, 52, 68, 97, 68, 64, 276); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3953, 55, 150, 150, 98, 118, 109, 107, 152, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3953, 55, 172, 172, 151, 112, 96, 85, 127, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3954, 33, 91, 91, 90, 46, 65, 46, 63, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3954, 33, 85, 85, 74, 56, 36, 43, 54, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3955, 55, 182, 182, 161, 112, 85, 112, 85, 279); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3955, 55, 164, 164, 88, 112, 138, 112, 131, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3956, 55, 194, 194, 134, 162, 145, 79, 79, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3957, 63, 183, 183, 124, 103, 149, 103, 163, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3957, 63, 220, 220, 113, 132, 118, 137, 91, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3957, 63, 234, 234, 191, 128, 115, 103, 128, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3958, 66, 211, 211, 156, 115, 167, 115, 114, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3958, 66, 225, 225, 114, 173, 107, 200, 114, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3958, 66, 178, 178, 107, 107, 167, 167, 167, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3959, 39, 125, 125, 54, 69, 89, 104, 81, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3959, 39, 180, 180, 81, 53, 89, 61, 81, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3960, 33, 81, 81, 53, 63, 46, 56, 36, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3960, 33, 107, 107, 92, 69, 59, 53, 78, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3960, 33, 104, 104, 82, 89, 46, 53, 59, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3961, 47, 153, 153, 120, 73, 101, 68, 130, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3961, 47, 135, 135, 59, 87, 97, 153, 87, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3962, 46, 136, 136, 106, 81, 95, 72, 111, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3962, 46, 136, 136, 106, 81, 95, 72, 111, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3962, 46, 164, 164, 67, 95, 76, 95, 67, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3963, 50, 158, 158, 123, 93, 83, 93, 118, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3964, 33, 90, 90, 68, 84, 51, 46, 31, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3964, 33, 85, 85, 74, 56, 36, 43, 54, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3965, 53, 140, 140, 103, 87, 103, 87, 133, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3965, 53, 188, 188, 87, 98, 114, 135, 87, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3966, 18, 57, 57, 40, 34, 24, 34, 33, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3966, 18, 59, 59, 18, 29, 18, 29, 25, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3967, 63, 190, 190, 153, 147, 78, 115, 166, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3967, 63, 309, 309, 141, 84, 141, 84, 103, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3968, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3969, 55, 249, 249, 112, 73, 123, 84, 112, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3969, 55, 150, 150, 101, 140, 101, 156, 107, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3970, 47, 130, 130, 68, 115, 101, 87, 83, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3970, 47, 233, 233, 106, 64, 106, 64, 78, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3971, 53, 161, 161, 116, 90, 116, 90, 127, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3971, 53, 156, 156, 105, 87, 126, 87, 138, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3972, 39, 113, 113, 77, 100, 46, 69, 85, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3972, 39, 117, 117, 65, 77, 104, 77, 89, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3972, 39, 117, 117, 90, 69, 81, 61, 95, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3973, 63, 193, 193, 115, 104, 90, 104, 153, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3973, 63, 234, 234, 109, 159, 96, 147, 128, 292); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3973, 63, 200, 200, 161, 109, 136, 109, 134, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3974, 63, 202, 202, 123, 108, 84, 96, 141, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3974, 63, 221, 221, 182, 122, 99, 122, 128, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3974, 63, 227, 227, 147, 122, 134, 122, 120, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3975, 39, 113, 113, 61, 108, 97, 50, 65, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3975, 39, 121, 121, 97, 68, 81, 68, 109, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3975, 39, 113, 113, 81, 128, 50, 73, 73, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3976, 50, 136, 136, 73, 168, 118, 128, 53, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3977, 47, 158, 158, 125, 97, 115, 97, 111, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3977, 47, 177, 177, 148, 78, 68, 83, 104, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3978, 63, 177, 177, 90, 71, 172, 147, 147, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3978, 63, 259, 259, 109, 103, 166, 147, 109, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3978, 63, 196, 196, 159, 109, 103, 122, 191, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3979, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3979, 18, 59, 59, 44, 34, 40, 31, 46, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3980, 62, 156, 156, 89, 122, 145, 122, 140, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3980, 62, 168, 168, 83, 89, 138, 126, 114, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3980, 62, 298, 298, 120, 126, 76, 83, 107, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3981, 34, 92, 92, 70, 87, 53, 47, 32, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3981, 34, 100, 100, 81, 56, 85, 75, 80, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3982, 48, 233, 233, 94, 99, 60, 65, 84, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3983, 41, 123, 123, 73, 73, 64, 64, 77, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3983, 41, 119, 119, 89, 77, 81, 77, 52, 264); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3984, 54, 148, 148, 132, 120, 83, 98, 145, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3984, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3985, 50, 173, 173, 133, 103, 93, 103, 73, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3986, 50, 148, 148, 100, 83, 120, 83, 131, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3987, 55, 167, 167, 120, 94, 120, 94, 132, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3987, 55, 183, 183, 107, 118, 151, 123, 85, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3988, 39, 102, 102, 73, 58, 58, 58, 73, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3988, 39, 117, 117, 97, 73, 100, 77, 50, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3989, 47, 149, 149, 99, 95, 111, 97, 101, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3989, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3990, 48, 180, 180, 99, 108, 113, 108, 84, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3991, 66, 176, 176, 172, 176, 92, 92, 172, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3991, 66, 185, 185, 114, 107, 200, 154, 173, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3991, 66, 231, 231, 193, 97, 167, 97, 122, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3992, 55, 178, 178, 131, 97, 140, 97, 96, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3992, 55, 161, 161, 109, 90, 131, 90, 143, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3993, 34, 93, 93, 93, 47, 67, 47, 64, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3993, 34, 100, 100, 73, 56, 81, 75, 88, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3994, 47, 130, 130, 92, 101, 115, 101, 130, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3994, 47, 139, 139, 106, 125, 78, 92, 111, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3995, 55, 158, 158, 87, 85, 109, 85, 150, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3995, 55, 161, 161, 90, 107, 145, 107, 123, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3996, 40, 112, 112, 59, 99, 87, 75, 71, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3996, 40, 112, 112, 79, 87, 99, 87, 111, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3997, 54, 153, 153, 127, 86, 132, 116, 124, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3997, 54, 202, 202, 164, 110, 100, 89, 110, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3998, 50, 153, 153, 110, 86, 110, 86, 121, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3999, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3999, 33, 94, 94, 71, 46, 46, 46, 65, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (3999, 33, 83, 83, 49, 76, 32, 73, 23, 298); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4000, 55, 148, 148, 144, 148, 77, 77, 144, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4000, 55, 166, 166, 128, 168, 84, 152, 46, 299); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4001, 31, 95, 95, 84, 59, 87, 59, 71, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4002, 60, 175, 175, 170, 104, 80, 128, 176, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4003, 65, 182, 182, 145, 184, 138, 119, 106, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4003, 65, 185, 185, 144, 179, 131, 179, 71, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4003, 66, 211, 211, 180, 134, 167, 134, 94, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4004, 56, 170, 170, 120, 249, 86, 97, 58, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4004, 56, 153, 153, 81, 103, 114, 114, 181, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4004, 57, 207, 207, 133, 116, 71, 116, 128, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4005, 46, 126, 126, 122, 159, 62, 66, 53, 305); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4006, 26, 79, 79, 81, 45, 53, 45, 53, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4006, 25, 76, 76, 76, 64, 41, 49, 56, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4007, 58, 158, 158, 89, 130, 194, 130, 118, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4008, 29, 90, 90, 85, 38, 70, 38, 70, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4008, 30, 91, 91, 54, 54, 90, 84, 63, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4009, 54, 142, 142, 127, 83, 62, 105, 148, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4009, 55, 139, 139, 129, 222, 118, 74, 101, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4010, 36, 148, 148, 59, 59, 72, 72, 66, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4011, 36, 102, 102, 53, 68, 75, 75, 118, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4012, 57, 144, 144, 82, 162, 116, 116, 59, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4012, 58, 170, 170, 176, 141, 89, 118, 101, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4013, 55, 139, 139, 107, 107, 96, 96, 79, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4013, 56, 164, 164, 131, 165, 97, 109, 75, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4014, 24, 59, 59, 54, 35, 30, 30, 49, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4014, 24, 85, 85, 71, 49, 42, 42, 35, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4014, 25, 66, 66, 33, 30, 44, 35, 49, 309); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4015, 42, 117, 117, 95, 66, 95, 87, 112, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4015, 42, 134, 134, 89, 85, 99, 87, 91, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4015, 43, 120, 120, 89, 115, 63, 89, 59, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4016, 36, 123, 123, 71, 79, 100, 82, 57, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4017, 56, 142, 142, 81, 193, 81, 193, 81, 310); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4017, 56, 153, 153, 125, 86, 125, 114, 148, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4017, 57, 173, 173, 133, 133, 133, 133, 122, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4018, 52, 153, 153, 75, 54, 122, 164, 132, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4018, 53, 188, 188, 130, 108, 87, 87, 77, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4018, 54, 153, 153, 78, 62, 148, 127, 127, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4019, 54, 186, 186, 143, 110, 100, 110, 78, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4019, 55, 162, 162, 129, 118, 145, 129, 111, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4020, 54, 132, 132, 83, 73, 94, 73, 105, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4020, 55, 205, 205, 167, 112, 101, 90, 112, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4021, 45, 136, 136, 73, 93, 113, 93, 108, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4021, 45, 174, 174, 147, 138, 70, 70, 57, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4022, 55, 156, 156, 167, 90, 129, 145, 96, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4022, 55, 178, 178, 131, 97, 140, 97, 96, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4023, 28, 88, 88, 79, 48, 48, 48, 65, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4024, 20, 53, 53, 24, 24, 34, 24, 46, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4024, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4024, 20, 57, 57, 36, 30, 52, 44, 38, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4025, 26, 76, 76, 40, 66, 58, 50, 48, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4025, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4025, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4026, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4026, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4026, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4027, 44, 122, 122, 64, 108, 95, 82, 78, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4027, 44, 131, 131, 108, 82, 113, 86, 56, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4027, 44, 122, 122, 82, 78, 130, 113, 100, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4028, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4028, 51, 140, 140, 74, 125, 110, 94, 89, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4028, 51, 150, 150, 125, 94, 130, 99, 64, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4028, 51, 140, 140, 94, 89, 150, 130, 115, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4028, 52, 215, 215, 112, 106, 112, 122, 86, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4029, 38, 99, 99, 56, 56, 56, 56, 56, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4029, 38, 114, 114, 64, 65, 79, 81, 64, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4029, 38, 92, 92, 71, 117, 64, 117, 37, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4030, 35, 92, 92, 66, 52, 52, 52, 66, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4030, 37, 108, 108, 77, 121, 47, 70, 70, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4031, 26, 83, 83, 66, 45, 66, 45, 48, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4031, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4032, 39, 125, 125, 112, 120, 61, 69, 54, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4032, 39, 109, 109, 89, 61, 89, 81, 104, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4033, 47, 120, 120, 101, 101, 73, 73, 68, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4034, 38, 107, 107, 87, 125, 56, 56, 49, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4034, 40, 143, 143, 73, 85, 77, 89, 60, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4035, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4036, 41, 135, 135, 93, 85, 77, 85, 126, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4037, 41, 119, 119, 122, 101, 64, 77, 89, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4038, 39, 117, 117, 85, 128, 85, 73, 34, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4038, 39, 109, 109, 65, 77, 65, 77, 81, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4039, 47, 139, 139, 97, 87, 97, 87, 125, 317); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4040, 36, 127, 127, 61, 74, 89, 107, 76, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4041, 28, 88, 88, 79, 48, 48, 48, 65, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4042, 35, 108, 108, 70, 70, 74, 87, 87, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4042, 37, 115, 115, 77, 88, 84, 92, 55, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4043, 39, 102, 102, 73, 58, 58, 58, 73, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4043, 39, 144, 144, 120, 112, 54, 54, 50, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4044, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4045, 28, 87, 87, 51, 51, 45, 45, 54, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4046, 55, 85, 85, 123, 74, 57, 57, 68, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4046, 55, 85, 85, 123, 74, 57, 57, 68, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4047, 26, 83, 83, 74, 45, 45, 45, 61, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4047, 28, 81, 81, 87, 59, 48, 48, 54, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4048, 34, 105, 105, 95, 58, 58, 58, 78, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4048, 36, 102, 102, 111, 75, 61, 61, 68, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4049, 40, 122, 122, 111, 67, 67, 67, 91, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4049, 42, 117, 117, 129, 87, 70, 70, 78, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4050, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4050, 47, 130, 130, 144, 97, 78, 78, 87, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4051, 52, 156, 156, 143, 86, 86, 86, 117, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4051, 53, 145, 145, 161, 108, 87, 87, 98, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4051, 54, 148, 148, 83, 121, 181, 121, 110, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4052, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4053, 26, 76, 76, 61, 50, 45, 76, 35, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4053, 28, 76, 76, 43, 82, 59, 59, 31, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4054, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4054, 35, 92, 92, 52, 101, 73, 73, 38, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4055, 40, 112, 112, 91, 75, 67, 115, 51, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4055, 42, 109, 109, 62, 120, 87, 87, 45, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4056, 44, 122, 122, 100, 82, 73, 126, 56, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4056, 46, 119, 119, 81, 81, 95, 90, 75, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4056, 44, 113, 113, 64, 126, 91, 91, 47, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4057, 52, 143, 143, 117, 96, 86, 148, 65, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4057, 53, 135, 135, 77, 151, 108, 108, 55, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4057, 54, 160, 160, 127, 116, 143, 127, 109, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4058, 28, 87, 87, 51, 51, 45, 45, 54, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4059, 44, 122, 122, 64, 82, 91, 91, 144, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4059, 44, 157, 157, 85, 93, 85, 93, 69, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4060, 38, 107, 107, 87, 125, 56, 56, 49, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4060, 38, 103, 103, 56, 52, 121, 90, 109, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4060, 38, 114, 114, 75, 64, 98, 64, 98, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4061, 36, 116, 116, 79, 86, 39, 39, 35, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4061, 36, 130, 130, 66, 77, 69, 80, 54, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4062, 20, 53, 53, 30, 28, 38, 28, 38, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4062, 20, 66, 66, 36, 24, 20, 24, 22, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4062, 20, 55, 55, 42, 36, 28, 24, 32, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4063, 26, 81, 81, 53, 45, 68, 45, 68, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4063, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4063, 26, 120, 120, 76, 45, 35, 45, 40, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4064, 33, 101, 101, 66, 56, 86, 56, 86, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4064, 33, 140, 140, 63, 39, 63, 39, 56, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4064, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4065, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4065, 43, 125, 125, 121, 80, 54, 63, 78, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4065, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4065, 43, 214, 214, 97, 59, 97, 59, 72, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4066, 50, 156, 156, 104, 94, 97, 92, 149, 321); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4066, 51, 150, 150, 99, 84, 130, 84, 130, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4066, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4066, 51, 226, 226, 145, 84, 64, 84, 74, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4066, 52, 159, 159, 176, 117, 86, 96, 124, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4067, 24, 61, 61, 32, 32, 47, 32, 23, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4067, 26, 76, 76, 61, 50, 45, 76, 35, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4068, 22, 59, 59, 34, 28, 37, 45, 30, 324); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4068, 23, 84, 84, 43, 43, 63, 73, 40, 325); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4069, 58, 146, 146, 136, 234, 124, 78, 107, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4070, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4071, 57, 190, 190, 139, 105, 150, 196, 116, 327); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4072, 21, 55, 55, 25, 25, 35, 25, 48, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4072, 22, 68, 68, 52, 41, 39, 39, 56, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4073, 46, 132, 132, 141, 76, 90, 76, 90, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4073, 47, 196, 196, 101, 97, 101, 111, 78, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4074, 56, 153, 153, 114, 148, 81, 114, 75, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4074, 56, 198, 198, 162, 109, 89, 109, 114, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4075, 21, 55, 55, 27, 25, 62, 41, 56, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4076, 45, 134, 134, 75, 88, 120, 88, 102, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4076, 46, 136, 136, 131, 81, 62, 99, 136, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4077, 34, 82, 82, 45, 44, 51, 61, 61, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4077, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4077, 35, 155, 155, 66, 49, 77, 52, 49, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4078, 44, 127, 127, 91, 144, 56, 82, 82, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4078, 45, 134, 134, 129, 57, 106, 57, 106, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4079, 44, 140, 140, 104, 93, 73, 93, 86, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4080, 14, 54, 54, 28, 28, 21, 21, 14, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4081, 13, 41, 41, 27, 21, 27, 22, 25, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4082, 55, 183, 183, 145, 112, 134, 112, 129, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4083, 32, 85, 85, 64, 70, 29, 35, 42, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4083, 33, 94, 94, 69, 89, 49, 69, 46, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4084, 100, 236, 236, 141, 151, 191, 171, 101, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4084, 100, 236, 236, 139, 139, 171, 171, 131, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4084, 100, 234, 234, 137, 171, 141, 169, 127, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4084, 100, 246, 246, 145, 137, 171, 141, 151, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4084, 100, 206, 206, 121, 181, 181, 91, 161, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4084, 100, 256, 256, 151, 141, 131, 171, 151, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4085, 100, 216, 216, 181, 151, 131, 151, 91, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4085, 100, 236, 236, 139, 139, 171, 171, 131, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4085, 100, 246, 246, 191, 111, 181, 101, 121, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4085, 100, 196, 196, 111, 181, 231, 151, 131, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4085, 100, 246, 246, 145, 137, 171, 141, 151, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4085, 100, 226, 226, 141, 121, 121, 121, 221, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4086, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4086, 100, 326, 326, 171, 171, 121, 121, 71, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4086, 100, 166, 166, 151, 91, 111, 131, 231, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4086, 100, 326, 326, 151, 191, 161, 191, 101, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4086, 100, 206, 206, 121, 181, 181, 91, 161, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4086, 100, 196, 196, 111, 181, 231, 151, 131, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4087, 100, 222, 222, 123, 121, 141, 171, 171, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4087, 100, 276, 276, 131, 151, 131, 181, 131, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4087, 100, 226, 226, 101, 141, 151, 151, 241, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4087, 100, 246, 246, 191, 211, 81, 101, 121, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4087, 100, 242, 242, 137, 137, 137, 137, 137, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4087, 100, 226, 226, 171, 231, 161, 131, 111, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4088, 100, 266, 266, 171, 181, 211, 191, 121, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4088, 100, 276, 276, 221, 141, 211, 131, 151, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4088, 100, 266, 266, 165, 167, 201, 201, 161, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4088, 100, 306, 306, 205, 197, 231, 201, 211, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4088, 100, 264, 264, 167, 201, 171, 201, 157, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4088, 100, 256, 256, 171, 231, 231, 131, 211, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4089, 100, 266, 266, 171, 181, 211, 191, 121, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4089, 100, 266, 266, 231, 201, 161, 201, 101, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4089, 100, 266, 266, 165, 167, 201, 201, 161, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4089, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4089, 100, 306, 306, 205, 197, 231, 201, 211, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4089, 100, 256, 256, 171, 231, 231, 131, 211, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4090, 100, 306, 306, 211, 231, 101, 101, 91, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4090, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4090, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4090, 100, 246, 246, 231, 401, 211, 131, 181, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4090, 100, 268, 268, 209, 171, 181, 181, 181, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4090, 100, 356, 356, 231, 201, 121, 201, 221, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4091, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4091, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4091, 100, 266, 266, 221, 151, 221, 201, 261, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4091, 100, 296, 296, 241, 261, 131, 151, 171, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4091, 100, 276, 276, 141, 111, 271, 231, 231, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4091, 100, 276, 276, 181, 161, 171, 171, 271, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4092, 100, 296, 296, 201, 211, 261, 221, 141, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4092, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4092, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4092, 100, 306, 306, 181, 171, 201, 281, 241, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4092, 100, 304, 304, 207, 241, 211, 251, 197, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4092, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4093, 100, 296, 296, 201, 211, 261, 221, 141, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4093, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4093, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4093, 100, 276, 276, 207, 155, 231, 211, 251, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4093, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4093, 100, 266, 266, 271, 251, 171, 181, 201, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4094, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4094, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4094, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4094, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4094, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4094, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4095, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4095, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4095, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4095, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4095, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4095, 100, 216, 216, 201, 141, 141, 181, 281, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4096, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4096, 100, 326, 326, 181, 201, 181, 231, 181, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4096, 100, 286, 286, 161, 291, 271, 181, 151, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4096, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4096, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4096, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4097, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4097, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4097, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4097, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4097, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4097, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4098, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4098, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4098, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4098, 100, 246, 246, 231, 401, 211, 131, 181, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4098, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4098, 100, 326, 326, 261, 201, 241, 201, 231, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4099, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4099, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4099, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4099, 100, 296, 296, 241, 231, 121, 181, 261, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4099, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4099, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4100, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4100, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4100, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4100, 50, 148, 148, 85, 90, 78, 78, 79, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4100, 50, 139, 139, 95, 80, 78, 78, 88, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4100, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4101, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4101, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4101, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4101, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4101, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4101, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4102, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4102, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4102, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4102, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4102, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4102, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4103, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4103, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4103, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4103, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4103, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4103, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4104, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4104, 55, 156, 156, 116, 87, 129, 118, 140, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4104, 55, 161, 161, 167, 134, 85, 112, 96, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4104, 55, 167, 167, 112, 129, 123, 134, 79, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4104, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4104, 55, 156, 156, 162, 134, 85, 101, 118, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4105, 80, 270, 270, 233, 160, 129, 193, 163, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4105, 60, 133, 133, 104, 68, 104, 68, 104, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4105, 60, 217, 217, 152, 116, 104, 146, 86, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4105, 60, 157, 157, 104, 140, 140, 80, 128, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4105, 60, 157, 157, 182, 164, 86, 86, 116, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4105, 60, 151, 151, 86, 170, 122, 122, 62, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4106, 100, 292, 292, 231, 165, 211, 171, 211, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4106, 100, 316, 316, 187, 181, 187, 271, 175, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4106, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4106, 100, 336, 336, 181, 187, 231, 221, 161, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4106, 100, 306, 306, 251, 171, 241, 181, 181, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4106, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4107, 100, 316, 316, 187, 181, 187, 271, 175, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4107, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4107, 100, 276, 276, 241, 181, 201, 201, 251, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4107, 100, 326, 326, 191, 191, 221, 241, 181, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4107, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4108, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4108, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4108, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4108, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4108, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4108, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4109, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4109, 50, 143, 143, 78, 138, 123, 63, 83, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4109, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4109, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4109, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4109, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4110, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4110, 100, 326, 326, 301, 191, 191, 191, 151, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4110, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4110, 100, 336, 336, 171, 261, 161, 301, 171, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4110, 100, 356, 356, 251, 191, 171, 241, 141, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4110, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4111, 100, 346, 346, 241, 241, 241, 241, 241, 350); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4111, 100, 276, 276, 181, 161, 171, 171, 271, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4111, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4111, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4111, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4111, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4112, 50, 123, 123, 72, 72, 88, 88, 68, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4112, 50, 122, 122, 71, 88, 73, 87, 66, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4112, 50, 117, 117, 75, 66, 83, 73, 88, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4112, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4112, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4112, 50, 117, 117, 75, 66, 83, 73, 88, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4113, 50, 138, 138, 85, 86, 103, 103, 83, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4113, 50, 137, 137, 86, 103, 88, 103, 81, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4113, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4113, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4113, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4113, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4114, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4114, 26, 68, 68, 53, 45, 35, 29, 40, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4115, 42, 104, 104, 66, 57, 74, 57, 83, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4115, 40, 128, 128, 87, 95, 43, 43, 39, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4115, 42, 104, 104, 99, 62, 53, 62, 83, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4116, 27, 62, 62, 30, 30, 30, 30, 30, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4116, 28, 67, 67, 34, 37, 34, 45, 43, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4117, 41, 101, 101, 44, 64, 52, 73, 99, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4117, 41, 114, 114, 44, 44, 49, 65, 60, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4117, 42, 100, 100, 57, 49, 74, 66, 78, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4118, 51, 160, 160, 104, 104, 104, 104, 104, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4118, 54, 148, 148, 164, 110, 89, 89, 100, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4118, 51, 140, 140, 110, 84, 74, 74, 150, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4118, 51, 186, 186, 155, 145, 69, 69, 64, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4119, 39, 109, 109, 85, 65, 58, 58, 116, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4119, 39, 125, 125, 85, 93, 42, 42, 38, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4119, 40, 124, 124, 79, 63, 103, 87, 43, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4120, 48, 132, 132, 103, 79, 70, 70, 142, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4120, 47, 125, 125, 111, 73, 54, 92, 130, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4120, 47, 139, 139, 97, 83, 106, 83, 101, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4120, 48, 152, 152, 99, 99, 75, 75, 108, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4121, 31, 73, 73, 68, 44, 37, 37, 62, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4121, 30, 74, 74, 48, 33, 33, 33, 66, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4122, 16, 42, 42, 17, 31, 23, 31, 17, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4122, 18, 48, 48, 26, 25, 29, 34, 34, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4123, 28, 87, 87, 26, 43, 26, 43, 37, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4123, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4124, 60, 187, 187, 170, 110, 158, 110, 122, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4124, 60, 175, 175, 128, 104, 152, 128, 170, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4124, 60, 211, 211, 158, 134, 128, 134, 98, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4124, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4124, 60, 187, 187, 122, 122, 122, 122, 122, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4125, 34, 86, 86, 68, 58, 44, 37, 51, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4125, 33, 94, 94, 56, 43, 59, 46, 39, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4126, 42, 109, 109, 78, 62, 62, 62, 53, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4126, 41, 98, 98, 56, 48, 44, 52, 64, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4126, 41, 106, 106, 89, 52, 89, 52, 48, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4127, 16, 44, 44, 28, 20, 20, 20, 37, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4127, 15, 48, 48, 19, 19, 21, 27, 25, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4128, 42, 109, 109, 60, 56, 58, 54, 70, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4128, 41, 98, 98, 52, 60, 44, 44, 44, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4129, 60, 185, 185, 127, 120, 157, 128, 146, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4129, 60, 193, 193, 152, 146, 121, 126, 120, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4129, 60, 187, 187, 125, 146, 126, 146, 122, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4129, 60, 163, 163, 182, 122, 98, 98, 110, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4129, 60, 199, 199, 116, 128, 164, 134, 92, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4130, 50, 178, 178, 123, 123, 123, 123, 123, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4130, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4130, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4130, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4130, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4130, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4131, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4131, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4131, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4131, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4131, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4131, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4132, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4132, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4132, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4132, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4132, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4132, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4133, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4133, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4133, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4133, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4133, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4133, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4134, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4134, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4134, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4134, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4134, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4134, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4135, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4135, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4135, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4135, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4135, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4135, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4136, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4136, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4136, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4136, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4136, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4136, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4137, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4137, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4137, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4137, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4137, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4137, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4138, 100, 226, 226, 181, 301, 161, 301, 91, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4138, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4138, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4138, 100, 336, 336, 311, 201, 261, 201, 241, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4138, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4138, 100, 296, 296, 181, 221, 181, 251, 201, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4139, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4139, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4139, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4139, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4139, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4139, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4140, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4140, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4140, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4140, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4140, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4140, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4141, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4141, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4141, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4141, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4141, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4141, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4142, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4142, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4142, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4142, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4142, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4142, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4143, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4143, 100, 336, 336, 161, 199, 241, 291, 203, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4143, 100, 306, 306, 311, 301, 231, 221, 181, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4143, 100, 346, 346, 241, 241, 241, 241, 241, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4143, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4143, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4144, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4144, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4144, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4144, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4144, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4144, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4145, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4145, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4145, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4145, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4145, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4145, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4146, 100, 446, 446, 361, 241, 231, 171, 241, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4146, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4146, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4146, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4146, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4146, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4147, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4147, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4147, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4147, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4147, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4147, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4148, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4148, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4148, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4148, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4148, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4148, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4149, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4149, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4149, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4149, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4149, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4149, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4150, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4150, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4150, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4150, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4150, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4150, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4151, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4151, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4151, 100, 306, 306, 181, 181, 221, 241, 181, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4151, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4151, 100, 306, 306, 141, 241, 241, 441, 141, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4151, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4152, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4152, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4152, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4152, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4152, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4152, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4153, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4153, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4153, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4153, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4153, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4153, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4154, 10, 30, 30, 25, 17, 15, 15, 23, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4154, 10, 35, 35, 13, 15, 22, 24, 20, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4155, 40, 112, 112, 123, 83, 67, 67, 75, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4155, 40, 116, 116, 95, 79, 63, 63, 87, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4155, 40, 140, 140, 83, 103, 51, 75, 99, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4155, 40, 112, 112, 87, 67, 87, 67, 63, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4155, 40, 128, 128, 55, 71, 91, 107, 83, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4156, 7, 26, 26, 10, 13, 10, 13, 10, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4156, 7, 32, 32, 11, 9, 13, 10, 9, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4156, 7, 24, 24, 10, 16, 13, 16, 10, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4157, 10, 37, 37, 12, 18, 12, 18, 16, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4157, 10, 46, 46, 17, 12, 17, 13, 12, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4157, 10, 30, 30, 12, 21, 16, 21, 12, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4158, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4158, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4158, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4159, 44, 100, 100, 77, 95, 85, 69, 49, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4159, 44, 118, 118, 69, 95, 78, 95, 51, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4159, 45, 120, 120, 57, 97, 93, 115, 57, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4160, 12, 35, 35, 18, 22, 18, 26, 22, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4160, 11, 35, 35, 18, 18, 16, 16, 19, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4160, 12, 37, 37, 21, 24, 21, 24, 20, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4161, 100, 656, 656, 61, 61, 191, 311, 151, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4162, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4162, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4162, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4162, 50, 168, 168, 123, 113, 148, 108, 113, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4162, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4162, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4163, 23, 66, 66, 56, 38, 29, 47, 66, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4163, 23, 68, 68, 24, 29, 45, 50, 40, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4163, 23, 68, 68, 40, 40, 40, 40, 40, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4164, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4164, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4164, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4165, 69, 221, 221, 154, 140, 126, 140, 209, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4165, 69, 186, 186, 147, 112, 98, 98, 202, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4165, 69, 214, 214, 202, 133, 85, 160, 147, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4165, 69, 302, 302, 195, 112, 85, 112, 98, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4165, 69, 228, 228, 209, 140, 119, 147, 105, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4166, 44, 109, 109, 104, 64, 56, 64, 86, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4166, 44, 122, 122, 64, 82, 64, 100, 78, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4166, 45, 138, 138, 102, 147, 75, 75, 57, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4166, 45, 130, 130, 58, 90, 76, 99, 41, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4167, 8, 26, 26, 12, 14, 12, 14, 17, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4167, 8, 30, 30, 17, 14, 18, 15, 13, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4168, 40, 116, 116, 79, 103, 47, 71, 87, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4168, 40, 120, 120, 75, 75, 75, 75, 75, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4168, 40, 120, 120, 111, 67, 111, 67, 63, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4168, 40, 92, 92, 83, 59, 59, 75, 115, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4169, 40, 116, 116, 77, 63, 57, 79, 87, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4169, 40, 128, 128, 75, 71, 83, 115, 99, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4169, 40, 96, 96, 75, 123, 67, 123, 39, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4169, 40, 116, 116, 59, 75, 95, 83, 71, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4170, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4170, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4170, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4170, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4170, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4170, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4171, 62, 168, 168, 188, 126, 101, 101, 114, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4171, 62, 218, 218, 193, 163, 145, 151, 102, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4171, 62, 218, 218, 163, 138, 132, 138, 101, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4171, 62, 187, 187, 182, 151, 114, 126, 83, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4172, 40, 112, 112, 87, 53, 87, 53, 92, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4172, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4172, 40, 144, 144, 59, 59, 80, 96, 75, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4172, 40, 116, 116, 83, 131, 51, 75, 75, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4173, 28, 101, 101, 62, 62, 51, 51, 34, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4173, 28, 98, 98, 48, 54, 57, 54, 40, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4174, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4174, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4175, 64, 218, 218, 111, 168, 104, 194, 111, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4175, 64, 218, 218, 104, 129, 156, 188, 131, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4175, 64, 199, 199, 92, 156, 156, 284, 92, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4175, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4175, 64, 212, 212, 136, 156, 149, 188, 136, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4176, 21, 55, 55, 20, 25, 29, 46, 35, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4176, 21, 63, 63, 23, 27, 41, 46, 37, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4176, 21, 70, 70, 46, 52, 50, 54, 33, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4177, 100, 346, 346, 241, 241, 241, 241, 241, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4177, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4178, 31, 95, 95, 59, 40, 53, 40, 53, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4178, 29, 81, 81, 70, 82, 41, 41, 35, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4179, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4180, 22, 72, 72, 45, 37, 59, 50, 26, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4180, 22, 77, 77, 46, 41, 32, 37, 52, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4180, 22, 74, 74, 43, 39, 34, 39, 56, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4181, 69, 228, 228, 167, 112, 154, 112, 140, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4181, 69, 207, 207, 105, 126, 105, 160, 181, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4181, 69, 207, 207, 154, 98, 181, 140, 160, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4181, 69, 200, 200, 126, 126, 126, 126, 126, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4181, 69, 214, 214, 167, 140, 140, 140, 167, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4182, 99, 253, 253, 80, 109, 80, 129, 189, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4187, 99, 253, 253, 80, 109, 80, 129, 189, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4189, 62, 162, 162, 120, 101, 120, 101, 155, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4190, 61, 208, 208, 118, 161, 148, 124, 63, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4190, 61, 166, 166, 136, 94, 136, 124, 161, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4190, 61, 160, 160, 87, 81, 191, 142, 173, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4190, 61, 196, 196, 116, 112, 116, 167, 108, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4200, 37, 86, 86, 77, 55, 55, 70, 107, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4200, 37, 110, 110, 73, 57, 79, 101, 62, 431); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4201, 36, 105, 105, 75, 64, 43, 64, 61, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4201, 37, 111, 111, 69, 74, 69, 81, 85, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4202, 37, 108, 108, 88, 92, 62, 55, 55, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4203, 36, 102, 102, 86, 75, 61, 75, 39, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4203, 36, 166, 166, 75, 49, 82, 56, 75, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4203, 37, 97, 97, 70, 55, 55, 55, 70, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4204, 37, 108, 108, 96, 62, 62, 70, 88, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4205, 37, 138, 138, 96, 73, 66, 92, 55, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4206, 37, 97, 97, 62, 88, 107, 70, 70, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4207, 37, 123, 123, 77, 84, 96, 88, 62, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4208, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4209, 37, 98, 98, 66, 66, 77, 73, 61, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4211, 37, 104, 104, 55, 92, 81, 70, 66, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4212, 38, 111, 111, 90, 62, 94, 83, 89, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4213, 38, 111, 111, 81, 62, 90, 83, 98, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4214, 38, 103, 103, 45, 56, 60, 102, 83, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4224, 20, 55, 55, 48, 20, 38, 20, 38, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4224, 20, 51, 51, 34, 26, 24, 24, 26, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4224, 20, 55, 55, 48, 20, 38, 20, 38, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4225, 32, 82, 82, 74, 29, 58, 29, 58, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4225, 32, 98, 98, 74, 61, 54, 54, 61, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4225, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4226, 28, 73, 73, 65, 26, 51, 26, 51, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4226, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4227, 38, 114, 114, 109, 49, 90, 49, 90, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4227, 38, 114, 114, 87, 71, 64, 64, 71, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4228, 28, 73, 73, 65, 26, 51, 26, 51, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4228, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4229, 37, 112, 112, 107, 47, 88, 47, 88, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4229, 37, 112, 112, 84, 70, 62, 62, 70, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4230, 34, 103, 103, 78, 64, 58, 58, 64, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4230, 34, 107, 107, 71, 64, 61, 68, 78, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4231, 23, 73, 73, 54, 45, 40, 40, 45, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4231, 23, 61, 61, 54, 22, 43, 22, 43, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4232, 24, 81, 81, 52, 37, 32, 37, 25, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4232, 24, 64, 64, 56, 23, 44, 23, 44, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4233, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4234, 31, 95, 95, 90, 40, 75, 40, 75, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4235, 38, 114, 114, 109, 49, 90, 49, 90, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4236, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4237, 53, 156, 156, 151, 66, 124, 66, 124, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4238, 55, 161, 161, 156, 68, 129, 68, 129, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4258, 25, 69, 69, 46, 59, 31, 31, 21, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4258, 25, 64, 64, 24, 29, 34, 54, 41, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4258, 25, 64, 64, 29, 30, 39, 40, 46, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4258, 24, 57, 57, 35, 56, 28, 28, 32, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4258, 24, 64, 64, 59, 37, 32, 37, 49, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4259, 48, 123, 123, 103, 103, 75, 75, 70, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4259, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4259, 49, 169, 169, 105, 105, 86, 86, 56, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4259, 49, 115, 115, 91, 150, 81, 150, 47, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4259, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4260, 45, 242, 242, 50, 73, 50, 73, 50, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4260, 45, 188, 188, 84, 52, 84, 52, 75, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4260, 45, 134, 134, 102, 84, 75, 75, 57, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4260, 44, 157, 157, 64, 91, 73, 91, 64, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4260, 44, 193, 193, 82, 60, 95, 64, 60, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4261, 60, 210, 210, 108, 126, 113, 131, 87, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4261, 60, 187, 187, 110, 110, 134, 146, 110, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4261, 59, 178, 178, 120, 126, 156, 132, 85, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4261, 59, 178, 178, 120, 138, 132, 144, 85, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4261, 60, 199, 199, 146, 98, 134, 98, 122, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4262, 30, 74, 74, 33, 35, 45, 47, 54, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4262, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4262, 29, 74, 74, 61, 53, 44, 35, 35, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4262, 29, 66, 66, 38, 56, 56, 29, 50, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4262, 28, 64, 64, 40, 45, 54, 45, 62, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4263, 52, 230, 230, 148, 86, 65, 86, 75, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4263, 53, 156, 156, 145, 87, 145, 87, 82, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4263, 53, 150, 150, 119, 151, 114, 98, 87, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4263, 54, 169, 169, 154, 164, 83, 94, 73, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4263, 55, 150, 150, 107, 118, 134, 118, 151, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4264, 35, 113, 113, 77, 84, 38, 38, 35, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4264, 35, 120, 120, 59, 59, 45, 45, 45, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4264, 34, 90, 90, 49, 46, 48, 45, 58, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4264, 34, 76, 76, 47, 109, 47, 78, 37, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4264, 34, 101, 101, 45, 69, 58, 76, 32, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4265, 20, 62, 62, 32, 21, 32, 21, 23, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4265, 20, 83, 83, 30, 20, 30, 22, 20, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4265, 19, 58, 58, 34, 34, 25, 25, 23, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4265, 19, 54, 54, 28, 28, 25, 25, 30, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4265, 18, 48, 48, 22, 26, 22, 26, 33, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4266, 40, 112, 112, 75, 59, 99, 59, 71, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4266, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4266, 40, 124, 124, 83, 75, 71, 79, 91, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4266, 39, 117, 117, 65, 67, 81, 83, 65, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4266, 39, 109, 109, 58, 97, 85, 73, 69, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4267, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4267, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4267, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4267, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4267, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4267, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4268, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4268, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4268, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4268, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4268, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4268, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4269, 50, 178, 178, 173, 163, 123, 113, 113, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4269, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4269, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4269, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4269, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4269, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4270, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4270, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4270, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4270, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4270, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4270, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4271, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4271, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4271, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4271, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4271, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4271, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4272, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4272, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4272, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4272, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4272, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4272, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4273, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4273, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4273, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4273, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4273, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4273, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4274, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4274, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4274, 50, 123, 123, 98, 83, 63, 53, 73, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4274, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4274, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4274, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4275, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4275, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4275, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4275, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4275, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4275, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4276, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4276, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4276, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4276, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4276, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4276, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4277, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4277, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4277, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4277, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4277, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4277, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4278, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4278, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4278, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4278, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4278, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4278, 50, 118, 118, 53, 53, 78, 53, 108, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4279, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4279, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4279, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4279, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4279, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4279, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4280, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4280, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4280, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4280, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4280, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4280, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4281, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4281, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4281, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4281, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4281, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4281, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4282, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4282, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4282, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4282, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4282, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4282, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4283, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4283, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4283, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4283, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4283, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4283, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4284, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4284, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4284, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4284, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4284, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4284, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4285, 29, 78, 78, 70, 70, 35, 79, 56, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4285, 30, 77, 77, 72, 45, 39, 45, 60, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4285, 30, 134, 134, 57, 42, 66, 45, 42, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4286, 43, 111, 111, 84, 84, 76, 76, 63, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4286, 43, 128, 128, 97, 80, 72, 72, 80, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4286, 43, 128, 128, 93, 80, 72, 80, 63, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4286, 43, 120, 120, 93, 72, 93, 72, 67, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4286, 43, 111, 111, 76, 59, 93, 76, 102, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4287, 15, 45, 45, 31, 25, 25, 25, 22, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4287, 15, 42, 42, 19, 19, 22, 25, 19, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4287, 12, 35, 35, 16, 16, 22, 16, 29, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4288, 43, 128, 128, 80, 80, 80, 80, 80, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4288, 44, 131, 131, 69, 78, 104, 95, 82, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4288, 45, 164, 164, 103, 77, 103, 86, 82, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4288, 44, 131, 131, 104, 95, 69, 78, 82, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4289, 62, 193, 193, 176, 114, 163, 114, 126, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4289, 62, 212, 212, 194, 126, 163, 126, 151, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4289, 62, 193, 193, 182, 120, 76, 145, 132, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4289, 62, 212, 212, 182, 125, 101, 151, 127, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4289, 61, 202, 202, 185, 124, 106, 130, 94, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4290, 60, 185, 185, 127, 120, 157, 128, 146, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4290, 60, 169, 169, 104, 98, 182, 140, 158, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4290, 61, 160, 160, 87, 81, 191, 142, 173, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4290, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4290, 61, 184, 184, 136, 87, 161, 124, 142, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4291, 67, 208, 208, 163, 297, 96, 163, 96, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4291, 67, 208, 208, 210, 203, 156, 149, 122, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4291, 65, 182, 182, 132, 210, 80, 119, 119, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4291, 67, 194, 194, 176, 270, 109, 109, 96, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4291, 65, 182, 182, 125, 164, 73, 112, 138, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4292, 29, 72, 72, 41, 38, 53, 38, 53, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4292, 28, 81, 81, 48, 48, 48, 48, 48, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4292, 28, 95, 95, 57, 50, 40, 45, 65, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4293, 12, 41, 41, 21, 14, 21, 14, 16, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4293, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4293, 12, 35, 35, 16, 19, 16, 19, 23, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4294, 16, 47, 47, 29, 25, 42, 36, 31, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4295, 16, 50, 50, 23, 29, 23, 29, 21, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4295, 16, 47, 47, 29, 25, 42, 36, 31, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4296, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4296, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4297, 28, 81, 81, 37, 48, 37, 48, 34, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4297, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4297, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4298, 31, 89, 89, 40, 53, 40, 53, 37, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4298, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4298, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4299, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4299, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4299, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4300, 25, 74, 74, 34, 44, 34, 44, 31, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4300, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4300, 25, 74, 74, 79, 54, 44, 44, 49, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4301, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4302, 14, 45, 45, 21, 26, 21, 26, 19, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4302, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4303, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4303, 14, 45, 45, 21, 26, 21, 26, 19, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4303, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4304, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4304, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4305, 28, 81, 81, 37, 48, 37, 48, 34, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4305, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4305, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4306, 31, 89, 89, 40, 53, 40, 53, 37, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4306, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4306, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4307, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4307, 34, 97, 97, 61, 64, 75, 68, 44, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4307, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4308, 18, 56, 56, 25, 33, 25, 33, 24, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4308, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4309, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4309, 26, 76, 76, 48, 50, 58, 53, 35, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4310, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4310, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4311, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4312, 37, 97, 97, 73, 44, 70, 40, 47, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4312, 37, 108, 108, 84, 55, 81, 51, 59, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4313, 49, 106, 106, 52, 52, 52, 52, 52, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4313, 49, 150, 150, 96, 76, 125, 105, 52, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4314, 36, 91, 91, 53, 53, 64, 64, 50, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4314, 36, 102, 102, 62, 63, 75, 75, 61, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4314, 36, 102, 102, 62, 63, 75, 75, 61, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4315, 23, 64, 64, 40, 33, 59, 50, 43, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4316, 17, 51, 51, 34, 32, 26, 29, 21, 451); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4317, 14, 40, 40, 18, 19, 24, 29, 25, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4318, 19, 51, 51, 23, 25, 30, 38, 32, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4319, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4320, 55, 139, 139, 90, 74, 134, 112, 96, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4321, 16, 41, 41, 20, 24, 20, 24, 33, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4321, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4322, 14, 40, 40, 18, 19, 24, 29, 25, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4322, 13, 38, 38, 17, 18, 22, 27, 23, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4322, 15, 42, 42, 19, 20, 25, 31, 26, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4323, 7, 25, 25, 11, 12, 14, 17, 15, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4323, 7, 25, 25, 12, 13, 16, 14, 12, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4324, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4325, 19, 54, 54, 34, 28, 49, 42, 36, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4326, 14, 43, 43, 26, 22, 38, 32, 28, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4327, 24, 66, 66, 42, 35, 61, 52, 44, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4328, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4329, 54, 148, 148, 100, 94, 159, 137, 121, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4330, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4330, 22, 53, 53, 26, 31, 26, 31, 43, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4331, 15, 42, 42, 19, 20, 25, 31, 26, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4331, 16, 44, 44, 20, 21, 26, 33, 28, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4331, 17, 46, 46, 21, 23, 28, 34, 29, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4332, 9, 29, 29, 13, 14, 17, 20, 18, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4332, 11, 34, 34, 16, 18, 22, 20, 16, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4333, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4334, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4334, 16, 47, 47, 29, 25, 42, 36, 31, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4335, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4335, 25, 69, 69, 44, 36, 64, 54, 46, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4336, 32, 91, 91, 58, 61, 70, 64, 42, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4336, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4337, 42, 92, 92, 45, 45, 45, 45, 45, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4337, 42, 109, 109, 70, 57, 104, 87, 74, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4337, 42, 130, 130, 87, 99, 95, 104, 62, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4338, 48, 147, 147, 99, 113, 108, 118, 70, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4338, 48, 147, 147, 94, 75, 123, 103, 51, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4338, 48, 132, 132, 89, 84, 142, 123, 108, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4339, 55, 220, 220, 134, 93, 131, 113, 99, 455); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4339, 55, 183, 183, 134, 101, 145, 189, 112, 327); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4340, 36, 112, 112, 75, 79, 97, 82, 53, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4342, 17, 50, 50, 38, 43, 14, 26, 14, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4343, 29, 90, 90, 73, 82, 32, 53, 32, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4344, 39, 117, 117, 97, 108, 42, 69, 42, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4345, 59, 172, 172, 144, 161, 61, 102, 61, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4346, 28, 91, 91, 62, 43, 45, 43, 51, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4347, 20, 57, 57, 44, 50, 16, 30, 16, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4348, 33, 101, 101, 82, 92, 36, 59, 36, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4349, 43, 128, 128, 106, 119, 46, 76, 46, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4350, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4350, 57, 167, 167, 139, 156, 59, 99, 59, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4351, 23, 74, 74, 39, 50, 60, 50, 57, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4352, 65, 169, 169, 54, 73, 54, 86, 125, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4353, 65, 189, 189, 158, 119, 164, 125, 80, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4354, 42, 130, 130, 83, 66, 108, 91, 45, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4355, 25, 80, 80, 43, 54, 65, 54, 62, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4356, 62, 162, 162, 52, 70, 52, 83, 120, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4357, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4358, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4359, 44, 118, 118, 38, 51, 38, 60, 86, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4360, 58, 152, 152, 49, 66, 49, 78, 112, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4361, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4361, 16, 49, 49, 17, 21, 17, 25, 34, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4367, 41, 106, 106, 62, 59, 73, 60, 64, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4367, 41, 106, 106, 73, 93, 48, 48, 32, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4368, 39, 90, 90, 61, 50, 58, 58, 89, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4368, 38, 90, 90, 49, 49, 56, 68, 68, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4369, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4369, 39, 92, 92, 51, 50, 58, 69, 69, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4369, 38, 80, 80, 33, 30, 98, 60, 87, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4370, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4370, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4371, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4371, 40, 96, 96, 63, 43, 43, 43, 87, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4372, 21, 55, 55, 35, 46, 27, 37, 25, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4372, 22, 61, 61, 34, 31, 33, 30, 39, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4373, 60, 169, 169, 74, 110, 122, 194, 110, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4373, 60, 187, 187, 137, 104, 104, 122, 108, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4373, 60, 157, 157, 151, 152, 139, 116, 89, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4373, 60, 157, 157, 127, 152, 163, 116, 89, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4374, 52, 143, 143, 101, 127, 80, 106, 75, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4374, 51, 171, 171, 145, 99, 84, 84, 69, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4374, 51, 155, 155, 79, 94, 79, 120, 135, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4374, 53, 150, 150, 103, 98, 124, 98, 124, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4375, 54, 159, 159, 110, 94, 121, 94, 116, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4375, 55, 151, 151, 123, 74, 79, 79, 200, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4375, 54, 162, 162, 148, 89, 89, 89, 121, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4375, 55, 150, 150, 145, 101, 90, 90, 134, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4376, 41, 110, 110, 56, 56, 40, 40, 32, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4376, 41, 106, 106, 81, 89, 36, 44, 52, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4377, 64, 173, 173, 104, 104, 136, 136, 136, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4377, 64, 148, 148, 72, 66, 181, 117, 162, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4377, 65, 169, 169, 112, 151, 151, 86, 138, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4377, 65, 176, 176, 145, 119, 106, 184, 80, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4378, 37, 97, 97, 81, 81, 59, 59, 55, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4378, 37, 101, 101, 59, 81, 66, 81, 44, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4378, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4379, 48, 133, 133, 108, 65, 70, 70, 175, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4379, 47, 130, 130, 125, 87, 78, 78, 115, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4379, 48, 147, 147, 75, 89, 75, 113, 127, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4379, 45, 141, 141, 84, 76, 66, 76, 111, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4380, 60, 163, 163, 86, 110, 122, 122, 194, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4380, 60, 163, 163, 98, 98, 128, 128, 128, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4380, 60, 179, 179, 117, 116, 123, 146, 146, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4380, 60, 175, 175, 146, 110, 152, 116, 74, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4381, 18, 54, 54, 27, 27, 20, 20, 16, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4381, 19, 52, 52, 49, 28, 28, 28, 15, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4382, 28, 70, 70, 59, 71, 31, 31, 26, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4382, 29, 78, 78, 64, 64, 47, 47, 44, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4383, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4383, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4383, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4383, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4383, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4383, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4384, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4384, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4384, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4384, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4384, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4384, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4385, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4385, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4385, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4385, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4385, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4385, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4386, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4386, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4386, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4386, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4386, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4386, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4387, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4387, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4387, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4387, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4387, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4387, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4388, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4388, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4388, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4388, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4388, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4388, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4389, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4389, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4389, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4389, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4389, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4389, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4390, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4390, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4390, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4390, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4390, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4390, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4391, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4391, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4391, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4391, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4391, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4391, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4392, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4392, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4392, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4392, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4392, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4392, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4393, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4393, 100, 286, 286, 271, 161, 271, 161, 151, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4393, 100, 276, 276, 191, 251, 111, 171, 211, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4393, 100, 246, 246, 161, 231, 281, 181, 181, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4393, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4393, 100, 306, 306, 191, 341, 191, 341, 141, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4394, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4394, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4394, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4394, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4394, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4394, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4395, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4395, 50, 122, 122, 98, 58, 86, 56, 68, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4395, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4395, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4395, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4395, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4396, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4396, 50, 128, 128, 58, 78, 48, 48, 38, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4396, 50, 98, 98, 38, 43, 33, 78, 103, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4396, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4396, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4396, 50, 168, 168, 53, 38, 63, 43, 38, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4397, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4397, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4397, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4397, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4397, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4397, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4398, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4398, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4398, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4398, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4398, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4398, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4399, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4399, 50, 98, 98, 38, 43, 33, 78, 103, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4399, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4399, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4399, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4399, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4400, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4400, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4400, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4400, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4400, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4400, 50, 123, 123, 83, 63, 93, 73, 68, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4401, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4401, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4401, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4401, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4401, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4401, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4402, 27, 81, 81, 57, 49, 33, 49, 47, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4402, 27, 80, 80, 54, 44, 44, 42, 60, 472); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4403, 65, 176, 176, 115, 138, 128, 125, 179, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4403, 65, 189, 189, 106, 125, 171, 125, 145, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4404, 65, 195, 195, 155, 110, 155, 110, 159, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4404, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4405, 31, 83, 83, 49, 45, 49, 45, 55, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4405, 31, 83, 83, 49, 45, 49, 45, 55, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4406, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4406, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4407, 65, 195, 195, 155, 110, 155, 110, 159, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4407, 65, 195, 195, 155, 110, 155, 110, 159, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4408, 65, 195, 195, 190, 125, 67, 125, 138, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4408, 65, 254, 254, 158, 138, 67, 138, 86, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4409, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4409, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4410, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4410, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4413, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4413, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4414, 39, 121, 121, 97, 68, 81, 68, 109, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4414, 39, 121, 121, 97, 68, 81, 68, 109, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4415, 65, 195, 195, 158, 110, 132, 110, 179, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4415, 65, 228, 228, 106, 119, 138, 164, 106, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4416, 65, 208, 208, 171, 145, 86, 145, 132, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4416, 65, 221, 221, 171, 151, 80, 151, 99, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4417, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4417, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4418, 39, 121, 121, 86, 68, 86, 68, 95, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4418, 39, 121, 121, 86, 68, 86, 68, 95, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4419, 65, 195, 195, 141, 110, 141, 110, 155, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4419, 65, 195, 195, 141, 110, 141, 110, 155, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4420, 65, 181, 181, 142, 93, 142, 93, 166, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4420, 65, 181, 181, 142, 93, 142, 93, 166, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4421, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4421, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4422, 39, 109, 109, 97, 88, 61, 72, 106, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4422, 39, 117, 117, 100, 100, 58, 50, 34, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4423, 65, 176, 176, 158, 144, 99, 118, 174, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4423, 65, 208, 208, 203, 197, 106, 132, 60, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4424, 61, 166, 166, 108, 130, 120, 118, 168, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4424, 61, 178, 178, 100, 118, 161, 118, 136, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4425, 61, 184, 184, 146, 103, 146, 103, 150, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4425, 61, 172, 172, 179, 148, 100, 112, 112, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4426, 31, 83, 83, 49, 45, 49, 45, 55, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4426, 31, 83, 83, 49, 45, 49, 45, 55, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4427, 45, 138, 138, 109, 77, 109, 77, 112, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4427, 45, 138, 138, 109, 77, 109, 77, 112, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4428, 61, 184, 184, 146, 103, 146, 103, 150, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4428, 61, 184, 184, 146, 103, 146, 103, 150, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4429, 24, 69, 69, 37, 32, 32, 32, 49, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4429, 24, 69, 69, 37, 32, 32, 32, 49, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4430, 61, 184, 184, 179, 118, 63, 118, 130, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4430, 61, 239, 239, 148, 130, 63, 130, 81, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4431, 40, 104, 104, 67, 55, 99, 83, 71, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4431, 40, 104, 104, 67, 55, 99, 83, 71, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4432, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4432, 31, 95, 95, 71, 44, 25, 44, 47, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4435, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4435, 31, 98, 98, 78, 55, 65, 55, 88, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4436, 45, 138, 138, 111, 77, 93, 77, 125, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4436, 45, 138, 138, 111, 77, 93, 77, 125, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4437, 61, 184, 184, 148, 103, 124, 103, 168, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4437, 61, 214, 214, 100, 112, 130, 155, 100, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4438, 61, 196, 196, 161, 136, 81, 136, 124, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4438, 61, 208, 208, 161, 142, 75, 142, 94, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4439, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4439, 31, 90, 90, 43, 47, 43, 47, 50, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4440, 45, 138, 138, 99, 77, 99, 77, 109, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4440, 45, 138, 138, 99, 77, 99, 77, 109, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4441, 61, 184, 184, 133, 103, 133, 103, 146, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4441, 61, 184, 184, 133, 103, 133, 103, 146, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4442, 61, 171, 171, 134, 87, 134, 87, 156, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4442, 61, 171, 171, 134, 87, 134, 87, 156, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4443, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4443, 31, 89, 89, 78, 71, 50, 58, 85, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4444, 45, 125, 125, 111, 101, 70, 83, 122, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4444, 45, 134, 134, 115, 115, 66, 57, 39, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4445, 61, 166, 166, 148, 135, 94, 111, 163, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4445, 61, 196, 196, 191, 185, 100, 124, 57, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4446, 62, 162, 162, 120, 101, 120, 101, 155, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4446, 62, 168, 168, 83, 114, 83, 138, 145, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4447, 24, 66, 66, 49, 47, 30, 47, 36, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4447, 24, 66, 66, 49, 47, 30, 47, 36, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4448, 65, 193, 193, 177, 106, 106, 106, 145, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4449, 19, 51, 51, 22, 34, 25, 30, 36, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4450, 30, 101, 101, 87, 57, 45, 51, 75, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4451, 65, 176, 176, 109, 93, 109, 106, 80, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4452, 23, 75, 75, 52, 44, 62, 44, 40, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4453, 30, 203, 203, 21, 21, 60, 96, 48, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4454, 30, 101, 101, 63, 57, 96, 60, 69, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4455, 19, 54, 54, 32, 30, 25, 23, 28, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4456, 18, 50, 50, 24, 29, 36, 29, 22, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4457, 19, 62, 62, 46, 28, 17, 28, 30, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4458, 23, 69, 69, 48, 41, 36, 32, 43, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4459, 65, 208, 208, 154, 114, 164, 114, 112, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4459, 65, 221, 221, 171, 132, 119, 132, 93, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4459, 65, 241, 241, 203, 106, 93, 112, 142, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4460, 35, 96, 96, 70, 59, 70, 59, 89, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4461, 23, 68, 68, 52, 45, 40, 45, 48, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4462, 23, 76, 76, 24, 33, 44, 38, 24, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4463, 23, 66, 66, 42, 54, 36, 50, 32, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4464, 23, 75, 75, 43, 38, 43, 38, 45, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4465, 30, 110, 110, 45, 63, 51, 63, 45, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4466, 23, 64, 64, 43, 52, 29, 29, 38, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4467, 65, 182, 182, 197, 106, 151, 171, 112, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4468, 23, 64, 64, 47, 45, 29, 45, 35, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4469, 31, 86, 86, 47, 40, 40, 40, 62, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4470, 35, 99, 99, 64, 77, 71, 70, 98, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4471, 23, 68, 68, 52, 31, 27, 33, 44, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4472, 65, 160, 160, 107, 80, 107, 80, 93, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4473, 31, 98, 98, 76, 55, 76, 55, 78, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4474, 65, 195, 195, 132, 119, 112, 125, 145, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4475, 65, 176, 176, 106, 80, 112, 86, 73, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4476, 19, 52, 52, 34, 24, 30, 24, 40, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4477, 62, 184, 184, 169, 101, 101, 101, 138, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4478, 32, 91, 91, 70, 60, 54, 60, 65, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4479, 25, 76, 76, 58, 39, 58, 39, 67, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4480, 36, 102, 102, 61, 46, 64, 50, 43, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4480, 36, 110, 110, 59, 75, 92, 75, 87, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4481, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4482, 16, 47, 47, 33, 21, 21, 21, 31, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4482, 16, 52, 52, 36, 31, 21, 31, 29, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4483, 60, 133, 133, 92, 68, 62, 62, 68, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4483, 60, 151, 151, 86, 140, 74, 86, 68, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4483, 60, 175, 175, 128, 194, 128, 110, 50, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4484, 32, 101, 101, 80, 86, 45, 51, 58, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4485, 25, 74, 74, 56, 48, 44, 48, 52, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4486, 62, 137, 137, 76, 151, 138, 95, 70, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4486, 62, 150, 150, 145, 89, 76, 89, 120, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4486, 62, 131, 131, 79, 173, 79, 136, 64, 498); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4486, 62, 187, 187, 200, 107, 166, 107, 163, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4487, 18, 57, 57, 40, 34, 24, 34, 33, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4488, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4488, 37, 115, 115, 82, 64, 82, 64, 90, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4489, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4490, 45, 116, 116, 66, 57, 48, 48, 66, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4491, 54, 169, 169, 132, 100, 89, 100, 127, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4492, 39, 98, 98, 34, 58, 65, 112, 58, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4493, 38, 114, 114, 49, 56, 60, 56, 37, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4493, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4494, 45, 103, 103, 66, 66, 79, 75, 60, 501); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4494, 45, 156, 156, 120, 106, 57, 106, 70, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4495, 62, 174, 174, 188, 101, 145, 163, 107, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4496, 21, 61, 61, 31, 30, 35, 30, 42, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4496, 21, 59, 59, 35, 33, 27, 25, 30, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4497, 32, 88, 88, 68, 54, 48, 61, 78, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4498, 38, 92, 92, 56, 87, 41, 60, 68, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4498, 38, 111, 111, 113, 94, 60, 71, 83, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4499, 21, 55, 55, 41, 29, 27, 29, 37, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4499, 21, 70, 70, 46, 35, 23, 27, 27, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4500, 22, 61, 61, 41, 50, 28, 28, 37, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4501, 62, 131, 131, 126, 138, 95, 83, 95, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4501, 62, 176, 176, 78, 122, 102, 135, 55, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4501, 62, 177, 177, 182, 76, 64, 64, 99, 506); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4501, 62, 186, 186, 161, 192, 130, 107, 67, 507); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4502, 60, 139, 139, 74, 86, 62, 62, 62, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4502, 60, 149, 149, 99, 74, 99, 74, 86, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4502, 60, 151, 151, 128, 74, 128, 74, 68, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4503, 22, 66, 66, 50, 30, 26, 32, 42, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4504, 39, 133, 133, 65, 73, 77, 73, 54, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4505, 22, 61, 61, 44, 28, 28, 28, 41, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4506, 58, 177, 177, 196, 130, 95, 107, 138, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4507, 12, 34, 34, 20, 17, 17, 20, 14, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4508, 14, 41, 41, 24, 22, 21, 20, 27, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4509, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4510, 26, 85, 85, 50, 46, 40, 46, 66, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4511, 14, 39, 39, 20, 20, 19, 20, 26, 509); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4512, 36, 102, 102, 82, 68, 61, 104, 46, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4513, 21, 71, 71, 41, 38, 33, 38, 54, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4514, 21, 55, 55, 35, 25, 25, 25, 48, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4515, 13, 43, 43, 25, 25, 18, 18, 17, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4516, 17, 53, 53, 31, 31, 23, 23, 21, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4517, 27, 89, 89, 57, 57, 44, 44, 63, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4518, 34, 110, 110, 71, 71, 54, 54, 78, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4519, 51, 232, 232, 186, 125, 120, 89, 125, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4520, 39, 117, 117, 81, 69, 89, 69, 85, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4521, 10, 31, 31, 14, 20, 16, 18, 21, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4522, 17, 48, 48, 28, 25, 24, 24, 32, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4523, 20, 59, 59, 34, 32, 30, 38, 34, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4524, 44, 122, 122, 79, 95, 88, 86, 122, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4525, 57, 150, 150, 111, 93, 111, 93, 142, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4527, 64, 135, 135, 66, 81, 66, 81, 117, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4527, 64, 212, 212, 194, 124, 124, 124, 98, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4528, 21, 59, 59, 34, 32, 34, 32, 39, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4528, 21, 59, 59, 34, 32, 34, 32, 39, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4528, 21, 59, 59, 34, 32, 34, 32, 39, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4529, 64, 186, 186, 136, 207, 136, 117, 53, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4529, 64, 218, 218, 130, 162, 79, 117, 156, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4530, 42, 138, 138, 101, 75, 108, 75, 74, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4531, 24, 57, 57, 28, 28, 28, 28, 28, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4531, 24, 57, 57, 28, 33, 28, 33, 47, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4532, 61, 178, 178, 130, 197, 130, 112, 51, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4532, 61, 208, 208, 124, 155, 75, 112, 148, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4533, 56, 142, 142, 109, 109, 97, 97, 81, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4533, 57, 150, 150, 88, 122, 99, 122, 65, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4533, 56, 130, 130, 64, 58, 159, 103, 142, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4533, 55, 117, 117, 74, 85, 101, 85, 118, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4534, 55, 170, 170, 101, 91, 79, 91, 134, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4534, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4534, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4534, 51, 181, 181, 97, 108, 97, 108, 79, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4535, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4535, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4536, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4536, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4537, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4537, 38, 99, 99, 58, 55, 68, 56, 60, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4538, 55, 145, 145, 96, 129, 129, 74, 118, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4538, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4539, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4539, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4540, 31, 83, 83, 55, 47, 44, 47, 41, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4540, 32, 82, 82, 74, 29, 58, 29, 58, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4540, 32, 85, 85, 47, 44, 45, 42, 54, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4541, 38, 114, 114, 82, 71, 68, 71, 57, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4541, 39, 102, 102, 56, 52, 54, 51, 65, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4541, 38, 95, 95, 87, 33, 68, 33, 68, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4542, 56, 130, 130, 97, 131, 92, 75, 64, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4542, 55, 150, 150, 79, 101, 79, 123, 96, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4542, 56, 130, 130, 69, 64, 81, 137, 103, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4543, 39, 117, 117, 73, 50, 65, 50, 65, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4543, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4543, 41, 183, 183, 118, 68, 52, 68, 60, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4543, 42, 117, 117, 62, 62, 70, 78, 62, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4544, 32, 79, 79, 35, 35, 51, 35, 70, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4544, 33, 91, 91, 46, 46, 33, 33, 26, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4545, 41, 98, 98, 44, 44, 64, 44, 89, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4545, 40, 108, 108, 55, 55, 39, 39, 31, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4546, 63, 193, 193, 115, 104, 90, 104, 153, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4546, 62, 168, 168, 101, 120, 101, 120, 126, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4546, 62, 218, 218, 89, 126, 101, 126, 89, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4546, 62, 174, 174, 120, 114, 145, 114, 145, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4547, 32, 79, 79, 35, 35, 42, 48, 35, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4547, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4547, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4547, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4548, 33, 81, 81, 36, 36, 43, 49, 36, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4548, 35, 99, 99, 52, 52, 59, 66, 52, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4548, 34, 97, 97, 51, 51, 58, 64, 51, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4548, 36, 102, 102, 53, 53, 61, 68, 53, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4549, 30, 74, 74, 42, 39, 54, 39, 54, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4549, 31, 83, 83, 68, 40, 68, 40, 37, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4549, 32, 77, 77, 42, 42, 48, 58, 58, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4550, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4550, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4550, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4550, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4550, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4550, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4551, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4551, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4551, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4551, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4551, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4551, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4552, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4552, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4552, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4552, 50, 168, 168, 53, 38, 63, 43, 38, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4552, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4552, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4553, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4553, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4553, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4553, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4553, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4553, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4554, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4554, 100, 266, 266, 301, 201, 161, 161, 181, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4554, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4554, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4554, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4554, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4555, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4555, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4555, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4555, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4555, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4555, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4556, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4556, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4556, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4556, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4556, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4556, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4557, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4557, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4557, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4557, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4557, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4557, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4558, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4558, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4558, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4558, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4558, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4558, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4559, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4559, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4559, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4559, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4559, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4559, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4560, 15, 42, 42, 31, 22, 20, 22, 28, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4561, 15, 42, 42, 19, 20, 25, 31, 26, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4562, 15, 39, 39, 22, 31, 31, 17, 28, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4563, 15, 38, 38, 17, 17, 23, 20, 22, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4564, 15, 45, 45, 26, 29, 27, 29, 23, 514); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4565, 15, 43, 43, 25, 23, 22, 21, 29, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4566, 15, 45, 45, 26, 24, 29, 25, 26, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4567, 15, 41, 41, 20, 22, 18, 17, 20, 515); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4568, 15, 42, 42, 19, 23, 19, 23, 21, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4569, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4570, 15, 40, 40, 20, 22, 20, 26, 25, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4572, 15, 48, 48, 17, 20, 31, 34, 28, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4573, 15, 42, 42, 16, 19, 22, 34, 26, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4574, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4574, 50, 143, 143, 98, 113, 120, 146, 67, 518); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4574, 50, 138, 138, 90, 108, 100, 98, 139, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4574, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4574, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4574, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4575, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4575, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4575, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4575, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4575, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4575, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4576, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4576, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4576, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4576, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4577, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4577, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4577, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4577, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4578, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4578, 50, 158, 158, 123, 93, 83, 93, 118, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4578, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4578, 50, 135, 135, 103, 114, 103, 110, 98, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4579, 50, 169, 169, 113, 152, 113, 95, 131, 520); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4579, 50, 169, 169, 152, 113, 95, 113, 131, 521); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4579, 50, 169, 169, 113, 95, 113, 152, 131, 522); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4579, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4580, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4580, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4580, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4582, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4582, 50, 143, 143, 98, 113, 120, 146, 67, 518); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4582, 50, 138, 138, 90, 108, 100, 98, 139, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4582, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4582, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4582, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4583, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4583, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4583, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4583, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4583, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4583, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4584, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4584, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4584, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4584, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4585, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4585, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4585, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4585, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4586, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4586, 50, 158, 158, 123, 93, 83, 93, 118, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4586, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4586, 50, 135, 135, 103, 114, 103, 110, 98, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4587, 50, 169, 169, 113, 152, 113, 95, 131, 520); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4587, 50, 169, 169, 152, 113, 95, 113, 131, 521); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4587, 50, 169, 169, 113, 95, 113, 152, 131, 522); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4587, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4588, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4588, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4588, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4590, 27, 62, 62, 36, 44, 36, 44, 47, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4591, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4591, 19, 63, 63, 34, 23, 19, 23, 21, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4592, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4592, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4593, 29, 66, 66, 38, 47, 38, 47, 50, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4593, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4594, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4594, 32, 145, 145, 93, 54, 42, 54, 48, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4595, 35, 99, 99, 59, 70, 59, 70, 73, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4595, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4596, 27, 79, 79, 84, 57, 47, 47, 52, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4597, 14, 37, 37, 21, 25, 21, 25, 26, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4598, 24, 57, 57, 32, 40, 32, 40, 42, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4599, 12, 33, 33, 18, 22, 18, 22, 23, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4599, 12, 33, 33, 18, 22, 18, 22, 23, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4599, 12, 43, 43, 28, 21, 17, 17, 17, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4600, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4601, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4602, 27, 62, 62, 36, 44, 36, 44, 47, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4603, 28, 64, 64, 37, 45, 37, 45, 48, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4603, 28, 88, 88, 48, 31, 26, 31, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4604, 18, 45, 45, 25, 31, 25, 31, 33, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4604, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4605, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4605, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4606, 29, 66, 66, 38, 47, 38, 47, 50, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4606, 29, 91, 91, 50, 32, 27, 32, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4607, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4607, 32, 145, 145, 93, 54, 42, 54, 48, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4608, 35, 99, 99, 59, 70, 59, 70, 73, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4608, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4609, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4610, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4610, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4611, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4612, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4613, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4614, 27, 79, 79, 84, 57, 47, 47, 52, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4615, 33, 74, 74, 43, 53, 43, 53, 56, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4615, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4616, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4616, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4617, 18, 45, 45, 25, 31, 25, 31, 33, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4617, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4618, 31, 70, 70, 40, 50, 40, 50, 53, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4618, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4619, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4619, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4620, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4620, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4621, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4622, 34, 97, 97, 58, 68, 58, 68, 71, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4623, 21, 51, 51, 29, 35, 29, 35, 37, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4623, 21, 67, 67, 46, 33, 27, 27, 27, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4624, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4624, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4625, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4625, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4626, 60, 163, 163, 98, 116, 98, 116, 122, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4626, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4627, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4628, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4629, 39, 113, 113, 89, 108, 54, 108, 64, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4629, 39, 98, 98, 85, 58, 61, 58, 69, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4630, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4630, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4631, 35, 92, 92, 70, 66, 42, 66, 51, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4631, 35, 117, 117, 91, 77, 45, 52, 45, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4632, 66, 165, 165, 167, 133, 74, 173, 129, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4633, 16, 55, 55, 36, 28, 18, 21, 21, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4634, 35, 117, 117, 91, 77, 45, 52, 45, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4634, 35, 110, 110, 105, 70, 38, 70, 77, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4635, 36, 98, 98, 68, 46, 61, 46, 46, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4635, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4636, 37, 112, 112, 55, 40, 88, 118, 96, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4637, 36, 145, 145, 89, 79, 39, 79, 50, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4638, 64, 135, 135, 79, 98, 79, 98, 104, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4638, 64, 161, 161, 149, 149, 72, 168, 117, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4638, 64, 173, 173, 104, 124, 104, 124, 130, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4639, 35, 117, 117, 91, 77, 45, 52, 45, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4639, 35, 141, 141, 87, 77, 38, 77, 49, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4640, 41, 119, 119, 93, 114, 56, 114, 67, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4641, 41, 135, 135, 105, 89, 52, 60, 52, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4641, 41, 102, 102, 89, 60, 64, 60, 73, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4642, 53, 209, 209, 130, 114, 55, 114, 71, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4643, 54, 213, 213, 132, 116, 56, 116, 73, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4643, 54, 164, 164, 159, 105, 56, 105, 116, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4644, 37, 89, 89, 70, 47, 44, 47, 62, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4644, 37, 123, 123, 96, 81, 47, 55, 47, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4644, 37, 89, 89, 70, 47, 44, 47, 62, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4645, 40, 132, 132, 103, 87, 51, 59, 51, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4646, 63, 158, 158, 159, 127, 71, 166, 123, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4647, 61, 135, 135, 69, 69, 69, 69, 69, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4647, 61, 178, 178, 124, 87, 69, 69, 69, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4647, 61, 202, 202, 142, 142, 112, 136, 112, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4648, 62, 168, 168, 101, 120, 101, 120, 126, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4648, 61, 172, 172, 179, 100, 142, 100, 155, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4648, 61, 153, 153, 173, 91, 69, 161, 133, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4649, 45, 111, 111, 97, 66, 70, 66, 79, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4650, 47, 149, 149, 139, 92, 59, 111, 101, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4651, 53, 172, 172, 135, 114, 66, 77, 66, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4651, 53, 150, 150, 156, 87, 124, 87, 135, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4652, 65, 215, 215, 151, 151, 119, 145, 119, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4652, 65, 195, 195, 190, 125, 67, 125, 138, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4652, 65, 176, 176, 106, 125, 106, 125, 132, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4653, 62, 174, 174, 157, 101, 101, 114, 145, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4653, 62, 174, 174, 138, 169, 83, 169, 99, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4653, 62, 156, 156, 157, 125, 70, 163, 121, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4654, 49, 194, 194, 120, 105, 52, 105, 66, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4654, 50, 183, 183, 163, 118, 78, 88, 68, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4655, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4656, 28, 73, 73, 62, 43, 45, 43, 51, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4657, 48, 132, 132, 79, 94, 79, 94, 99, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4657, 51, 158, 158, 117, 99, 98, 87, 143, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4658, 25, 104, 104, 64, 56, 29, 56, 36, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4658, 26, 85, 85, 62, 53, 52, 47, 75, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4659, 52, 148, 148, 153, 86, 122, 86, 132, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4660, 43, 132, 132, 127, 84, 46, 84, 93, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4660, 44, 127, 127, 130, 73, 104, 73, 113, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4661, 60, 163, 163, 98, 116, 98, 116, 122, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4662, 57, 176, 176, 130, 111, 109, 97, 160, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4662, 58, 164, 164, 170, 95, 136, 95, 147, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4663, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4664, 25, 59, 59, 34, 41, 34, 41, 44, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4665, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4666, 42, 117, 117, 70, 83, 70, 83, 87, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4667, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4668, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4668, 52, 143, 143, 86, 101, 86, 101, 106, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4669, 13, 35, 35, 20, 23, 20, 23, 25, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4670, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4671, 46, 132, 132, 136, 76, 108, 76, 118, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4672, 11, 31, 31, 17, 21, 17, 21, 22, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4672, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4673, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4674, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4674, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4675, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4675, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4675, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4675, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4676, 26, 76, 76, 35, 55, 45, 37, 35, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4677, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4677, 27, 65, 65, 44, 36, 41, 41, 63, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4677, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4678, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4678, 27, 67, 67, 36, 36, 41, 49, 49, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4678, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4679, 29, 90, 90, 41, 43, 50, 53, 35, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4679, 29, 72, 72, 41, 35, 38, 38, 67, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4680, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4680, 29, 130, 130, 56, 41, 64, 44, 41, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4681, 29, 75, 75, 43, 43, 53, 53, 41, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4681, 29, 84, 84, 51, 51, 61, 61, 50, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4682, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4682, 30, 98, 98, 71, 54, 54, 63, 56, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4683, 27, 68, 68, 41, 36, 36, 36, 63, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4683, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4683, 27, 89, 89, 64, 49, 49, 57, 51, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4683, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4683, 27, 68, 68, 41, 36, 36, 36, 63, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4684, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4684, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4684, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4685, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4685, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4685, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4686, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4687, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4687, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4687, 30, 80, 80, 72, 123, 66, 42, 57, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4688, 31, 76, 76, 47, 40, 40, 40, 71, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4688, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4689, 28, 90, 90, 59, 62, 76, 65, 43, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4689, 34, 97, 97, 47, 51, 78, 71, 64, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4690, 32, 75, 75, 61, 51, 45, 51, 32, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4690, 35, 99, 99, 84, 73, 59, 73, 38, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4690, 32, 91, 91, 42, 67, 54, 45, 42, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4691, 19, 56, 56, 32, 44, 36, 44, 25, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4692, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4692, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4693, 17, 45, 45, 23, 24, 23, 29, 28, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4693, 17, 51, 51, 26, 28, 26, 33, 38, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4694, 9, 28, 28, 16, 14, 14, 16, 11, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4694, 13, 36, 36, 21, 18, 18, 21, 14, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4694, 17, 45, 45, 26, 22, 23, 26, 17, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4695, 41, 147, 147, 60, 85, 68, 85, 60, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4696, 40, 100, 100, 73, 67, 47, 59, 69, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4696, 40, 168, 168, 75, 47, 75, 47, 67, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4697, 30, 86, 86, 69, 57, 51, 87, 39, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4697, 30, 94, 94, 75, 51, 75, 51, 54, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4698, 33, 94, 94, 76, 63, 56, 96, 43, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4698, 33, 103, 103, 82, 56, 82, 56, 59, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4699, 36, 102, 102, 82, 68, 61, 104, 46, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4699, 36, 111, 111, 89, 61, 89, 61, 64, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4700, 39, 109, 109, 89, 73, 65, 112, 50, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4700, 39, 119, 119, 97, 65, 97, 65, 69, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4701, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4701, 42, 128, 128, 104, 70, 104, 70, 74, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4702, 13, 39, 39, 27, 25, 18, 22, 26, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4703, 22, 70, 70, 21, 34, 21, 34, 30, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4704, 41, 114, 114, 60, 60, 68, 77, 60, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4705, 22, 66, 66, 30, 39, 30, 39, 28, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4706, 22, 66, 66, 39, 30, 41, 32, 28, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4707, 39, 98, 98, 89, 34, 69, 34, 69, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4707, 39, 164, 164, 73, 46, 73, 46, 65, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4707, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4708, 40, 144, 144, 59, 83, 67, 83, 59, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4709, 40, 100, 100, 73, 67, 47, 59, 69, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4710, 29, 84, 84, 67, 56, 50, 85, 38, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4710, 29, 91, 91, 73, 50, 73, 50, 53, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4711, 35, 99, 99, 80, 66, 59, 101, 45, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4711, 35, 108, 108, 87, 59, 87, 59, 63, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4712, 38, 107, 107, 87, 71, 64, 109, 49, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4712, 38, 117, 117, 94, 64, 94, 64, 68, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4713, 41, 114, 114, 93, 77, 68, 118, 52, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4713, 41, 125, 125, 101, 68, 101, 68, 73, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4714, 44, 122, 122, 100, 82, 73, 126, 56, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4714, 44, 134, 134, 108, 73, 108, 73, 78, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4715, 13, 39, 39, 27, 25, 18, 22, 26, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4716, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4717, 35, 82, 82, 62, 77, 69, 56, 40, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4717, 37, 92, 92, 77, 66, 55, 44, 44, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4717, 39, 109, 109, 58, 58, 65, 73, 58, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4718, 21, 63, 63, 29, 37, 29, 37, 27, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4719, 21, 63, 63, 37, 29, 39, 31, 27, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4720, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4720, 25, 59, 59, 34, 49, 49, 26, 44, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4721, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4721, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4722, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4722, 36, 152, 152, 68, 43, 68, 43, 61, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4722, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4723, 38, 94, 94, 41, 60, 49, 68, 92, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4723, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4723, 38, 103, 103, 68, 90, 90, 52, 83, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4724, 40, 98, 98, 43, 63, 51, 71, 97, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4724, 40, 200, 200, 91, 55, 91, 55, 67, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4724, 40, 124, 124, 95, 95, 95, 95, 87, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4725, 39, 98, 98, 89, 34, 69, 34, 69, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4725, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4726, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4726, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4726, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4726, 21, 59, 59, 44, 27, 41, 25, 29, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4727, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4727, 29, 130, 130, 56, 41, 64, 44, 41, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4728, 49, 157, 157, 101, 96, 91, 91, 121, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4728, 49, 213, 213, 91, 66, 105, 71, 66, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4729, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4729, 27, 65, 65, 44, 36, 41, 41, 63, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4729, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4730, 24, 71, 71, 32, 52, 42, 35, 32, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4732, 29, 75, 75, 43, 43, 53, 53, 41, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4732, 29, 84, 84, 51, 51, 61, 61, 50, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4733, 29, 90, 90, 41, 43, 50, 53, 35, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4733, 29, 72, 72, 41, 35, 38, 38, 67, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4734, 49, 145, 145, 66, 69, 81, 86, 56, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4734, 49, 140, 140, 91, 81, 86, 86, 135, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4735, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4735, 24, 66, 66, 49, 30, 47, 28, 32, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4736, 23, 63, 63, 38, 32, 32, 30, 52, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4737, 40, 103, 103, 63, 53, 53, 49, 87, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4738, 60, 176, 176, 125, 103, 103, 97, 161, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4740, 23, 63, 63, 35, 39, 35, 41, 43, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4741, 23, 64, 64, 37, 35, 43, 36, 38, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4742, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4743, 43, 124, 124, 85, 92, 66, 103, 110, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4744, 29, 77, 77, 47, 39, 39, 36, 64, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4745, 45, 115, 115, 70, 59, 59, 54, 97, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4746, 59, 137, 137, 79, 67, 73, 73, 132, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4746, 59, 148, 148, 91, 75, 75, 69, 126, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4746, 59, 149, 149, 79, 79, 67, 67, 85, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4748, 26, 70, 70, 39, 43, 39, 46, 48, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4749, 26, 71, 71, 41, 39, 48, 40, 42, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4750, 45, 129, 129, 89, 96, 69, 107, 115, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4751, 16, 62, 62, 33, 34, 41, 39, 29, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4751, 16, 76, 76, 33, 25, 37, 26, 25, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4752, 36, 112, 112, 75, 79, 97, 82, 53, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4752, 42, 117, 117, 57, 62, 95, 87, 78, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4753, 16, 55, 55, 36, 41, 39, 42, 26, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4754, 44, 100, 100, 82, 69, 60, 69, 42, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4754, 47, 130, 130, 111, 97, 78, 97, 50, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4754, 44, 134, 134, 108, 84, 100, 84, 61, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4755, 16, 76, 76, 33, 25, 37, 26, 25, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4755, 16, 62, 62, 33, 34, 41, 39, 29, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4756, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4756, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4757, 18, 47, 47, 24, 25, 24, 31, 29, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4757, 18, 54, 54, 27, 29, 27, 34, 40, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4758, 9, 28, 28, 16, 14, 14, 16, 11, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4758, 13, 36, 36, 21, 18, 18, 21, 14, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4758, 16, 42, 42, 25, 21, 21, 25, 17, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4759, 27, 71, 71, 47, 32, 41, 32, 55, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4759, 27, 71, 71, 48, 34, 49, 44, 66, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4760, 24, 76, 76, 40, 40, 52, 42, 35, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4761, 27, 84, 84, 44, 44, 57, 47, 39, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4761, 27, 71, 71, 47, 32, 41, 32, 55, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4762, 27, 71, 71, 48, 34, 49, 44, 66, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4762, 27, 84, 84, 44, 44, 57, 47, 39, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4763, 34, 98, 98, 66, 54, 55, 52, 74, 472); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4764, 34, 93, 93, 61, 81, 81, 47, 75, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4765, 12, 41, 41, 20, 22, 24, 23, 25, 533); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4765, 12, 40, 40, 20, 21, 30, 28, 26, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4766, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4767, 43, 115, 115, 92, 110, 118, 84, 65, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4768, 43, 115, 115, 109, 110, 101, 84, 65, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4769, 32, 91, 91, 74, 61, 54, 93, 42, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4769, 34, 105, 105, 85, 58, 85, 58, 61, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4770, 38, 107, 107, 87, 71, 64, 109, 49, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4770, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4771, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4771, 44, 134, 134, 108, 73, 108, 73, 78, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4772, 47, 130, 130, 106, 87, 78, 134, 59, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4772, 48, 145, 145, 118, 79, 118, 79, 84, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4772, 49, 169, 169, 137, 101, 86, 91, 112, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4773, 15, 43, 43, 30, 28, 20, 25, 29, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4774, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4775, 43, 120, 120, 84, 93, 106, 93, 119, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4776, 41, 131, 131, 87, 83, 97, 85, 89, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4776, 41, 205, 205, 93, 56, 93, 56, 68, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4778, 17, 50, 50, 28, 43, 24, 28, 23, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4781, 9, 27, 27, 14, 13, 26, 14, 22, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4782, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4782, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4782, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4782, 50, 108, 108, 103, 113, 78, 68, 78, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4782, 50, 128, 128, 73, 118, 63, 73, 58, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4782, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4783, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4783, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4783, 52, 163, 163, 119, 91, 91, 106, 94, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4783, 52, 137, 137, 122, 143, 70, 70, 60, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4783, 52, 163, 163, 112, 122, 54, 54, 49, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4783, 53, 170, 170, 108, 103, 98, 98, 131, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4784, 51, 109, 109, 130, 115, 48, 48, 74, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4784, 51, 139, 139, 87, 104, 89, 104, 82, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4784, 51, 115, 115, 64, 125, 115, 79, 59, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4784, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4784, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4784, 51, 115, 115, 69, 186, 53, 69, 94, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4785, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4785, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4785, 51, 160, 160, 107, 102, 120, 104, 110, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4785, 52, 143, 143, 106, 138, 75, 106, 70, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4785, 53, 119, 119, 71, 193, 55, 71, 98, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4785, 53, 150, 150, 119, 92, 88, 88, 130, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4786, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4786, 53, 177, 177, 98, 108, 98, 124, 98, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4786, 53, 165, 165, 112, 130, 114, 135, 106, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4786, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4786, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4786, 55, 123, 123, 112, 79, 79, 101, 156, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4787, 52, 143, 143, 143, 132, 91, 96, 106, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4787, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4787, 51, 140, 140, 99, 110, 125, 110, 140, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4787, 53, 166, 166, 151, 161, 82, 92, 71, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4787, 52, 158, 158, 127, 138, 70, 80, 91, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4787, 51, 140, 140, 135, 94, 84, 84, 125, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4788, 52, 179, 179, 153, 105, 86, 127, 107, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4788, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4788, 51, 140, 140, 99, 110, 125, 110, 140, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4788, 52, 153, 153, 86, 153, 143, 96, 80, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4788, 51, 186, 186, 155, 145, 69, 69, 64, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4788, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4789, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4789, 52, 163, 163, 96, 91, 106, 148, 127, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4789, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4789, 53, 193, 193, 161, 151, 71, 71, 66, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4789, 51, 115, 115, 104, 74, 74, 94, 145, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4789, 51, 160, 160, 130, 89, 84, 99, 155, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4790, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4790, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4790, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4790, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4790, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4790, 50, 119, 119, 87, 68, 73, 73, 73, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4791, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4791, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4791, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4791, 50, 161, 161, 103, 98, 93, 93, 124, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4791, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4791, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4792, 52, 179, 179, 106, 132, 65, 96, 127, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4792, 51, 140, 140, 104, 74, 64, 64, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4792, 52, 148, 148, 122, 101, 80, 80, 112, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4792, 51, 135, 135, 79, 110, 89, 110, 59, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4792, 52, 137, 137, 70, 75, 70, 91, 106, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4792, 51, 334, 334, 28, 28, 59, 130, 74, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4793, 51, 150, 150, 125, 140, 53, 89, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4793, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4793, 54, 132, 132, 83, 73, 94, 73, 105, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4793, 51, 135, 135, 64, 110, 104, 130, 64, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4793, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4793, 54, 148, 148, 110, 143, 78, 110, 73, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4794, 53, 182, 182, 108, 135, 66, 98, 130, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4794, 51, 155, 155, 79, 94, 79, 120, 135, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4794, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4794, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4794, 51, 145, 145, 64, 94, 104, 166, 94, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4794, 53, 230, 230, 98, 71, 114, 77, 71, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4795, 52, 226, 226, 96, 70, 112, 75, 70, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4795, 52, 148, 148, 158, 86, 122, 138, 91, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4795, 52, 174, 174, 119, 114, 101, 112, 102, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4795, 52, 158, 158, 106, 112, 138, 117, 75, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4795, 51, 155, 155, 79, 94, 79, 120, 135, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4795, 51, 171, 171, 99, 99, 115, 125, 94, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4796, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4796, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4796, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4796, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4796, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4796, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4797, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4797, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4797, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4797, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4797, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4797, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4798, 5, 21, 21, 11, 11, 13, 13, 11, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4798, 5, 20, 20, 11, 10, 10, 10, 12, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4799, 12, 38, 38, 24, 30, 17, 17, 12, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4799, 11, 33, 33, 15, 16, 19, 20, 23, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4799, 11, 31, 31, 18, 28, 15, 15, 17, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4800, 9, 29, 29, 13, 13, 18, 13, 23, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4800, 9, 30, 30, 16, 14, 11, 13, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4801, 62, 181, 181, 138, 114, 101, 101, 114, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4801, 61, 178, 178, 173, 75, 142, 75, 142, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4801, 62, 205, 205, 151, 101, 138, 101, 126, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4801, 61, 169, 169, 173, 130, 136, 94, 94, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4802, 29, 78, 78, 64, 38, 64, 38, 35, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4802, 29, 87, 87, 44, 56, 70, 61, 53, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4803, 29, 71, 71, 35, 35, 53, 47, 44, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4804, 30, 89, 89, 54, 54, 45, 45, 69, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4804, 30, 83, 83, 72, 48, 36, 60, 84, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4805, 21, 65, 65, 39, 32, 29, 29, 43, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4805, 21, 59, 59, 35, 30, 30, 28, 48, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4806, 19, 54, 54, 44, 32, 36, 36, 46, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4806, 19, 56, 56, 36, 25, 34, 23, 44, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4807, 24, 66, 66, 54, 40, 44, 44, 56, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4807, 24, 73, 73, 61, 47, 52, 52, 64, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4808, 23, 64, 64, 52, 38, 43, 43, 54, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4808, 23, 64, 64, 52, 38, 43, 43, 54, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4809, 14, 54, 54, 24, 19, 26, 22, 29, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4811, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4811, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4811, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4812, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4812, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4813, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4813, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4814, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4814, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4814, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4815, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4815, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4815, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4815, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4816, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4816, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4816, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4816, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4816, 25, 84, 84, 54, 39, 34, 39, 26, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4817, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4817, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4817, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4818, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4818, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4819, 33, 97, 97, 76, 96, 72, 63, 56, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4820, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4820, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4820, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4820, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4821, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4821, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4821, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4822, 33, 124, 124, 86, 66, 59, 82, 49, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4823, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4823, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4824, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4824, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4825, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4825, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4825, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4825, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4825, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4826, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4826, 30, 89, 89, 69, 87, 66, 57, 51, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4826, 30, 85, 85, 54, 50, 63, 54, 63, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4827, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4827, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4827, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4827, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4828, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4828, 32, 95, 95, 74, 93, 70, 61, 54, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4828, 30, 89, 89, 72, 50, 75, 66, 71, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4829, 34, 100, 100, 105, 58, 81, 92, 61, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4830, 32, 95, 95, 77, 53, 80, 70, 76, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4830, 32, 95, 95, 77, 53, 80, 70, 76, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4831, 34, 100, 100, 78, 98, 75, 64, 58, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4832, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4832, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4833, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4833, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4833, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4834, 33, 124, 124, 86, 66, 59, 82, 49, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4835, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4835, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4835, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4835, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4835, 25, 84, 84, 54, 39, 34, 39, 26, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4836, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4837, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4837, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4838, 37, 89, 89, 66, 88, 62, 51, 44, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4838, 37, 119, 119, 77, 55, 47, 55, 36, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4839, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4840, 38, 122, 122, 79, 56, 49, 56, 37, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4841, 33, 97, 97, 76, 96, 72, 63, 56, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4842, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4842, 28, 92, 92, 59, 43, 37, 43, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4842, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4843, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4843, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4843, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4844, 24, 81, 81, 52, 37, 32, 37, 25, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4844, 24, 81, 81, 52, 37, 32, 37, 25, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4845, 28, 106, 106, 73, 57, 51, 71, 43, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4845, 30, 113, 113, 78, 60, 54, 75, 45, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4846, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4846, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4847, 49, 140, 140, 110, 140, 105, 91, 81, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4847, 49, 179, 179, 125, 96, 86, 120, 71, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4848, 50, 123, 123, 98, 60, 93, 78, 106, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4849, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4849, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4850, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4850, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4850, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4850, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4851, 47, 111, 111, 83, 111, 78, 64, 54, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4851, 47, 111, 111, 83, 111, 78, 64, 54, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4851, 47, 172, 172, 120, 92, 83, 115, 68, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4851, 47, 135, 135, 106, 134, 101, 87, 78, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4852, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4852, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4853, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4853, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4854, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4854, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4854, 23, 78, 78, 50, 36, 31, 36, 24, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4855, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4855, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4855, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4856, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4856, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4856, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4857, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4857, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4857, 28, 84, 84, 65, 82, 62, 54, 48, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4858, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4858, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4858, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4858, 25, 76, 76, 59, 74, 56, 49, 44, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4858, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4859, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4860, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4860, 49, 155, 155, 91, 86, 101, 140, 120, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4861, 55, 178, 178, 105, 101, 105, 151, 98, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4861, 55, 172, 172, 101, 96, 112, 156, 134, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4862, 55, 172, 172, 101, 96, 112, 156, 134, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4862, 58, 187, 187, 110, 107, 110, 159, 103, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4862, 58, 181, 181, 107, 101, 118, 165, 141, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4863, 41, 98, 98, 73, 97, 68, 56, 48, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4863, 42, 121, 121, 95, 120, 91, 78, 70, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4863, 41, 113, 113, 72, 67, 85, 73, 85, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4864, 47, 139, 139, 62, 71, 62, 71, 59, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4865, 39, 117, 117, 52, 60, 52, 60, 50, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4865, 37, 108, 108, 84, 107, 81, 70, 62, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4865, 37, 108, 108, 84, 107, 81, 70, 62, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4866, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4866, 39, 94, 94, 69, 93, 65, 54, 46, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4866, 40, 96, 96, 71, 95, 67, 55, 47, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4866, 41, 98, 98, 73, 97, 68, 56, 48, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4867, 45, 125, 125, 93, 66, 66, 66, 57, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4867, 44, 131, 131, 38, 64, 38, 64, 56, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4868, 46, 127, 127, 95, 67, 67, 67, 58, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4868, 47, 167, 167, 68, 97, 78, 97, 68, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4869, 48, 132, 132, 99, 70, 70, 70, 60, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4869, 49, 174, 174, 71, 101, 81, 101, 71, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4870, 58, 193, 193, 176, 112, 112, 112, 89, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4870, 54, 191, 191, 78, 110, 89, 110, 78, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4871, 39, 94, 94, 69, 93, 65, 54, 46, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4871, 43, 124, 124, 97, 123, 93, 80, 72, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4871, 41, 119, 119, 97, 66, 101, 89, 96, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4872, 42, 121, 121, 129, 70, 99, 112, 74, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4873, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4873, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4874, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4874, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4875, 47, 111, 111, 68, 106, 50, 73, 83, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4876, 45, 129, 129, 102, 129, 97, 84, 75, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4877, 42, 117, 117, 91, 78, 74, 86, 87, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4877, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4878, 48, 132, 132, 103, 88, 84, 98, 99, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4878, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4879, 56, 153, 153, 120, 102, 97, 113, 114, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4879, 55, 156, 156, 123, 156, 118, 101, 90, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4880, 46, 139, 139, 113, 76, 113, 76, 81, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4881, 45, 114, 114, 76, 57, 76, 57, 66, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4882, 43, 102, 102, 76, 102, 72, 59, 50, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4882, 43, 102, 102, 76, 102, 72, 59, 50, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4883, 35, 92, 92, 50, 52, 57, 52, 63, 544); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4883, 35, 92, 92, 70, 66, 42, 66, 51, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4883, 37, 104, 104, 79, 51, 51, 51, 73, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4884, 37, 130, 130, 99, 88, 47, 88, 59, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4885, 36, 102, 102, 77, 50, 50, 50, 71, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4885, 36, 94, 94, 71, 68, 43, 68, 52, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4886, 37, 93, 93, 81, 70, 47, 47, 62, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4887, 43, 102, 102, 63, 97, 46, 67, 76, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4888, 21, 55, 55, 31, 27, 25, 29, 35, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4888, 21, 70, 70, 46, 35, 23, 27, 27, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4889, 43, 107, 107, 93, 80, 54, 54, 72, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4890, 50, 113, 113, 83, 67, 63, 77, 78, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4890, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4890, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4890, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4891, 51, 120, 120, 89, 120, 84, 69, 59, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4891, 51, 160, 160, 104, 74, 64, 74, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4891, 52, 122, 122, 106, 60, 60, 70, 96, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4891, 53, 124, 124, 108, 61, 61, 71, 98, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4891, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4891, 52, 148, 148, 117, 65, 70, 106, 101, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4892, 51, 150, 150, 86, 91, 79, 79, 80, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4892, 51, 141, 141, 96, 81, 79, 79, 89, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4892, 51, 160, 160, 104, 74, 64, 74, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4892, 51, 120, 120, 89, 120, 84, 69, 59, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4892, 51, 160, 160, 125, 94, 74, 84, 69, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4892, 51, 130, 130, 130, 103, 59, 135, 100, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4893, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4893, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4893, 53, 135, 135, 151, 80, 61, 140, 116, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4893, 53, 135, 135, 135, 107, 61, 140, 104, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4893, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4893, 51, 135, 135, 105, 84, 74, 94, 122, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4894, 53, 145, 145, 114, 97, 92, 107, 108, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4894, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4894, 51, 186, 186, 130, 99, 89, 125, 74, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4894, 51, 171, 171, 120, 120, 94, 115, 94, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4894, 53, 166, 166, 130, 98, 77, 87, 71, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4894, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4895, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4895, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4895, 52, 148, 148, 132, 86, 86, 96, 122, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4895, 51, 160, 160, 125, 94, 74, 84, 69, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4895, 53, 150, 150, 156, 130, 82, 98, 114, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4895, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4896, 51, 145, 145, 115, 145, 110, 94, 84, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4896, 51, 186, 186, 130, 99, 89, 125, 74, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4896, 52, 174, 174, 119, 114, 101, 112, 102, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4896, 52, 174, 174, 158, 106, 91, 112, 80, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4896, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4896, 52, 174, 174, 122, 122, 96, 117, 96, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4897, 51, 145, 145, 115, 145, 110, 94, 84, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4897, 53, 167, 167, 132, 105, 114, 103, 114, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4897, 52, 174, 174, 158, 106, 91, 112, 80, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4897, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4897, 52, 148, 148, 158, 86, 122, 138, 91, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4897, 51, 186, 186, 120, 104, 64, 104, 115, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4898, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4898, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4898, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4898, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4898, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4898, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4899, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4899, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4899, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4899, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4899, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4899, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4900, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4900, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4900, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4900, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4900, 55, 194, 194, 101, 101, 96, 96, 74, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4900, 55, 183, 183, 107, 118, 151, 123, 85, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4901, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4901, 51, 145, 145, 104, 166, 64, 94, 94, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4901, 52, 164, 164, 129, 103, 112, 101, 112, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4901, 51, 171, 171, 99, 110, 140, 115, 79, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4901, 52, 132, 132, 122, 210, 112, 70, 96, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4901, 51, 140, 140, 120, 104, 84, 104, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4902, 52, 148, 148, 117, 148, 112, 96, 86, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4902, 51, 130, 130, 120, 206, 110, 69, 94, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4902, 52, 158, 158, 112, 231, 80, 91, 54, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4902, 52, 189, 189, 158, 148, 70, 70, 65, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4902, 52, 163, 163, 109, 110, 127, 127, 106, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4902, 51, 140, 140, 110, 93, 89, 103, 104, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4903, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4903, 55, 227, 227, 96, 90, 145, 129, 96, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4903, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4903, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4903, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4903, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4904, 29, 72, 72, 41, 38, 35, 35, 47, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4904, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4905, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4905, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4905, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4905, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4905, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4906, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4906, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4906, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4906, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4907, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4907, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4907, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4907, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4908, 28, 70, 70, 40, 37, 34, 34, 46, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4908, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4908, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4909, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4909, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4910, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4910, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4910, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4912, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4912, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4913, 28, 81, 81, 76, 54, 48, 48, 71, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4913, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4913, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4914, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4914, 26, 63, 63, 58, 37, 32, 32, 53, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4914, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4915, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4915, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4916, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4916, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4916, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4916, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4917, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4918, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4918, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4918, 30, 88, 88, 51, 48, 45, 45, 58, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4919, 9, 29, 29, 19, 13, 13, 13, 20, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4920, 34, 124, 124, 51, 51, 68, 82, 64, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4921, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4921, 32, 91, 91, 86, 61, 54, 54, 80, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4921, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4922, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4922, 32, 95, 95, 74, 58, 55, 55, 80, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4923, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4923, 14, 46, 46, 26, 25, 24, 24, 29, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4924, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4924, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4924, 20, 63, 63, 48, 38, 36, 36, 52, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4928, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4928, 34, 112, 112, 71, 68, 64, 64, 85, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4930, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4930, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4930, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4931, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4931, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4932, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4932, 35, 103, 103, 80, 63, 60, 60, 87, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4933, 17, 46, 46, 26, 24, 23, 23, 30, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4933, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4933, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4933, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4933, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4934, 15, 40, 40, 35, 23, 20, 20, 32, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4934, 16, 42, 42, 37, 25, 21, 21, 34, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4934, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4935, 25, 75, 75, 44, 41, 39, 39, 49, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4935, 25, 75, 75, 44, 41, 39, 39, 49, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4936, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4936, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4937, 38, 124, 124, 79, 75, 71, 71, 95, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4937, 38, 124, 124, 79, 75, 71, 71, 95, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4938, 32, 79, 79, 48, 45, 61, 45, 61, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4938, 32, 79, 79, 35, 35, 51, 35, 70, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4938, 32, 91, 91, 70, 54, 48, 48, 96, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4938, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4939, 36, 102, 102, 79, 61, 53, 53, 107, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4939, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4939, 36, 105, 105, 71, 68, 86, 68, 86, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4940, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4940, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4941, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4941, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4942, 26, 66, 66, 42, 29, 29, 29, 58, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4942, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4943, 29, 72, 72, 44, 41, 56, 41, 56, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4943, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4944, 27, 79, 79, 60, 47, 41, 41, 82, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4945, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4946, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4947, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4947, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4947, 25, 74, 74, 56, 44, 39, 39, 76, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4948, 30, 77, 77, 39, 51, 39, 60, 45, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4949, 32, 79, 79, 48, 45, 61, 45, 61, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4949, 32, 82, 82, 42, 54, 42, 64, 48, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4950, 35, 85, 85, 52, 49, 66, 49, 66, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4950, 35, 110, 110, 66, 80, 66, 91, 73, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4951, 38, 92, 92, 56, 52, 71, 52, 71, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4951, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4952, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4952, 41, 119, 119, 81, 77, 97, 77, 97, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4953, 28, 70, 70, 31, 31, 45, 31, 62, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4953, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4953, 28, 81, 81, 43, 71, 62, 54, 51, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4954, 32, 91, 91, 70, 54, 48, 48, 96, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4954, 32, 95, 95, 67, 106, 42, 61, 61, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4955, 30, 86, 86, 45, 75, 66, 57, 54, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4955, 30, 89, 89, 60, 57, 72, 57, 72, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4956, 33, 81, 81, 49, 46, 63, 46, 63, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4956, 33, 94, 94, 72, 56, 49, 49, 99, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4957, 34, 123, 123, 63, 73, 66, 76, 51, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4958, 36, 102, 102, 79, 61, 53, 53, 107, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4958, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4958, 36, 105, 105, 71, 68, 86, 68, 86, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4959, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4959, 25, 74, 74, 56, 44, 39, 39, 76, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4960, 17, 55, 55, 38, 58, 24, 34, 34, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4960, 19, 58, 58, 44, 34, 30, 30, 59, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4961, 28, 70, 70, 31, 31, 45, 31, 62, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4961, 28, 70, 70, 43, 40, 54, 40, 54, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4962, 30, 110, 110, 56, 65, 59, 68, 46, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4963, 29, 69, 69, 64, 41, 35, 35, 58, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4963, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4964, 25, 76, 76, 54, 84, 34, 49, 49, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4964, 25, 76, 76, 54, 84, 34, 49, 49, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4965, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4965, 25, 93, 93, 48, 55, 50, 57, 39, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4966, 30, 89, 89, 63, 99, 39, 57, 57, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4967, 27, 65, 65, 60, 39, 33, 33, 55, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4967, 27, 81, 81, 57, 90, 36, 52, 52, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4967, 27, 100, 100, 51, 59, 53, 61, 42, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4968, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4968, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4969, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4970, 26, 76, 76, 58, 45, 40, 40, 79, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4971, 33, 120, 120, 61, 71, 64, 74, 50, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4971, 33, 97, 97, 66, 63, 79, 63, 79, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4972, 29, 75, 75, 38, 50, 38, 58, 44, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4973, 32, 79, 79, 48, 45, 61, 45, 61, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4973, 32, 82, 82, 42, 54, 42, 64, 48, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4974, 35, 85, 85, 52, 49, 66, 49, 66, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4974, 35, 110, 110, 66, 80, 66, 91, 73, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4975, 38, 92, 92, 56, 52, 71, 52, 71, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4975, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4976, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4976, 41, 119, 119, 81, 77, 97, 77, 97, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4977, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4977, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4978, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4978, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4979, 32, 95, 95, 74, 58, 55, 55, 80, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4979, 32, 95, 95, 74, 58, 55, 55, 80, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4980, 49, 140, 140, 110, 86, 82, 82, 120, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4980, 49, 140, 140, 110, 86, 82, 82, 120, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4981, 28, 70, 70, 40, 37, 34, 34, 46, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4981, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4981, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4982, 47, 111, 111, 78, 50, 51, 51, 87, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4982, 49, 140, 140, 110, 86, 82, 82, 120, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4983, 53, 150, 150, 119, 92, 88, 88, 130, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4983, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4984, 28, 81, 81, 76, 54, 48, 48, 71, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4984, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4984, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4985, 30, 86, 86, 81, 57, 51, 51, 75, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4985, 30, 86, 86, 81, 57, 51, 51, 75, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4985, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4986, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4986, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4986, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4988, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4988, 26, 63, 63, 58, 37, 32, 32, 53, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4988, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4989, 47, 130, 130, 50, 50, 55, 74, 68, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4989, 49, 174, 174, 71, 71, 97, 116, 91, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4990, 53, 188, 188, 77, 77, 104, 125, 98, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4990, 55, 194, 194, 79, 79, 108, 130, 101, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4991, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4992, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4992, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4992, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4992, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4993, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4993, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4993, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4993, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4994, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4994, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4994, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4994, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4995, 28, 70, 70, 48, 31, 32, 32, 54, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4995, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4995, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4996, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4996, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4996, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4997, 48, 137, 137, 108, 84, 80, 80, 118, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4997, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4997, 48, 137, 137, 108, 84, 80, 80, 118, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4998, 47, 111, 111, 64, 59, 54, 54, 74, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4998, 49, 138, 138, 81, 76, 71, 71, 92, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4999, 53, 148, 148, 87, 82, 77, 77, 99, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (4999, 55, 176, 176, 112, 107, 101, 101, 135, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5000, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5000, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5000, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5000, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5001, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5001, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5001, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5001, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5001, 25, 64, 64, 44, 29, 29, 29, 49, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5002, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5003, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5003, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5003, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5003, 26, 79, 79, 61, 48, 46, 46, 66, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5004, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5004, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5004, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5004, 28, 84, 84, 65, 51, 49, 49, 71, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5005, 47, 151, 151, 97, 92, 87, 87, 116, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5005, 47, 151, 151, 97, 92, 87, 87, 116, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5005, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5005, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5006, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5006, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5006, 30, 88, 88, 51, 48, 45, 45, 58, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5007, 29, 72, 72, 41, 38, 35, 35, 47, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5007, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5008, 29, 72, 72, 50, 32, 33, 33, 56, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5008, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5009, 19, 58, 58, 23, 23, 25, 33, 30, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5010, 54, 148, 148, 116, 89, 78, 78, 159, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5011, 59, 161, 161, 126, 97, 85, 85, 173, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5012, 53, 145, 145, 114, 68, 114, 68, 120, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5012, 57, 201, 201, 168, 84, 145, 84, 106, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5013, 27, 79, 79, 30, 30, 34, 44, 41, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5013, 27, 100, 100, 41, 41, 55, 66, 52, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5014, 38, 137, 137, 56, 56, 76, 91, 71, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5014, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5015, 60, 211, 211, 86, 86, 117, 141, 110, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5015, 60, 211, 211, 86, 86, 117, 141, 110, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5016, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5016, 57, 161, 161, 111, 105, 133, 105, 133, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5017, 46, 164, 164, 67, 67, 91, 109, 85, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5017, 48, 156, 156, 137, 89, 70, 79, 118, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5018, 31, 114, 114, 47, 47, 63, 75, 59, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5019, 55, 150, 150, 145, 101, 90, 90, 134, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5019, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5019, 55, 194, 194, 162, 82, 140, 82, 102, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5020, 17, 46, 46, 29, 21, 21, 21, 31, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5020, 17, 53, 53, 21, 21, 23, 30, 28, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5021, 51, 120, 120, 79, 53, 53, 53, 110, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5021, 55, 176, 176, 112, 107, 101, 101, 135, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5022, 59, 161, 161, 126, 97, 85, 85, 173, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5022, 61, 194, 194, 124, 118, 112, 112, 150, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5023, 54, 148, 148, 116, 69, 116, 69, 122, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5023, 54, 153, 153, 105, 100, 127, 100, 127, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5024, 31, 89, 89, 34, 34, 38, 50, 47, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5024, 33, 120, 120, 49, 49, 67, 80, 63, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5025, 44, 157, 157, 64, 64, 87, 105, 82, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5025, 44, 157, 157, 64, 64, 87, 105, 82, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5026, 59, 166, 166, 120, 191, 73, 108, 108, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5026, 59, 208, 208, 85, 85, 115, 139, 108, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5026, 59, 208, 208, 85, 85, 115, 139, 108, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5027, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5027, 57, 161, 161, 111, 105, 133, 105, 133, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5028, 45, 161, 161, 66, 66, 89, 107, 84, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5028, 47, 125, 125, 59, 101, 97, 120, 59, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5029, 34, 124, 124, 51, 51, 68, 82, 64, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5030, 55, 145, 145, 107, 79, 68, 68, 112, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5030, 57, 161, 161, 128, 99, 95, 95, 139, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5030, 59, 208, 208, 85, 85, 115, 139, 108, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5031, 9, 29, 29, 19, 13, 13, 13, 20, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5032, 46, 109, 109, 49, 49, 72, 49, 99, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5032, 43, 124, 124, 97, 76, 72, 72, 106, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5033, 48, 171, 171, 70, 70, 95, 114, 89, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5034, 39, 90, 90, 85, 54, 46, 46, 77, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5034, 41, 114, 114, 109, 77, 68, 68, 101, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5034, 37, 86, 86, 81, 51, 44, 44, 73, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5035, 41, 98, 98, 64, 44, 44, 44, 89, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5035, 41, 119, 119, 93, 73, 69, 69, 101, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5036, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5036, 14, 46, 46, 26, 25, 24, 24, 29, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5037, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5037, 18, 48, 48, 33, 22, 22, 22, 36, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5037, 20, 63, 63, 48, 38, 36, 36, 52, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5038, 35, 82, 82, 77, 49, 42, 42, 70, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5038, 35, 82, 82, 77, 49, 42, 42, 70, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5038, 35, 99, 99, 94, 66, 59, 59, 87, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5038, 36, 102, 102, 97, 68, 61, 61, 89, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5039, 48, 113, 113, 75, 51, 51, 51, 79, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5040, 42, 121, 121, 95, 74, 71, 71, 104, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5040, 39, 94, 94, 65, 42, 43, 43, 73, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5041, 13, 38, 38, 21, 20, 18, 18, 24, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5041, 44, 142, 142, 91, 86, 82, 82, 109, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5042, 37, 108, 108, 84, 66, 63, 63, 92, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5043, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5043, 44, 127, 127, 91, 144, 56, 82, 82, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5044, 48, 137, 137, 99, 156, 60, 89, 89, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5044, 51, 145, 145, 115, 89, 85, 85, 125, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5045, 55, 156, 156, 112, 178, 68, 101, 101, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5045, 55, 156, 156, 123, 96, 91, 91, 134, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5050, 44, 127, 127, 86, 82, 104, 82, 104, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5050, 39, 141, 141, 58, 58, 78, 93, 73, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5051, 36, 105, 105, 82, 64, 61, 61, 89, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5051, 37, 106, 106, 62, 59, 55, 55, 70, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5052, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5052, 6, 22, 22, 12, 11, 11, 11, 13, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5052, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5054, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5054, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5055, 38, 111, 111, 87, 68, 65, 65, 94, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5055, 44, 127, 127, 100, 78, 74, 74, 108, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5056, 17, 46, 46, 26, 24, 23, 23, 30, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5056, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5056, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5056, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5056, 15, 42, 42, 23, 22, 20, 20, 27, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5057, 16, 42, 42, 37, 25, 21, 21, 34, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5057, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5057, 18, 47, 47, 42, 27, 24, 24, 38, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5058, 28, 81, 81, 31, 31, 35, 46, 43, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5058, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5059, 33, 94, 94, 36, 36, 40, 53, 49, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5059, 32, 93, 93, 54, 51, 48, 48, 61, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5060, 37, 106, 106, 62, 59, 55, 55, 70, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5060, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5060, 38, 124, 124, 79, 75, 71, 71, 95, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5061, 56, 179, 179, 114, 109, 103, 103, 138, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5061, 44, 142, 142, 91, 86, 82, 82, 109, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5061, 54, 191, 191, 78, 78, 106, 128, 100, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5062, 37, 104, 104, 81, 62, 55, 55, 110, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5062, 37, 115, 115, 70, 84, 70, 96, 77, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5063, 39, 113, 113, 81, 128, 50, 73, 73, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5064, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5065, 26, 68, 68, 35, 45, 35, 53, 40, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5065, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5066, 32, 91, 91, 70, 54, 48, 48, 96, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5066, 32, 95, 95, 64, 61, 77, 61, 77, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5067, 30, 86, 86, 66, 51, 45, 45, 90, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5068, 30, 86, 86, 66, 51, 45, 45, 90, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5068, 30, 89, 89, 63, 99, 39, 57, 57, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5069, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5070, 30, 71, 71, 66, 42, 36, 36, 60, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5071, 34, 86, 86, 44, 58, 44, 68, 51, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5072, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5073, 43, 124, 124, 97, 76, 72, 72, 106, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5073, 43, 132, 132, 80, 97, 80, 110, 89, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5074, 47, 135, 135, 106, 83, 79, 79, 115, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5074, 48, 147, 147, 89, 108, 89, 123, 99, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5074, 49, 159, 159, 140, 91, 71, 81, 120, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5075, 32, 91, 91, 86, 61, 54, 54, 80, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5076, 100, 196, 196, 81, 71, 251, 151, 221, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5076, 100, 226, 226, 131, 111, 101, 121, 151, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5076, 100, 226, 226, 131, 121, 111, 111, 153, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5076, 100, 226, 226, 161, 101, 103, 103, 181, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5076, 100, 216, 216, 211, 131, 111, 111, 191, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5076, 100, 206, 206, 111, 101, 241, 111, 201, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5077, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5077, 100, 226, 226, 131, 111, 101, 121, 151, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5077, 100, 226, 226, 131, 121, 111, 111, 153, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5077, 100, 226, 226, 161, 101, 103, 103, 181, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5077, 100, 216, 216, 211, 131, 111, 111, 191, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5077, 100, 266, 266, 131, 141, 221, 201, 181, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5078, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5078, 100, 272, 272, 161, 151, 141, 141, 183, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5078, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5078, 100, 276, 276, 221, 121, 131, 201, 191, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5078, 100, 236, 236, 141, 131, 271, 151, 231, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5079, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5079, 100, 272, 272, 161, 151, 141, 141, 183, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5079, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5079, 100, 286, 286, 171, 161, 221, 191, 221, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5079, 100, 206, 206, 111, 101, 241, 111, 201, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5080, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5080, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5080, 100, 312, 312, 201, 191, 181, 181, 243, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5080, 100, 296, 296, 201, 181, 171, 191, 221, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5080, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5080, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5081, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5081, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5081, 100, 312, 312, 201, 191, 181, 181, 243, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5081, 100, 296, 296, 201, 181, 171, 191, 221, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5081, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5081, 100, 236, 236, 141, 131, 271, 151, 231, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5082, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5082, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5082, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5082, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5082, 100, 312, 312, 201, 191, 181, 181, 243, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5082, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5083, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5083, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5083, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5083, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5083, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5083, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5084, 100, 302, 302, 209, 197, 259, 211, 241, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5084, 100, 276, 276, 191, 251, 111, 171, 211, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5084, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5084, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5084, 100, 266, 266, 211, 125, 211, 125, 223, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5084, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5085, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5085, 100, 276, 276, 191, 181, 231, 181, 231, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5085, 100, 306, 306, 251, 171, 161, 191, 301, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5085, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5085, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5085, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5086, 50, 118, 118, 68, 63, 58, 58, 79, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5086, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5086, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5086, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5086, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5086, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5087, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5087, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5087, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5087, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5087, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5088, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5088, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5088, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5089, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5089, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5090, 36, 105, 105, 93, 61, 61, 68, 86, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5091, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5091, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5091, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5092, 37, 97, 97, 107, 57, 44, 99, 82, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5092, 37, 97, 97, 96, 76, 44, 99, 74, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5093, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5094, 40, 120, 120, 83, 59, 47, 47, 47, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5094, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5095, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5095, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5095, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5096, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5096, 43, 128, 128, 89, 63, 50, 50, 50, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5096, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5097, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5098, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5098, 30, 80, 80, 87, 47, 36, 81, 68, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5098, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5098, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5099, 33, 77, 77, 46, 122, 36, 46, 63, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5099, 36, 94, 94, 104, 56, 43, 97, 80, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5099, 33, 104, 104, 72, 148, 53, 59, 36, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5099, 38, 130, 130, 117, 79, 68, 83, 60, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5100, 27, 73, 73, 71, 57, 33, 74, 55, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5101, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5101, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5101, 25, 76, 76, 66, 44, 44, 49, 61, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5102, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5102, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5103, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5103, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5103, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5104, 27, 73, 73, 79, 43, 33, 74, 61, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5105, 30, 94, 94, 51, 33, 27, 33, 30, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5105, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5105, 30, 137, 137, 87, 51, 39, 51, 45, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5106, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5107, 14, 48, 48, 32, 24, 19, 19, 19, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5108, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5108, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5109, 33, 102, 102, 56, 36, 30, 36, 33, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5109, 33, 102, 102, 56, 36, 30, 36, 33, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5109, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5110, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5110, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5111, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5111, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5112, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5113, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5114, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5114, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5115, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5115, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5115, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5116, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5116, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5116, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5116, 33, 114, 114, 102, 69, 59, 72, 53, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5117, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5117, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5118, 32, 145, 145, 93, 54, 42, 54, 48, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5119, 13, 46, 46, 25, 17, 14, 17, 16, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5120, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5121, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5121, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5122, 34, 154, 154, 98, 58, 44, 58, 51, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5123, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5123, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5124, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5125, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5125, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5126, 39, 119, 119, 65, 42, 34, 42, 38, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5126, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5126, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5127, 41, 183, 183, 118, 68, 52, 68, 60, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5127, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5127, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5128, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5128, 43, 145, 145, 132, 89, 76, 93, 67, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5128, 43, 145, 145, 132, 89, 76, 93, 67, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5129, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5130, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5131, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5131, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5132, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5132, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5132, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5133, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5133, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5133, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5133, 33, 114, 114, 102, 69, 59, 72, 53, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5134, 15, 52, 52, 28, 19, 16, 19, 17, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5135, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5136, 26, 82, 82, 45, 29, 24, 29, 27, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5136, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5137, 31, 141, 141, 90, 53, 40, 53, 47, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5138, 36, 105, 105, 93, 61, 61, 68, 86, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5139, 40, 120, 120, 83, 59, 47, 47, 47, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5139, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5140, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5140, 43, 128, 128, 89, 63, 50, 50, 50, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5140, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5141, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5141, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5142, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5142, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5142, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5143, 37, 112, 112, 77, 55, 44, 44, 44, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5143, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5144, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5144, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5145, 55, 172, 172, 134, 101, 79, 90, 74, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5145, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5146, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5147, 37, 97, 97, 107, 57, 44, 99, 82, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5147, 37, 97, 97, 96, 76, 44, 99, 74, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5148, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5148, 31, 76, 76, 65, 37, 37, 44, 59, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5148, 31, 92, 92, 81, 53, 53, 59, 75, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5149, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5150, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5151, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5151, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5152, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5152, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5153, 55, 172, 172, 134, 101, 79, 90, 74, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5153, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5154, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5154, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5154, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5155, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5156, 52, 130, 130, 87, 65, 87, 65, 75, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5156, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5157, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5157, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5157, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5158, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5158, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5158, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5159, 30, 71, 71, 42, 111, 33, 42, 57, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5159, 32, 101, 101, 70, 144, 51, 58, 35, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5160, 54, 126, 126, 110, 62, 62, 73, 100, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5160, 53, 158, 158, 87, 55, 45, 55, 50, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5160, 55, 243, 243, 156, 90, 68, 90, 79, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5161, 58, 164, 164, 147, 95, 95, 107, 136, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5161, 59, 260, 260, 167, 97, 73, 97, 85, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5161, 60, 264, 264, 170, 98, 74, 98, 86, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5162, 25, 68, 68, 44, 34, 44, 34, 39, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5163, 52, 163, 163, 127, 96, 75, 86, 70, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5163, 58, 193, 193, 176, 118, 101, 124, 89, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5164, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5164, 22, 70, 70, 48, 34, 28, 28, 28, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5164, 21, 51, 51, 29, 35, 29, 35, 37, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5165, 57, 167, 167, 156, 93, 156, 93, 88, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5165, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5166, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5167, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5167, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5168, 35, 91, 91, 60, 45, 60, 45, 52, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5169, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5170, 36, 93, 93, 61, 46, 61, 46, 53, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5170, 35, 82, 82, 49, 129, 38, 49, 66, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5170, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5171, 49, 164, 164, 150, 101, 86, 105, 76, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5172, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5172, 22, 70, 70, 48, 34, 28, 28, 28, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5172, 23, 55, 55, 31, 38, 31, 38, 40, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5173, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5174, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5175, 28, 64, 64, 37, 45, 37, 45, 48, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5176, 53, 119, 119, 61, 61, 61, 61, 61, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5176, 57, 155, 155, 116, 150, 82, 116, 76, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5176, 58, 158, 158, 176, 118, 95, 95, 107, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5177, 33, 104, 104, 72, 148, 53, 59, 36, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5178, 28, 74, 74, 49, 37, 49, 37, 43, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5178, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5178, 27, 62, 62, 36, 44, 36, 44, 47, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5179, 54, 121, 121, 73, 197, 56, 73, 100, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5179, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5180, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5181, 55, 123, 123, 63, 63, 63, 63, 63, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5181, 59, 149, 149, 167, 88, 67, 156, 128, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5182, 23, 78, 78, 59, 45, 36, 40, 33, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5182, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5182, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5183, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5183, 25, 59, 59, 34, 41, 34, 41, 44, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5183, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5184, 35, 110, 110, 77, 157, 56, 63, 38, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5184, 37, 115, 115, 81, 166, 59, 66, 40, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5185, 54, 121, 121, 62, 62, 62, 62, 62, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5185, 54, 161, 161, 89, 56, 46, 56, 51, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5185, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5186, 59, 149, 149, 138, 138, 67, 156, 108, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5186, 59, 260, 260, 167, 97, 73, 97, 85, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5186, 59, 196, 196, 179, 120, 102, 126, 91, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5187, 26, 70, 70, 46, 35, 46, 35, 40, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5188, 51, 120, 120, 104, 59, 59, 69, 94, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5188, 53, 166, 166, 130, 98, 77, 87, 71, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5188, 55, 168, 168, 139, 102, 139, 102, 143, 550); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5189, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5189, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5189, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5190, 58, 158, 158, 176, 118, 95, 95, 107, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5190, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5191, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5192, 28, 92, 92, 85, 57, 37, 68, 62, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5193, 38, 124, 124, 99, 68, 84, 68, 83, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5194, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5195, 37, 95, 95, 63, 47, 63, 47, 55, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5195, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5195, 37, 89, 89, 70, 47, 44, 47, 62, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5196, 48, 161, 161, 147, 99, 84, 103, 75, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5197, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5197, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5197, 24, 57, 57, 32, 40, 32, 40, 42, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5198, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5199, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5200, 26, 70, 70, 46, 35, 46, 35, 40, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5200, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5201, 58, 158, 158, 176, 118, 95, 95, 107, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5201, 58, 185, 185, 148, 101, 125, 101, 124, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5202, 38, 118, 118, 83, 170, 60, 68, 41, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5203, 31, 81, 81, 53, 40, 53, 40, 47, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5203, 31, 70, 70, 40, 50, 40, 50, 53, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5203, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5204, 54, 169, 169, 159, 105, 67, 127, 116, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5204, 54, 180, 180, 164, 110, 94, 116, 83, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5205, 43, 124, 124, 110, 72, 72, 80, 102, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5205, 39, 105, 105, 93, 108, 54, 54, 46, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5205, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5206, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5207, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5207, 32, 85, 85, 93, 50, 38, 86, 72, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5207, 27, 65, 65, 39, 101, 30, 39, 52, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5207, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5208, 30, 71, 71, 42, 111, 33, 42, 57, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5208, 41, 106, 106, 118, 63, 48, 109, 91, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5208, 33, 77, 77, 46, 122, 36, 46, 63, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5208, 37, 126, 126, 114, 77, 66, 81, 59, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5209, 41, 94, 94, 56, 150, 44, 56, 77, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5209, 53, 135, 135, 151, 80, 61, 140, 116, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5209, 49, 110, 110, 66, 179, 52, 66, 91, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5209, 53, 177, 177, 161, 108, 92, 114, 82, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5210, 27, 73, 73, 71, 57, 33, 74, 55, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5211, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5211, 23, 59, 59, 50, 29, 29, 33, 45, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5211, 25, 76, 76, 66, 44, 44, 49, 61, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5212, 47, 158, 158, 111, 111, 87, 106, 87, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5213, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5213, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5214, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5214, 42, 92, 92, 53, 66, 53, 66, 70, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5214, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5215, 27, 73, 73, 79, 43, 33, 74, 61, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5216, 65, 195, 195, 190, 125, 67, 125, 138, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5216, 65, 163, 163, 184, 97, 73, 171, 141, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5217, 40, 124, 124, 119, 79, 43, 79, 87, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5218, 34, 90, 90, 68, 64, 41, 64, 49, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5218, 34, 137, 137, 85, 75, 37, 75, 47, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5218, 34, 107, 107, 102, 68, 37, 68, 75, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5219, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5219, 35, 106, 106, 52, 38, 84, 112, 91, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5219, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5220, 64, 180, 180, 162, 104, 104, 117, 149, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5220, 64, 180, 180, 143, 175, 85, 175, 102, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5220, 64, 212, 212, 149, 149, 117, 143, 117, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5221, 37, 101, 101, 70, 47, 62, 47, 47, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5222, 16, 55, 55, 36, 28, 18, 21, 21, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5223, 64, 148, 148, 130, 72, 72, 85, 117, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5223, 64, 199, 199, 188, 124, 79, 149, 136, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5223, 64, 231, 231, 207, 149, 98, 111, 85, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5224, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5225, 36, 112, 112, 107, 71, 39, 71, 79, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5226, 36, 95, 95, 64, 64, 75, 71, 60, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5226, 36, 98, 98, 68, 46, 61, 46, 46, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5227, 43, 124, 124, 97, 119, 59, 119, 70, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5227, 43, 107, 107, 93, 63, 67, 63, 76, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5227, 43, 158, 158, 140, 102, 67, 76, 59, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5228, 50, 153, 153, 103, 78, 48, 58, 58, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5229, 53, 172, 172, 135, 114, 66, 77, 66, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5229, 53, 150, 150, 119, 145, 71, 145, 85, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5230, 37, 123, 123, 96, 81, 47, 55, 47, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5230, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5230, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5231, 50, 128, 128, 98, 93, 58, 93, 71, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5232, 47, 135, 135, 106, 130, 64, 130, 76, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5233, 62, 243, 243, 151, 132, 64, 132, 83, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5233, 62, 205, 205, 188, 126, 107, 132, 95, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5233, 62, 156, 156, 145, 145, 70, 163, 114, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5234, 50, 128, 128, 98, 93, 58, 93, 71, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5235, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5236, 52, 163, 163, 153, 101, 65, 122, 112, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5236, 52, 189, 189, 169, 122, 80, 91, 70, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5236, 52, 169, 169, 164, 158, 86, 106, 49, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5237, 42, 134, 134, 125, 83, 53, 99, 91, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5238, 47, 139, 139, 111, 139, 83, 92, 64, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5239, 61, 135, 135, 69, 69, 69, 69, 69, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5239, 61, 172, 172, 136, 167, 81, 167, 97, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5239, 61, 180, 180, 100, 63, 51, 63, 57, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5240, 61, 141, 141, 124, 69, 69, 81, 112, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5240, 61, 190, 190, 179, 118, 75, 142, 130, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5240, 61, 221, 221, 197, 142, 94, 106, 81, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5241, 53, 161, 161, 156, 103, 55, 103, 114, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5242, 54, 153, 153, 159, 132, 83, 100, 116, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5242, 54, 169, 169, 159, 105, 67, 127, 116, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5243, 50, 153, 153, 103, 78, 48, 58, 58, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5244, 47, 153, 153, 120, 101, 59, 68, 59, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5245, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5245, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5245, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5245, 44, 118, 118, 86, 95, 42, 42, 34, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5246, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5247, 62, 187, 187, 182, 120, 64, 120, 132, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5247, 62, 224, 224, 200, 145, 95, 107, 83, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5247, 62, 168, 168, 188, 126, 101, 101, 114, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5248, 41, 135, 135, 105, 89, 52, 60, 52, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5249, 65, 285, 285, 184, 106, 80, 106, 93, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5249, 65, 254, 254, 158, 138, 67, 138, 86, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5249, 65, 163, 163, 151, 151, 73, 171, 119, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5250, 43, 124, 124, 97, 119, 59, 119, 70, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5250, 44, 175, 175, 108, 95, 47, 95, 60, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5251, 57, 195, 195, 166, 114, 104, 106, 91, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5251, 58, 181, 181, 170, 112, 72, 136, 124, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5252, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5253, 49, 157, 157, 126, 86, 106, 86, 105, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5253, 50, 153, 153, 148, 98, 53, 98, 108, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5254, 28, 90, 90, 85, 57, 31, 57, 62, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5255, 46, 150, 150, 118, 99, 58, 67, 58, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5256, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5257, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5258, 52, 230, 230, 148, 86, 65, 86, 75, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5259, 49, 150, 150, 145, 96, 52, 96, 105, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5259, 50, 173, 173, 147, 101, 92, 94, 81, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5260, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5261, 65, 203, 203, 161, 128, 138, 125, 138, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5261, 65, 189, 189, 171, 262, 106, 106, 93, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5261, 65, 224, 224, 242, 106, 112, 93, 103, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5262, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5263, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5264, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5264, 39, 125, 125, 116, 77, 50, 93, 85, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5265, 40, 136, 136, 123, 83, 71, 87, 63, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5266, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5266, 27, 84, 84, 57, 41, 33, 33, 33, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5267, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5267, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5268, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5269, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5270, 35, 113, 113, 87, 66, 52, 59, 49, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5271, 46, 155, 155, 141, 95, 81, 99, 72, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5272, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5272, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5272, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5273, 16, 54, 54, 29, 20, 17, 20, 18, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5273, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5274, 28, 128, 128, 82, 48, 37, 48, 43, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5275, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5275, 56, 164, 164, 148, 103, 153, 103, 125, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5276, 46, 155, 155, 108, 108, 85, 104, 85, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5277, 23, 107, 107, 68, 40, 31, 40, 36, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5278, 24, 111, 111, 71, 42, 32, 42, 37, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5280, 46, 155, 155, 141, 95, 81, 99, 72, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5281, 60, 205, 205, 175, 120, 109, 111, 96, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5281, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5282, 13, 46, 46, 25, 17, 14, 17, 16, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5283, 55, 243, 243, 156, 90, 68, 90, 79, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5284, 100, 226, 226, 201, 111, 111, 131, 181, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5284, 100, 286, 286, 201, 141, 111, 111, 111, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5284, 100, 206, 206, 201, 221, 151, 131, 151, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5284, 100, 216, 216, 151, 121, 141, 141, 221, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5284, 100, 206, 206, 153, 111, 91, 111, 185, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5284, 100, 246, 246, 141, 231, 121, 141, 111, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5285, 100, 286, 286, 201, 141, 111, 111, 111, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5285, 100, 276, 276, 221, 121, 131, 201, 191, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5285, 100, 206, 206, 153, 111, 91, 111, 185, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5285, 100, 256, 256, 151, 141, 131, 171, 151, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5285, 100, 246, 246, 141, 231, 121, 141, 111, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5286, 100, 226, 226, 101, 141, 151, 151, 241, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5286, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5286, 100, 306, 306, 241, 181, 141, 161, 131, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5286, 100, 266, 266, 221, 151, 221, 201, 261, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5286, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5286, 100, 266, 266, 201, 261, 141, 201, 131, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5287, 100, 246, 246, 251, 199, 111, 261, 193, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5287, 100, 226, 226, 201, 111, 111, 131, 181, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5287, 100, 306, 306, 241, 181, 141, 161, 131, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5287, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5287, 100, 256, 256, 203, 161, 141, 181, 235, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5287, 100, 268, 268, 185, 155, 151, 151, 171, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5288, 100, 246, 246, 251, 199, 111, 261, 193, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5288, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5288, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5288, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5288, 100, 256, 256, 203, 161, 141, 181, 235, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5288, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5289, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5289, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5289, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5289, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5289, 100, 266, 266, 201, 261, 141, 201, 131, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5289, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5290, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5290, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5290, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5290, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5290, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5290, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5291, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5291, 100, 276, 276, 291, 241, 151, 181, 211, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5291, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5291, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5291, 100, 406, 406, 171, 161, 261, 231, 171, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5291, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5292, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5292, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5292, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5292, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5292, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5292, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5293, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5293, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5293, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5293, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5293, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5293, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5294, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5294, 50, 139, 139, 95, 80, 78, 78, 88, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5294, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5294, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5294, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5294, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5295, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5295, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5295, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5295, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5295, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5295, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5296, 100, 526, 526, 107, 157, 107, 157, 107, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5296, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5296, 100, 246, 246, 251, 199, 111, 261, 193, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5296, 100, 246, 246, 281, 147, 111, 261, 215, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5296, 100, 246, 246, 231, 231, 111, 261, 181, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5296, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5297, 100, 526, 526, 107, 157, 107, 157, 107, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5297, 100, 304, 304, 207, 241, 211, 251, 197, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5297, 100, 306, 306, 181, 171, 201, 281, 241, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5297, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5297, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5297, 100, 326, 326, 231, 231, 181, 221, 181, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5298, 26, 71, 71, 40, 35, 29, 29, 40, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5298, 26, 71, 71, 40, 35, 29, 29, 40, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5299, 24, 57, 57, 44, 61, 35, 25, 32, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5299, 24, 57, 57, 44, 61, 35, 25, 32, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5299, 25, 69, 69, 61, 104, 56, 36, 49, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5300, 24, 73, 73, 35, 40, 35, 47, 35, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5300, 24, 73, 73, 35, 40, 35, 47, 35, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5300, 25, 89, 89, 49, 54, 49, 61, 49, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5301, 55, 183, 183, 101, 112, 101, 129, 101, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5301, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5302, 25, 76, 76, 36, 41, 36, 49, 36, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5302, 25, 76, 76, 36, 41, 36, 49, 36, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5302, 26, 92, 92, 50, 55, 50, 63, 50, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5303, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5303, 25, 76, 76, 36, 41, 36, 49, 36, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5303, 26, 71, 71, 63, 107, 58, 37, 50, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5304, 27, 73, 73, 41, 36, 30, 30, 41, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5304, 27, 73, 73, 41, 36, 30, 30, 41, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5305, 55, 139, 139, 129, 222, 118, 74, 101, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5305, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5306, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5306, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5306, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5306, 50, 123, 123, 53, 38, 108, 88, 88, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5306, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5306, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5307, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5307, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5307, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5307, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5307, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5307, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5308, 51, 125, 125, 79, 69, 89, 69, 99, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5308, 51, 135, 135, 120, 79, 59, 99, 140, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5308, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5308, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5308, 51, 140, 140, 104, 74, 74, 74, 64, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5308, 52, 215, 215, 91, 86, 138, 122, 91, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5309, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5309, 52, 189, 189, 122, 106, 65, 106, 117, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5309, 53, 347, 347, 29, 29, 61, 135, 77, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5309, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5309, 52, 179, 179, 96, 99, 122, 117, 86, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5310, 52, 137, 137, 122, 80, 60, 101, 143, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5310, 52, 127, 127, 80, 70, 91, 70, 101, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5310, 52, 162, 162, 110, 127, 112, 132, 104, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5310, 51, 145, 145, 89, 84, 135, 120, 155, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5310, 51, 211, 211, 89, 84, 135, 120, 89, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5310, 51, 145, 145, 155, 84, 120, 135, 89, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5311, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5311, 52, 174, 174, 112, 127, 122, 153, 112, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5311, 53, 352, 352, 34, 34, 103, 167, 82, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5311, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5311, 52, 189, 189, 122, 106, 65, 106, 117, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5311, 53, 177, 177, 119, 114, 156, 119, 130, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5312, 31, 76, 76, 44, 40, 56, 40, 56, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5312, 31, 76, 76, 34, 47, 50, 50, 78, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5313, 40, 96, 96, 55, 51, 71, 51, 71, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5313, 40, 96, 96, 43, 59, 63, 63, 99, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5314, 57, 155, 155, 93, 93, 122, 122, 122, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5314, 57, 155, 155, 173, 116, 93, 93, 105, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5314, 57, 155, 155, 122, 93, 122, 93, 88, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5315, 52, 117, 117, 112, 70, 60, 60, 101, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5315, 51, 165, 165, 95, 67, 95, 67, 72, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5315, 53, 172, 172, 104, 91, 71, 82, 119, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5316, 42, 122, 122, 54, 84, 71, 93, 39, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5316, 41, 110, 110, 56, 60, 56, 73, 85, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5316, 42, 113, 113, 49, 62, 66, 112, 91, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5317, 51, 140, 140, 84, 84, 84, 84, 84, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5317, 54, 159, 159, 115, 100, 94, 100, 79, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5317, 54, 153, 153, 127, 132, 89, 78, 78, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5317, 51, 125, 125, 115, 43, 89, 43, 89, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5318, 26, 71, 71, 50, 66, 35, 35, 29, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5318, 26, 92, 92, 45, 45, 35, 35, 35, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5318, 25, 69, 69, 51, 56, 24, 29, 34, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5319, 32, 85, 85, 70, 42, 70, 42, 38, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5319, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5320, 40, 104, 104, 87, 51, 87, 51, 47, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5320, 39, 94, 94, 50, 46, 58, 97, 73, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5321, 51, 140, 140, 64, 74, 99, 110, 120, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5321, 52, 117, 117, 80, 65, 75, 75, 117, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5322, 45, 146, 146, 85, 59, 85, 59, 64, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5322, 43, 188, 188, 80, 59, 93, 63, 59, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5323, 34, 83, 83, 54, 71, 41, 58, 37, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5323, 35, 92, 92, 66, 87, 45, 45, 38, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5324, 45, 147, 147, 93, 102, 115, 106, 75, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5324, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5324, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5325, 45, 147, 147, 93, 102, 115, 106, 75, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5325, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5325, 48, 175, 175, 109, 82, 109, 92, 87, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5326, 38, 118, 118, 98, 75, 98, 75, 52, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5326, 39, 141, 141, 73, 73, 69, 69, 54, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5326, 39, 117, 117, 65, 67, 81, 83, 65, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5326, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5327, 54, 164, 164, 137, 105, 137, 105, 73, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5327, 51, 181, 181, 94, 94, 89, 89, 69, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5327, 55, 161, 161, 85, 85, 112, 90, 74, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5327, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5328, 54, 164, 164, 137, 105, 137, 105, 73, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5328, 51, 181, 181, 94, 94, 89, 89, 69, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5328, 55, 161, 161, 85, 85, 112, 90, 74, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5328, 52, 195, 195, 106, 117, 122, 117, 91, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5329, 32, 82, 82, 64, 54, 42, 35, 48, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5329, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5329, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5329, 34, 86, 86, 54, 47, 61, 47, 68, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5330, 55, 150, 150, 96, 101, 118, 107, 68, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5330, 57, 178, 178, 139, 105, 82, 93, 76, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5330, 56, 175, 175, 114, 81, 69, 81, 53, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5331, 61, 190, 190, 124, 124, 94, 94, 136, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5331, 61, 188, 188, 129, 122, 159, 130, 148, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5331, 62, 272, 272, 176, 101, 76, 101, 89, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5332, 56, 156, 156, 159, 120, 125, 86, 86, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5332, 54, 164, 164, 137, 105, 137, 105, 73, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5332, 56, 147, 147, 141, 142, 130, 109, 83, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5332, 55, 172, 172, 115, 110, 129, 112, 118, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5333, 52, 163, 163, 112, 122, 54, 54, 49, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5333, 53, 113, 113, 66, 82, 66, 82, 87, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5334, 56, 198, 198, 81, 114, 92, 114, 81, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5334, 56, 198, 198, 81, 81, 110, 132, 103, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5334, 56, 153, 153, 81, 137, 120, 103, 97, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5334, 57, 130, 130, 65, 65, 99, 88, 82, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5335, 52, 153, 153, 106, 75, 60, 60, 60, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5335, 53, 135, 135, 114, 66, 114, 66, 61, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5335, 52, 143, 143, 91, 96, 112, 101, 65, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5336, 60, 175, 175, 122, 86, 68, 68, 68, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5336, 61, 202, 202, 185, 118, 118, 118, 94, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5336, 60, 187, 187, 146, 110, 86, 98, 80, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5337, 51, 120, 120, 94, 155, 84, 155, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5337, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5337, 52, 148, 148, 106, 169, 65, 96, 96, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5337, 52, 158, 158, 106, 112, 138, 117, 75, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5338, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5338, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5338, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5338, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5338, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5338, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5339, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5339, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5339, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5339, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5339, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5339, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5340, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5340, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5340, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5340, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5340, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5340, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5341, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5341, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5341, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5341, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5341, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5341, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5342, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5342, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5342, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5342, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5342, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5342, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5343, 50, 178, 178, 123, 113, 173, 163, 113, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5343, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5343, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5343, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5343, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5343, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5344, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5344, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5344, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5344, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5344, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5344, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5345, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5345, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5345, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5345, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5345, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5345, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5346, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5346, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5346, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5346, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5346, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5346, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5347, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5347, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5347, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5347, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5347, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5347, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5348, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5348, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5348, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5348, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5348, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5348, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5349, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5349, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5349, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5349, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5349, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5349, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5350, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5350, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5350, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5350, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5350, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5350, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5351, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5351, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5351, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5351, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5351, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5351, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5352, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5352, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5352, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5352, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5352, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5352, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5353, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5353, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5353, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5353, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5353, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5353, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5354, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5354, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5354, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5354, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5354, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5354, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5355, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5355, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5355, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5355, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5355, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5355, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5356, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5356, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5356, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5356, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5356, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5356, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5357, 63, 158, 158, 147, 147, 71, 166, 115, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5357, 63, 190, 190, 115, 141, 115, 159, 128, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5357, 64, 193, 193, 130, 149, 143, 156, 92, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5357, 64, 167, 167, 79, 136, 130, 162, 79, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5358, 40, 136, 136, 115, 115, 67, 67, 59, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5358, 40, 136, 136, 67, 75, 79, 75, 55, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5358, 40, 144, 144, 77, 85, 77, 85, 63, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5358, 40, 120, 120, 95, 87, 63, 71, 75, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5359, 64, 263, 263, 117, 72, 117, 72, 104, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5359, 64, 225, 225, 92, 130, 104, 130, 92, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5359, 64, 186, 186, 117, 117, 117, 117, 117, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5359, 64, 314, 314, 143, 85, 143, 85, 104, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5360, 15, 42, 42, 22, 22, 31, 22, 16, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5360, 10, 33, 33, 15, 19, 13, 13, 11, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5361, 17, 56, 56, 38, 28, 23, 23, 23, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5361, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5362, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5362, 23, 59, 59, 31, 29, 36, 59, 45, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5363, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5363, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5364, 11, 35, 35, 23, 19, 18, 19, 17, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5364, 13, 39, 39, 21, 18, 14, 17, 14, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5364, 14, 38, 38, 15, 28, 21, 28, 15, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5365, 7, 24, 24, 12, 12, 12, 12, 12, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5365, 8, 33, 33, 20, 15, 14, 15, 11, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5365, 8, 27, 27, 15, 13, 12, 14, 16, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5366, 16, 42, 42, 21, 21, 21, 21, 21, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5366, 17, 60, 60, 38, 28, 24, 28, 19, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5366, 16, 44, 44, 25, 21, 20, 23, 28, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5367, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5367, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5367, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5368, 100, 358, 358, 261, 221, 349, 221, 301, 556); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5368, 100, 376, 376, 271, 211, 221, 191, 241, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5369, 28, 72, 72, 59, 51, 43, 34, 34, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5369, 28, 87, 87, 48, 49, 59, 61, 48, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5370, 42, 117, 117, 74, 78, 91, 83, 53, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5370, 42, 125, 125, 95, 78, 70, 70, 53, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5370, 42, 125, 125, 74, 74, 66, 66, 78, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5371, 44, 193, 193, 82, 60, 95, 64, 60, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5371, 44, 140, 140, 91, 91, 69, 69, 100, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5372, 6, 22, 22, 12, 11, 10, 11, 13, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5372, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5373, 67, 294, 294, 189, 109, 82, 109, 96, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5373, 67, 288, 288, 122, 89, 143, 96, 89, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5373, 67, 302, 302, 243, 163, 156, 116, 163, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5374, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5374, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5375, 40, 124, 124, 91, 59, 107, 83, 95, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5375, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5375, 40, 120, 120, 71, 71, 63, 63, 75, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5375, 40, 120, 120, 91, 75, 67, 67, 75, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5376, 100, 346, 346, 241, 241, 241, 241, 241, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5376, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5377, 64, 173, 173, 117, 162, 117, 181, 124, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5377, 64, 199, 199, 85, 111, 143, 168, 130, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5377, 64, 207, 207, 131, 152, 131, 165, 83, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5377, 63, 196, 196, 115, 109, 128, 178, 153, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5378, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5379, 30, 104, 104, 51, 57, 60, 57, 42, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5379, 30, 80, 80, 57, 45, 45, 45, 57, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5380, 67, 194, 194, 143, 116, 169, 143, 189, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5380, 67, 208, 208, 189, 122, 176, 122, 136, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5380, 67, 235, 235, 176, 149, 143, 149, 109, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5380, 67, 208, 208, 139, 163, 140, 163, 136, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5380, 67, 205, 205, 141, 133, 175, 143, 163, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5380, 67, 215, 215, 169, 163, 134, 140, 133, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5381, 40, 116, 116, 51, 75, 83, 131, 75, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5381, 40, 112, 112, 59, 59, 67, 75, 59, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5381, 40, 98, 98, 43, 63, 51, 71, 97, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5381, 40, 96, 96, 43, 45, 59, 61, 71, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5382, 53, 166, 166, 145, 108, 92, 82, 122, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5382, 53, 129, 129, 114, 98, 66, 66, 87, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5382, 53, 156, 156, 135, 135, 77, 66, 45, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5383, 53, 145, 145, 114, 97, 87, 97, 105, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5383, 53, 145, 145, 130, 118, 82, 97, 142, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5383, 53, 144, 144, 102, 77, 61, 77, 61, 557); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5384, 56, 153, 153, 120, 102, 92, 102, 111, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5384, 56, 161, 161, 89, 86, 111, 86, 152, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5384, 56, 164, 164, 128, 97, 114, 86, 134, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5385, 80, 246, 246, 177, 161, 241, 209, 209, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5385, 80, 291, 291, 241, 185, 161, 169, 197, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5385, 80, 254, 254, 129, 137, 249, 201, 193, 559); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5386, 80, 246, 246, 161, 177, 209, 241, 209, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5386, 80, 264, 264, 248, 185, 193, 193, 161, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5386, 80, 254, 254, 129, 137, 249, 201, 193, 559); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5387, 56, 175, 175, 153, 114, 97, 86, 129, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5387, 56, 201, 201, 92, 121, 92, 121, 81, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5387, 56, 158, 158, 120, 103, 109, 103, 69, 264); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5388, 59, 190, 190, 156, 132, 79, 132, 120, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5388, 59, 178, 178, 147, 120, 108, 120, 134, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5388, 59, 155, 155, 114, 97, 114, 97, 147, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5389, 59, 202, 202, 156, 138, 73, 138, 91, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5389, 59, 178, 178, 128, 100, 128, 100, 141, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5389, 59, 161, 161, 144, 131, 91, 107, 158, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5390, 62, 174, 174, 138, 169, 83, 169, 99, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5390, 62, 184, 184, 169, 101, 101, 101, 138, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5390, 62, 199, 199, 147, 109, 157, 109, 107, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5391, 62, 199, 199, 194, 188, 101, 126, 58, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5391, 62, 184, 184, 151, 101, 151, 101, 107, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5391, 62, 166, 166, 162, 166, 86, 86, 162, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5392, 65, 176, 176, 119, 164, 119, 184, 125, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5392, 65, 189, 189, 106, 190, 177, 119, 99, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5392, 65, 228, 228, 106, 119, 138, 164, 106, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5393, 65, 185, 185, 144, 179, 131, 179, 71, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5393, 65, 176, 176, 177, 164, 112, 119, 132, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5393, 65, 214, 214, 189, 132, 99, 132, 99, 279); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5394, 68, 218, 218, 97, 158, 192, 185, 138, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5394, 68, 211, 211, 199, 131, 83, 158, 145, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5394, 68, 234, 234, 253, 111, 117, 97, 108, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5395, 68, 218, 218, 138, 124, 213, 131, 151, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5395, 68, 184, 184, 206, 138, 111, 111, 124, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5395, 68, 204, 204, 199, 165, 124, 138, 90, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5396, 71, 241, 241, 115, 142, 172, 208, 145, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5396, 71, 262, 262, 215, 144, 129, 115, 144, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5396, 71, 205, 205, 186, 129, 193, 129, 158, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5397, 71, 241, 241, 208, 142, 115, 172, 145, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5397, 71, 205, 205, 200, 122, 94, 151, 208, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5397, 71, 170, 170, 172, 222, 122, 222, 94, 562); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5398, 74, 251, 251, 192, 187, 142, 157, 114, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5398, 74, 243, 243, 194, 150, 179, 150, 172, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5399, 74, 223, 223, 185, 136, 185, 136, 191, 550); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5399, 74, 221, 221, 238, 127, 197, 127, 194, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5400, 77, 256, 256, 194, 171, 225, 171, 183, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5400, 77, 253, 253, 163, 186, 179, 225, 163, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5400, 77, 291, 291, 209, 163, 171, 148, 186, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5401, 77, 261, 261, 240, 155, 202, 155, 186, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5401, 77, 253, 253, 186, 171, 225, 163, 171, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5401, 77, 253, 253, 163, 148, 209, 186, 209, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5402, 80, 278, 278, 153, 217, 177, 217, 169, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5402, 80, 264, 264, 177, 203, 241, 203, 157, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5402, 80, 246, 246, 177, 161, 241, 209, 209, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5403, 80, 262, 262, 177, 169, 233, 177, 193, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5403, 80, 310, 310, 145, 225, 153, 241, 169, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5403, 80, 246, 246, 161, 177, 209, 241, 209, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5404, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5404, 60, 173, 173, 176, 104, 104, 164, 122, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5405, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5405, 46, 205, 205, 131, 76, 58, 76, 67, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5406, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5407, 47, 182, 182, 73, 101, 122, 111, 49, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5407, 47, 135, 135, 120, 78, 78, 87, 111, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5408, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5408, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5409, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5409, 35, 113, 113, 87, 66, 52, 59, 49, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5410, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5410, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5411, 46, 123, 123, 67, 62, 145, 108, 131, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5411, 46, 155, 155, 141, 95, 81, 99, 72, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5412, 53, 140, 140, 77, 71, 167, 124, 151, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5412, 53, 177, 177, 161, 108, 92, 114, 82, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5413, 6, 22, 22, 11, 10, 9, 9, 13, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5413, 6, 23, 23, 10, 11, 9, 9, 12, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5414, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5414, 7, 25, 25, 11, 14, 11, 11, 12, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5414, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5415, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5416, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5416, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5416, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5417, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5417, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5417, 9, 30, 30, 13, 14, 11, 11, 16, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5417, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5418, 11, 34, 34, 15, 16, 13, 13, 18, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5418, 11, 35, 35, 13, 21, 14, 14, 15, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5419, 11, 33, 33, 16, 15, 13, 13, 19, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5419, 11, 34, 34, 14, 19, 14, 14, 16, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5420, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5420, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5420, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5421, 14, 41, 41, 18, 19, 15, 15, 22, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5421, 14, 40, 40, 19, 18, 15, 15, 24, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5422, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5422, 16, 46, 46, 20, 21, 17, 17, 25, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5422, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5423, 20, 61, 61, 30, 32, 48, 44, 40, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5424, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5424, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5425, 20, 55, 55, 24, 26, 20, 20, 30, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5425, 20, 53, 53, 26, 24, 20, 20, 32, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5425, 20, 61, 61, 34, 32, 28, 34, 30, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5426, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5426, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5427, 6, 24, 24, 9, 13, 10, 10, 10, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5427, 6, 23, 23, 10, 11, 9, 9, 12, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5427, 6, 24, 24, 9, 13, 10, 10, 10, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5428, 8, 28, 28, 12, 13, 11, 11, 15, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5428, 8, 28, 28, 11, 16, 11, 11, 12, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5429, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5430, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5430, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5430, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5431, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5431, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5431, 9, 30, 30, 13, 14, 11, 11, 16, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5431, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5432, 11, 34, 34, 15, 16, 13, 13, 18, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5432, 11, 35, 35, 13, 21, 14, 14, 15, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5433, 11, 33, 33, 16, 15, 13, 13, 19, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5433, 11, 34, 34, 14, 19, 14, 14, 16, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5434, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5434, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5434, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5435, 14, 41, 41, 18, 19, 15, 15, 22, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5435, 14, 40, 40, 19, 18, 15, 15, 24, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5436, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5436, 16, 46, 46, 20, 21, 17, 17, 25, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5436, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5437, 20, 61, 61, 30, 32, 48, 44, 40, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5438, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5438, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5439, 20, 55, 55, 24, 26, 20, 20, 30, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5439, 20, 53, 53, 26, 24, 20, 20, 32, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5439, 20, 61, 61, 34, 32, 28, 34, 30, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5440, 12, 35, 35, 17, 16, 14, 14, 21, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5440, 12, 37, 37, 16, 17, 14, 14, 20, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5441, 15, 48, 48, 26, 25, 22, 26, 23, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5442, 19, 58, 58, 32, 30, 27, 32, 28, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5443, 28, 87, 87, 51, 48, 65, 57, 65, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5444, 36, 109, 109, 64, 61, 82, 71, 82, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5445, 40, 120, 120, 71, 67, 91, 79, 91, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5446, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5446, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5446, 12, 41, 41, 30, 18, 20, 28, 27, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5447, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5447, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5448, 32, 98, 98, 74, 61, 54, 54, 42, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5449, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5449, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5449, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5450, 13, 36, 36, 27, 23, 21, 23, 16, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5451, 30, 92, 92, 69, 57, 51, 51, 39, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5451, 32, 95, 95, 96, 80, 51, 61, 70, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5452, 32, 95, 95, 74, 42, 45, 67, 64, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5452, 32, 91, 91, 45, 48, 74, 67, 61, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5453, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5453, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5453, 3, 16, 16, 8, 7, 7, 7, 9, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5453, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5454, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5454, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5454, 10, 32, 32, 13, 18, 13, 13, 15, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5454, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5455, 14, 45, 45, 22, 24, 35, 32, 29, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5455, 14, 45, 45, 22, 24, 35, 32, 29, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5455, 15, 49, 49, 37, 22, 23, 34, 32, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5455, 14, 45, 45, 22, 24, 35, 32, 29, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5456, 24, 71, 71, 35, 37, 56, 52, 47, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5456, 24, 71, 71, 35, 37, 56, 52, 47, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5456, 25, 76, 76, 59, 34, 36, 54, 51, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5456, 24, 71, 71, 35, 37, 56, 52, 47, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5457, 30, 86, 86, 42, 45, 69, 63, 57, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5457, 30, 86, 86, 42, 45, 69, 63, 57, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5457, 32, 95, 95, 74, 42, 45, 67, 64, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5457, 34, 97, 97, 47, 51, 78, 71, 64, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5458, 8, 27, 27, 11, 12, 14, 20, 16, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5458, 10, 30, 30, 22, 19, 17, 19, 13, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5459, 26, 61, 61, 37, 61, 29, 29, 35, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5459, 26, 61, 61, 37, 61, 29, 29, 35, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5460, 26, 79, 79, 52, 42, 38, 53, 58, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5460, 26, 79, 79, 38, 42, 52, 53, 58, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5461, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5462, 27, 79, 79, 63, 39, 41, 41, 101, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5463, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5463, 29, 84, 84, 67, 41, 44, 44, 108, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5464, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5464, 31, 89, 89, 47, 59, 47, 71, 56, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5464, 31, 89, 89, 71, 44, 47, 47, 115, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5465, 33, 81, 81, 36, 38, 49, 51, 59, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5465, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5465, 33, 94, 94, 49, 63, 49, 76, 59, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5465, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5466, 8, 28, 28, 15, 13, 11, 12, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5466, 8, 28, 28, 13, 16, 11, 11, 10, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5466, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5467, 26, 77, 77, 61, 37, 40, 40, 97, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5468, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5468, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5468, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5468, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5468, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5468, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5469, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5469, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5470, 27, 81, 81, 82, 68, 44, 52, 60, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5471, 28, 65, 65, 40, 65, 31, 31, 37, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5471, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5472, 25, 76, 76, 50, 41, 37, 51, 56, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5472, 25, 76, 76, 37, 41, 50, 51, 56, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5473, 6, 21, 21, 12, 17, 10, 10, 11, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5473, 6, 21, 21, 12, 17, 10, 10, 11, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5474, 27, 79, 79, 63, 39, 41, 41, 101, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5475, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5475, 29, 84, 84, 67, 41, 44, 44, 108, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5476, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5476, 31, 89, 89, 47, 59, 47, 71, 56, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5476, 31, 89, 89, 71, 44, 47, 47, 115, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5477, 33, 81, 81, 36, 38, 49, 51, 59, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5477, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5477, 33, 94, 94, 49, 63, 49, 76, 59, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5477, 33, 95, 95, 76, 46, 49, 49, 122, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5478, 8, 28, 28, 15, 13, 11, 12, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5478, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5479, 25, 74, 74, 59, 36, 39, 39, 94, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5480, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5480, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5480, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5480, 3, 16, 16, 8, 8, 7, 7, 7, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5481, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5481, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5482, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5482, 8, 28, 28, 12, 13, 11, 11, 15, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5483, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5483, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5484, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5484, 19, 60, 60, 46, 27, 28, 42, 40, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5485, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5485, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5485, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5485, 10, 32, 32, 13, 18, 13, 13, 15, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5486, 7, 26, 26, 10, 15, 11, 11, 11, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5486, 7, 26, 26, 10, 15, 11, 11, 11, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5486, 7, 25, 25, 11, 12, 10, 10, 13, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5487, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5487, 10, 31, 31, 15, 14, 12, 12, 18, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5487, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5488, 19, 54, 54, 19, 32, 21, 21, 23, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5488, 19, 51, 51, 25, 23, 19, 19, 30, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5488, 19, 54, 54, 19, 32, 21, 21, 23, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5489, 27, 79, 79, 39, 41, 63, 57, 52, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5489, 27, 71, 71, 28, 41, 28, 28, 33, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5489, 27, 79, 79, 39, 41, 63, 57, 52, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5490, 51, 140, 140, 69, 74, 115, 104, 94, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5490, 54, 153, 153, 121, 67, 73, 110, 105, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5490, 51, 140, 140, 69, 74, 115, 104, 94, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5491, 20, 55, 55, 24, 26, 20, 20, 30, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5491, 20, 53, 53, 26, 24, 20, 20, 32, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5491, 20, 61, 61, 34, 32, 28, 34, 30, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5492, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5492, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5492, 7, 25, 25, 11, 14, 11, 11, 12, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5493, 20, 61, 61, 30, 32, 48, 44, 40, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5494, 49, 155, 155, 145, 96, 61, 115, 105, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5495, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5495, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5495, 9, 30, 30, 13, 14, 11, 11, 16, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5495, 9, 31, 31, 11, 18, 12, 12, 13, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5496, 11, 34, 34, 15, 16, 13, 13, 18, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5496, 11, 35, 35, 13, 21, 14, 14, 15, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5497, 45, 129, 129, 79, 61, 88, 61, 106, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5497, 46, 132, 132, 81, 62, 90, 62, 108, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5497, 45, 129, 129, 102, 57, 61, 93, 88, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5497, 47, 135, 135, 106, 59, 64, 97, 92, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5498, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5498, 16, 46, 46, 20, 21, 17, 17, 25, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5498, 16, 44, 44, 21, 20, 17, 17, 26, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5499, 11, 33, 33, 16, 15, 13, 13, 19, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5499, 11, 34, 34, 14, 19, 14, 14, 16, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5500, 6, 22, 22, 11, 10, 9, 9, 13, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5500, 6, 23, 23, 10, 11, 9, 9, 12, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5501, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5501, 10, 33, 33, 12, 19, 13, 13, 14, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5501, 10, 32, 32, 14, 15, 12, 12, 17, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5502, 9, 29, 29, 14, 13, 11, 11, 17, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5503, 48, 132, 132, 75, 70, 60, 75, 65, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5503, 48, 142, 142, 84, 79, 108, 94, 108, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5504, 7, 24, 24, 11, 13, 11, 13, 11, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5504, 7, 25, 25, 13, 12, 10, 11, 10, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5505, 17, 45, 45, 19, 25, 19, 25, 19, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5505, 17, 50, 50, 23, 29, 19, 19, 16, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5506, 29, 94, 94, 64, 45, 47, 45, 53, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5506, 29, 78, 78, 35, 47, 29, 29, 24, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5507, 53, 163, 163, 114, 78, 82, 78, 92, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5507, 53, 145, 145, 98, 77, 130, 77, 92, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5508, 12, 35, 35, 16, 20, 16, 20, 17, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5508, 12, 44, 44, 29, 21, 22, 21, 24, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5509, 9, 30, 30, 16, 14, 11, 13, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5509, 11, 35, 35, 16, 21, 14, 14, 12, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5509, 13, 43, 43, 27, 22, 35, 22, 26, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5510, 9, 30, 30, 16, 14, 11, 13, 11, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5510, 11, 35, 35, 16, 21, 14, 14, 12, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5510, 13, 43, 43, 22, 27, 22, 33, 26, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5511, 10, 32, 32, 17, 15, 12, 14, 12, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5511, 11, 33, 33, 14, 17, 14, 17, 14, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5512, 21, 63, 63, 33, 41, 33, 50, 39, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5512, 23, 76, 76, 52, 36, 38, 36, 43, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5513, 30, 86, 86, 45, 57, 45, 69, 54, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5513, 32, 102, 102, 70, 49, 51, 49, 58, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5513, 34, 103, 103, 92, 71, 54, 71, 88, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5514, 49, 135, 135, 71, 91, 71, 110, 86, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5514, 51, 157, 157, 110, 75, 79, 75, 89, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5514, 53, 156, 156, 161, 130, 82, 108, 92, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5515, 14, 40, 40, 18, 22, 18, 22, 20, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5515, 14, 40, 40, 18, 22, 18, 22, 20, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5516, 11, 34, 34, 18, 16, 13, 15, 13, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5516, 13, 40, 40, 18, 23, 16, 16, 13, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5516, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5517, 11, 34, 34, 18, 16, 13, 15, 13, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5517, 13, 40, 40, 18, 23, 16, 16, 13, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5517, 15, 48, 48, 25, 31, 25, 37, 29, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5518, 44, 122, 122, 60, 64, 100, 91, 82, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5518, 44, 127, 127, 100, 56, 60, 91, 86, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5518, 44, 100, 100, 69, 56, 64, 64, 100, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5519, 12, 37, 37, 16, 17, 14, 14, 20, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5519, 12, 35, 35, 17, 16, 14, 14, 21, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5520, 15, 48, 48, 26, 25, 22, 26, 23, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5521, 36, 102, 102, 57, 53, 46, 57, 50, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5522, 43, 128, 128, 76, 72, 97, 84, 97, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5523, 45, 99, 99, 61, 102, 48, 48, 57, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5523, 56, 164, 164, 97, 92, 125, 109, 125, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5524, 7, 25, 25, 12, 11, 10, 10, 14, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5524, 9, 30, 30, 12, 17, 12, 12, 14, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5524, 12, 41, 41, 30, 18, 20, 28, 27, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5525, 44, 127, 127, 100, 56, 60, 91, 86, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5525, 48, 132, 132, 65, 70, 108, 99, 89, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5526, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5527, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5527, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5528, 39, 109, 109, 54, 58, 89, 81, 73, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5528, 37, 112, 112, 84, 70, 62, 62, 47, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5529, 40, 112, 112, 55, 59, 91, 83, 75, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5529, 40, 120, 120, 91, 75, 67, 67, 51, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5530, 47, 130, 130, 64, 68, 106, 97, 87, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5530, 46, 136, 136, 104, 85, 76, 76, 58, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5531, 52, 143, 143, 70, 75, 117, 106, 96, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5531, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5532, 43, 102, 102, 45, 59, 45, 59, 51, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5532, 43, 124, 124, 97, 54, 59, 89, 84, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5532, 43, 120, 120, 59, 63, 97, 89, 80, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5533, 28, 70, 70, 34, 31, 26, 26, 43, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5533, 38, 95, 95, 37, 56, 37, 37, 45, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5533, 46, 132, 132, 104, 58, 62, 95, 90, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5534, 13, 36, 36, 27, 23, 21, 23, 16, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5535, 39, 117, 117, 89, 73, 65, 65, 50, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5535, 40, 116, 116, 119, 99, 63, 75, 87, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5536, 40, 116, 116, 91, 51, 55, 83, 79, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5536, 39, 109, 109, 54, 58, 89, 81, 73, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5537, 45, 129, 129, 102, 57, 61, 93, 88, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5537, 32, 91, 91, 45, 48, 74, 67, 61, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5538, 52, 148, 148, 117, 65, 70, 106, 101, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5538, 48, 132, 132, 65, 70, 108, 99, 89, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5539, 56, 158, 158, 125, 69, 75, 114, 109, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5539, 56, 153, 153, 75, 81, 125, 114, 103, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5540, 52, 132, 132, 44, 80, 49, 49, 54, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5540, 56, 142, 142, 47, 86, 53, 53, 58, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5540, 60, 151, 151, 50, 92, 56, 56, 62, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5541, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5541, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5541, 3, 16, 16, 8, 7, 7, 7, 9, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5541, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5542, 18, 52, 52, 18, 31, 20, 20, 22, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5542, 18, 52, 52, 18, 31, 20, 20, 22, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5542, 22, 59, 59, 23, 34, 23, 23, 28, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5542, 29, 84, 84, 41, 44, 67, 61, 56, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5543, 28, 81, 81, 40, 43, 65, 59, 54, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5543, 28, 81, 81, 40, 43, 65, 59, 54, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5543, 37, 108, 108, 84, 47, 51, 77, 73, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5543, 40, 112, 112, 55, 59, 91, 83, 75, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5544, 36, 102, 102, 50, 53, 82, 75, 68, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5544, 36, 102, 102, 50, 53, 82, 75, 68, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5544, 43, 124, 124, 97, 54, 59, 89, 84, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5544, 52, 143, 143, 70, 75, 117, 106, 96, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5545, 26, 79, 79, 52, 42, 38, 53, 58, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5545, 28, 84, 84, 41, 45, 55, 57, 62, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5546, 29, 84, 84, 56, 44, 73, 44, 53, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5547, 8, 25, 25, 15, 22, 12, 12, 14, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5548, 10, 31, 31, 14, 15, 18, 19, 21, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5548, 10, 29, 29, 17, 26, 14, 14, 16, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5549, 12, 35, 35, 16, 17, 21, 21, 24, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5549, 12, 33, 33, 20, 30, 16, 16, 18, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5550, 24, 61, 61, 28, 29, 37, 38, 44, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5550, 24, 71, 71, 56, 35, 37, 37, 90, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5551, 46, 136, 136, 76, 78, 95, 97, 76, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5551, 46, 136, 136, 104, 85, 76, 76, 58, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5551, 46, 128, 128, 104, 62, 67, 67, 168, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5551, 46, 123, 123, 53, 67, 72, 122, 99, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5552, 7, 25, 25, 13, 12, 10, 11, 10, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5552, 7, 26, 26, 12, 15, 11, 11, 9, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5552, 7, 23, 23, 13, 20, 11, 11, 13, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5553, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5554, 5, 21, 21, 11, 10, 8, 9, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5554, 5, 21, 21, 11, 10, 8, 9, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5554, 5, 21, 21, 11, 10, 8, 9, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5555, 4, 19, 19, 10, 9, 8, 8, 8, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5556, 16, 54, 54, 30, 32, 28, 28, 28, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5556, 15, 40, 40, 28, 23, 22, 26, 26, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5556, 15, 48, 48, 26, 25, 22, 26, 23, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5556, 15, 48, 48, 23, 25, 37, 34, 31, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5556, 15, 43, 43, 17, 25, 17, 17, 20, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5556, 15, 40, 40, 31, 26, 23, 26, 17, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5557, 16, 50, 50, 25, 26, 39, 36, 33, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5557, 16, 42, 42, 29, 24, 23, 28, 28, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5557, 16, 50, 50, 28, 26, 23, 28, 25, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5557, 16, 54, 54, 45, 36, 28, 36, 44, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5557, 16, 50, 50, 30, 30, 36, 36, 29, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5558, 25, 66, 66, 29, 31, 24, 24, 36, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5558, 25, 64, 64, 31, 29, 24, 24, 39, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5558, 25, 61, 61, 49, 41, 36, 41, 26, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5558, 25, 66, 66, 39, 41, 51, 46, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5558, 25, 69, 69, 51, 31, 49, 29, 34, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5558, 25, 74, 74, 34, 54, 44, 36, 34, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5559, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5559, 26, 68, 68, 29, 32, 24, 24, 37, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5559, 26, 63, 63, 45, 37, 35, 42, 42, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5559, 26, 68, 68, 40, 42, 53, 48, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5559, 26, 71, 71, 53, 32, 50, 29, 35, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5559, 26, 76, 76, 35, 55, 45, 37, 35, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5560, 50, 123, 123, 53, 58, 43, 43, 68, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5560, 50, 118, 118, 58, 53, 43, 43, 73, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5560, 50, 128, 128, 43, 78, 48, 48, 53, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5560, 50, 123, 123, 48, 73, 48, 48, 58, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5560, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5560, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5561, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5561, 50, 108, 108, 79, 58, 48, 58, 95, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5561, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5561, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5561, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5561, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5562, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5562, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5562, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5562, 50, 108, 108, 79, 58, 48, 58, 95, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5562, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5562, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5563, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5563, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5563, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5563, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5563, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5563, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5564, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5564, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5564, 50, 123, 123, 53, 58, 43, 43, 68, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5564, 50, 118, 118, 58, 53, 43, 43, 73, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5564, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5564, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5565, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5565, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5565, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5565, 50, 123, 123, 48, 73, 48, 48, 58, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5565, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5565, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5566, 51, 150, 150, 135, 104, 79, 104, 130, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5566, 52, 143, 143, 70, 75, 117, 106, 96, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5566, 52, 143, 143, 122, 106, 86, 106, 54, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5566, 52, 184, 184, 96, 96, 91, 91, 70, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5566, 52, 163, 163, 153, 101, 65, 122, 112, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5566, 51, 145, 145, 150, 125, 79, 94, 110, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5567, 51, 135, 135, 59, 74, 79, 135, 110, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5567, 53, 156, 156, 87, 156, 145, 98, 82, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5567, 51, 140, 140, 135, 94, 84, 84, 125, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5567, 53, 150, 150, 92, 71, 103, 71, 124, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5567, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5567, 51, 145, 145, 115, 64, 69, 104, 99, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5568, 28, 70, 70, 31, 33, 43, 44, 51, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5568, 28, 70, 70, 31, 33, 43, 44, 51, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5568, 28, 70, 70, 31, 33, 43, 44, 51, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5569, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5569, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5569, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5570, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5570, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5570, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5571, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5571, 36, 91, 91, 50, 43, 32, 39, 32, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5571, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5571, 36, 109, 109, 61, 62, 75, 77, 61, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5572, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5572, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5572, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5572, 38, 114, 114, 64, 65, 79, 81, 64, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5572, 38, 107, 107, 71, 56, 94, 56, 68, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5573, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5574, 15, 39, 39, 23, 37, 19, 19, 22, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5574, 15, 48, 48, 25, 31, 25, 37, 29, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5574, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5575, 25, 66, 66, 36, 31, 24, 29, 24, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5575, 25, 69, 69, 31, 41, 26, 26, 21, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5575, 25, 74, 74, 49, 39, 64, 39, 46, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5576, 25, 66, 66, 36, 31, 24, 29, 24, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5576, 25, 69, 69, 31, 41, 26, 26, 21, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5576, 25, 74, 74, 39, 49, 39, 59, 46, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5577, 17, 55, 55, 27, 29, 35, 36, 40, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5577, 17, 55, 55, 35, 29, 27, 36, 40, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5578, 26, 66, 66, 29, 31, 40, 41, 48, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5579, 29, 84, 84, 44, 56, 44, 67, 53, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5579, 29, 84, 84, 56, 44, 73, 44, 53, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5580, 16, 50, 50, 26, 33, 26, 39, 31, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5580, 16, 50, 50, 33, 26, 42, 26, 31, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5581, 24, 64, 64, 35, 30, 23, 28, 23, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5581, 24, 66, 66, 30, 40, 25, 25, 20, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5581, 24, 71, 71, 47, 37, 61, 37, 44, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5582, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5582, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5582, 27, 68, 68, 30, 32, 41, 42, 49, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5583, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5583, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5583, 31, 76, 76, 34, 36, 47, 48, 56, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5584, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5584, 34, 83, 83, 37, 39, 51, 52, 61, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5584, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5585, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5585, 36, 91, 91, 50, 43, 32, 39, 32, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5585, 36, 87, 87, 39, 41, 53, 55, 64, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5585, 36, 109, 109, 61, 62, 75, 77, 61, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5586, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5586, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5586, 38, 92, 92, 41, 43, 56, 58, 68, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5586, 38, 114, 114, 64, 65, 79, 81, 64, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5586, 38, 107, 107, 71, 56, 94, 56, 68, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5587, 27, 71, 71, 39, 33, 25, 30, 25, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5587, 27, 73, 73, 33, 44, 28, 28, 22, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5587, 27, 79, 79, 41, 52, 41, 63, 49, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5588, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5589, 39, 117, 117, 65, 67, 81, 83, 65, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5589, 39, 113, 113, 116, 97, 61, 73, 85, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5590, 43, 128, 128, 72, 73, 89, 91, 72, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5590, 43, 124, 124, 127, 106, 67, 80, 93, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5591, 47, 139, 139, 78, 80, 97, 99, 78, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5591, 47, 146, 146, 101, 69, 73, 69, 83, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5591, 47, 135, 135, 139, 115, 73, 87, 101, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5591, 47, 139, 139, 97, 117, 97, 117, 59, 574); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5592, 28, 87, 87, 48, 49, 59, 61, 48, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5592, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5593, 15, 39, 39, 23, 37, 19, 19, 22, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5593, 15, 48, 48, 25, 31, 25, 37, 29, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5593, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5594, 30, 86, 86, 57, 45, 75, 45, 54, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5595, 30, 86, 86, 45, 57, 45, 69, 54, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5596, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5596, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5596, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5596, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5596, 50, 128, 128, 58, 78, 48, 48, 38, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5598, 34, 82, 82, 52, 46, 58, 51, 61, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5598, 34, 95, 95, 60, 56, 71, 61, 71, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5599, 38, 117, 117, 76, 75, 80, 94, 94, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5600, 34, 93, 93, 64, 47, 64, 51, 58, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5600, 34, 90, 90, 75, 54, 61, 61, 78, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5601, 36, 98, 98, 68, 50, 68, 53, 61, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5601, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5601, 36, 111, 111, 72, 71, 76, 89, 89, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5602, 41, 106, 106, 89, 64, 73, 73, 93, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5603, 37, 88, 88, 48, 47, 55, 66, 66, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5603, 37, 101, 101, 70, 51, 70, 55, 62, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5604, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5604, 28, 84, 84, 68, 47, 71, 62, 67, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5604, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5604, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5605, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5605, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5605, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5606, 26, 73, 73, 50, 37, 50, 40, 45, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5606, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5607, 34, 82, 82, 52, 46, 58, 51, 61, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5607, 34, 95, 95, 60, 56, 71, 61, 71, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5608, 37, 88, 88, 48, 47, 55, 66, 66, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5608, 37, 101, 101, 70, 51, 70, 55, 62, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5609, 100, 226, 226, 131, 111, 121, 121, 221, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5609, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5610, 34, 93, 93, 64, 47, 64, 51, 58, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5610, 34, 90, 90, 75, 54, 61, 61, 78, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5611, 36, 98, 98, 68, 50, 68, 53, 61, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5611, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5611, 36, 111, 111, 72, 71, 76, 89, 89, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5612, 41, 106, 106, 89, 64, 73, 73, 93, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5613, 38, 117, 117, 76, 75, 80, 94, 94, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5614, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5614, 36, 105, 105, 86, 59, 89, 79, 84, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5614, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5614, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5615, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5615, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5615, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5616, 26, 73, 73, 50, 37, 50, 40, 45, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5616, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5617, 16, 55, 55, 35, 34, 36, 42, 42, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5617, 16, 49, 49, 33, 25, 33, 26, 29, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5617, 15, 45, 45, 32, 35, 16, 19, 22, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5617, 17, 53, 53, 27, 26, 25, 41, 25, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5617, 16, 50, 50, 31, 29, 36, 31, 36, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5617, 15, 41, 41, 22, 22, 25, 29, 29, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5618, 18, 60, 60, 38, 38, 40, 47, 47, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5618, 17, 45, 45, 26, 65, 21, 26, 34, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5618, 15, 54, 54, 31, 29, 34, 46, 40, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5618, 15, 48, 48, 24, 23, 23, 37, 23, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5618, 18, 47, 47, 40, 29, 29, 36, 54, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5618, 17, 60, 60, 45, 37, 40, 36, 40, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5619, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5619, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5619, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5619, 50, 133, 133, 93, 68, 93, 73, 83, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5619, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5619, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5620, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5620, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5620, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5620, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5620, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5620, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5621, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5621, 53, 143, 143, 91, 85, 108, 92, 108, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5621, 52, 127, 127, 86, 54, 106, 75, 91, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5621, 53, 150, 150, 112, 84, 124, 114, 135, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5621, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5621, 52, 148, 148, 101, 132, 60, 91, 112, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5622, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5622, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5622, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5622, 55, 165, 165, 108, 107, 113, 134, 134, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5622, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5622, 55, 167, 167, 118, 244, 85, 96, 57, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5623, 51, 158, 158, 109, 102, 134, 110, 125, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5623, 51, 155, 155, 115, 74, 135, 104, 120, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5623, 52, 132, 132, 75, 148, 106, 106, 54, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5623, 52, 117, 117, 106, 75, 75, 96, 148, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5623, 52, 156, 156, 122, 88, 112, 91, 112, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5623, 52, 148, 148, 101, 132, 60, 91, 112, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5624, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5624, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5624, 53, 145, 145, 114, 68, 114, 68, 120, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5624, 51, 145, 145, 150, 125, 79, 94, 110, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5624, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5624, 53, 177, 177, 130, 119, 156, 114, 119, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5625, 62, 218, 218, 179, 120, 98, 120, 126, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5626, 21, 63, 63, 48, 33, 37, 33, 37, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5626, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5627, 17, 53, 53, 26, 34, 26, 41, 43, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5628, 26, 58, 58, 32, 50, 63, 42, 37, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5629, 6, 26, 26, 16, 13, 11, 11, 11, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5630, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5631, 30, 65, 65, 36, 57, 72, 48, 42, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5631, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5632, 43, 89, 89, 50, 80, 102, 67, 59, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5632, 42, 109, 109, 70, 99, 120, 78, 78, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5632, 45, 143, 143, 111, 84, 66, 75, 61, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5633, 48, 123, 123, 79, 113, 137, 89, 89, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5633, 48, 123, 123, 79, 113, 137, 89, 89, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5633, 51, 171, 171, 155, 104, 89, 110, 79, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5634, 54, 137, 137, 89, 127, 154, 100, 100, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5634, 54, 137, 137, 89, 127, 154, 100, 100, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5634, 57, 190, 190, 173, 116, 99, 122, 88, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5635, 11, 27, 27, 21, 14, 16, 18, 29, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5635, 11, 35, 35, 25, 27, 13, 15, 17, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5636, 18, 48, 48, 40, 24, 24, 27, 36, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5637, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5637, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5638, 20, 54, 54, 31, 38, 32, 37, 29, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5639, 16, 44, 44, 29, 20, 20, 20, 33, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5639, 16, 49, 49, 36, 29, 26, 33, 41, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5640, 21, 61, 61, 41, 31, 41, 33, 37, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5640, 21, 54, 54, 34, 30, 37, 33, 39, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5641, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5641, 19, 39, 39, 32, 21, 25, 28, 47, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5641, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5641, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5642, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5643, 9, 24, 24, 18, 12, 14, 16, 25, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5643, 9, 31, 31, 21, 23, 11, 13, 15, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5644, 18, 48, 48, 40, 24, 24, 27, 36, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5645, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5645, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5646, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5646, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5647, 16, 52, 52, 39, 26, 37, 25, 28, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5648, 16, 44, 44, 29, 20, 20, 20, 33, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5648, 16, 49, 49, 36, 29, 26, 33, 41, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5649, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5649, 19, 39, 39, 32, 21, 25, 28, 47, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5649, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5649, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5650, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5651, 36, 117, 117, 91, 73, 79, 71, 79, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5652, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5652, 31, 98, 98, 78, 84, 44, 50, 56, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5653, 13, 40, 40, 29, 31, 14, 17, 20, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5653, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5654, 10, 25, 25, 19, 13, 15, 17, 27, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5654, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5654, 14, 31, 31, 25, 17, 19, 22, 36, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5655, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5656, 34, 111, 111, 86, 69, 75, 68, 75, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5657, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5657, 30, 89, 89, 78, 51, 51, 57, 72, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5657, 30, 95, 95, 75, 72, 39, 57, 81, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5659, 32, 75, 75, 67, 48, 48, 61, 93, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5659, 29, 101, 101, 70, 70, 56, 67, 56, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5659, 29, 87, 87, 76, 50, 50, 56, 70, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5660, 17, 50, 50, 36, 40, 17, 21, 24, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5660, 17, 58, 58, 45, 48, 26, 29, 33, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5660, 19, 51, 51, 28, 25, 23, 27, 32, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5661, 17, 46, 46, 38, 23, 23, 26, 34, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5662, 14, 43, 43, 24, 23, 28, 24, 25, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5663, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5663, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5663, 23, 64, 64, 37, 35, 43, 36, 38, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5664, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5664, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5664, 26, 71, 71, 41, 39, 48, 40, 42, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5665, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5665, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5665, 30, 74, 74, 39, 39, 57, 39, 27, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5665, 32, 85, 85, 49, 47, 58, 48, 51, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5666, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5666, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5666, 36, 94, 94, 53, 104, 75, 75, 39, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5666, 34, 110, 110, 73, 70, 81, 71, 75, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5667, 22, 57, 57, 30, 37, 30, 43, 37, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5667, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5667, 22, 57, 57, 30, 37, 30, 43, 37, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5668, 24, 66, 66, 49, 54, 23, 28, 32, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5669, 21, 54, 54, 25, 29, 25, 29, 37, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5669, 21, 55, 55, 35, 25, 25, 25, 48, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5670, 26, 65, 65, 29, 35, 29, 35, 45, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5670, 26, 66, 66, 42, 29, 29, 29, 58, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5671, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5671, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5672, 31, 83, 83, 62, 68, 28, 34, 40, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5672, 31, 100, 100, 59, 53, 47, 53, 78, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5672, 31, 89, 89, 68, 53, 47, 47, 93, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5673, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5673, 34, 107, 107, 85, 92, 47, 54, 61, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5673, 34, 109, 109, 64, 58, 51, 58, 85, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5674, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5675, 18, 48, 48, 22, 26, 22, 26, 33, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5675, 18, 59, 59, 36, 25, 33, 25, 33, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5676, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5676, 19, 62, 62, 38, 27, 34, 27, 34, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5677, 29, 72, 72, 47, 32, 32, 32, 64, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5677, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5678, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5679, 21, 55, 55, 29, 35, 29, 41, 35, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5679, 21, 59, 59, 44, 48, 20, 25, 29, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5679, 21, 55, 55, 29, 35, 29, 41, 35, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5680, 22, 57, 57, 37, 26, 26, 26, 50, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5680, 22, 70, 70, 43, 30, 39, 30, 39, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5681, 23, 64, 64, 47, 52, 22, 27, 31, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5682, 20, 52, 52, 24, 28, 24, 28, 36, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5682, 20, 53, 53, 34, 24, 24, 24, 46, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5683, 26, 65, 65, 29, 35, 29, 35, 45, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5683, 26, 66, 66, 42, 29, 29, 29, 58, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5684, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5684, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5685, 31, 83, 83, 62, 68, 28, 34, 40, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5685, 31, 89, 89, 68, 53, 47, 47, 93, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5685, 31, 100, 100, 59, 53, 47, 53, 78, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5686, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5686, 34, 107, 107, 85, 92, 47, 54, 61, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5686, 34, 109, 109, 64, 58, 51, 58, 85, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5687, 29, 84, 84, 64, 50, 44, 44, 87, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5687, 29, 87, 87, 58, 56, 70, 56, 70, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5688, 24, 71, 71, 56, 47, 42, 71, 32, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5689, 18, 59, 59, 36, 25, 33, 25, 33, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5690, 18, 48, 48, 25, 31, 25, 36, 31, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5690, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5691, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5691, 18, 59, 59, 36, 25, 33, 25, 33, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5692, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5693, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5694, 36, 102, 102, 69, 59, 57, 57, 64, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5694, 36, 98, 98, 76, 61, 53, 68, 87, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5694, 36, 112, 112, 89, 97, 50, 57, 64, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5695, 21, 61, 61, 41, 31, 41, 33, 37, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5695, 21, 54, 54, 34, 30, 37, 33, 39, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5696, 24, 69, 69, 47, 35, 47, 37, 42, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5696, 24, 61, 61, 38, 34, 42, 37, 44, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5697, 29, 81, 81, 56, 41, 56, 44, 50, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5697, 29, 83, 83, 52, 49, 61, 53, 61, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5698, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5698, 54, 146, 146, 93, 87, 110, 94, 110, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5699, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5699, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5699, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5699, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5700, 18, 48, 48, 40, 24, 24, 27, 36, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5701, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5701, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5702, 16, 44, 44, 29, 20, 20, 20, 33, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5702, 16, 49, 49, 36, 29, 26, 33, 41, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5703, 21, 55, 55, 37, 25, 25, 25, 41, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5703, 21, 61, 61, 46, 37, 33, 41, 53, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5704, 29, 87, 87, 67, 53, 50, 50, 73, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5704, 29, 81, 81, 62, 50, 44, 56, 71, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5705, 54, 153, 153, 121, 94, 90, 90, 132, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5705, 54, 142, 142, 111, 89, 78, 100, 129, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5706, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5706, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5707, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5708, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5709, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5709, 11, 35, 35, 25, 27, 13, 15, 17, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5710, 20, 54, 54, 31, 38, 32, 37, 29, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5711, 22, 59, 59, 34, 41, 34, 41, 31, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5712, 30, 86, 86, 53, 63, 54, 63, 50, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5713, 55, 149, 149, 94, 112, 96, 112, 88, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5714, 49, 140, 140, 145, 120, 76, 91, 105, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5714, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5715, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5715, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5716, 19, 54, 54, 44, 32, 36, 36, 46, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5717, 7, 25, 25, 16, 12, 13, 12, 13, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5718, 13, 40, 40, 18, 23, 16, 16, 13, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5718, 17, 53, 53, 28, 34, 28, 41, 33, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5719, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5719, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5719, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5720, 14, 43, 43, 33, 25, 28, 28, 35, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5721, 31, 89, 89, 68, 46, 53, 46, 53, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5721, 31, 91, 91, 55, 45, 41, 41, 62, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5722, 15, 46, 46, 29, 20, 28, 19, 35, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5722, 15, 43, 43, 29, 20, 22, 20, 23, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5723, 14, 40, 40, 32, 38, 18, 18, 15, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5724, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5725, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5726, 55, 145, 145, 129, 151, 74, 74, 63, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5727, 22, 59, 59, 38, 32, 38, 32, 39, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5728, 7, 25, 25, 15, 11, 11, 11, 15, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5728, 7, 25, 25, 16, 12, 13, 12, 13, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5729, 22, 64, 64, 43, 37, 30, 37, 50, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5730, 14, 43, 43, 33, 25, 28, 28, 35, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5731, 34, 93, 93, 64, 54, 44, 54, 75, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5731, 36, 120, 120, 93, 57, 79, 53, 100, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5732, 20, 59, 59, 38, 26, 36, 24, 46, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5732, 20, 55, 55, 38, 25, 28, 25, 30, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5733, 14, 44, 44, 29, 25, 21, 25, 33, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5734, 24, 69, 69, 47, 40, 32, 40, 54, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5735, 35, 110, 110, 87, 63, 59, 63, 98, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5736, 52, 158, 158, 127, 92, 86, 92, 143, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5736, 52, 162, 162, 112, 86, 80, 86, 97, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5737, 48, 153, 153, 120, 96, 103, 94, 103, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5738, 40, 108, 108, 71, 47, 67, 43, 87, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5739, 44, 140, 140, 93, 89, 104, 91, 95, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5739, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5740, 13, 40, 40, 29, 31, 14, 17, 20, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5740, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5741, 21, 61, 61, 31, 33, 31, 39, 46, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5741, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5742, 10, 25, 25, 19, 13, 15, 17, 27, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5742, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5742, 14, 31, 31, 25, 17, 19, 22, 36, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5743, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5744, 46, 147, 147, 115, 92, 99, 90, 99, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5745, 45, 141, 141, 84, 76, 66, 76, 111, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5747, 43, 98, 98, 89, 63, 63, 80, 123, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5747, 40, 136, 136, 95, 95, 75, 91, 75, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5747, 40, 116, 116, 103, 67, 67, 75, 95, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5748, 18, 52, 52, 38, 42, 18, 22, 25, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5748, 18, 61, 61, 47, 51, 27, 31, 34, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5748, 20, 53, 53, 30, 26, 24, 28, 34, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5749, 38, 114, 114, 94, 106, 41, 68, 41, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5750, 41, 123, 123, 101, 114, 44, 73, 44, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5750, 41, 127, 127, 50, 50, 65, 65, 74, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5751, 48, 142, 142, 118, 132, 51, 84, 51, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5751, 47, 191, 191, 76, 76, 93, 93, 84, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5751, 44, 118, 118, 60, 64, 60, 78, 91, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5752, 52, 153, 153, 127, 143, 54, 91, 54, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5752, 52, 158, 158, 80, 96, 80, 122, 138, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5752, 52, 210, 210, 84, 84, 102, 102, 93, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5753, 17, 46, 46, 38, 23, 23, 26, 34, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5754, 14, 43, 43, 24, 23, 28, 24, 25, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5755, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5755, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5755, 32, 85, 85, 49, 47, 58, 48, 51, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5756, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5756, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5756, 36, 116, 116, 77, 74, 86, 75, 79, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5756, 32, 79, 79, 42, 42, 61, 42, 29, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5757, 36, 98, 98, 86, 100, 50, 50, 43, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5757, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5757, 54, 137, 137, 78, 154, 110, 110, 56, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5757, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5758, 43, 120, 120, 72, 72, 50, 50, 46, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5759, 26, 84, 84, 66, 71, 37, 42, 48, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5760, 26, 73, 73, 63, 74, 37, 37, 32, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5761, 24, 76, 76, 34, 39, 34, 39, 32, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5762, 28, 104, 104, 55, 61, 55, 61, 45, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5763, 31, 114, 114, 61, 67, 61, 67, 50, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5763, 31, 98, 98, 65, 59, 56, 62, 71, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5764, 38, 137, 137, 74, 81, 74, 81, 60, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5764, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5765, 47, 167, 167, 90, 99, 90, 99, 73, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5765, 47, 170, 170, 109, 84, 88, 79, 100, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5765, 47, 153, 153, 106, 97, 87, 97, 144, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5766, 16, 44, 44, 28, 20, 20, 20, 37, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5766, 18, 48, 48, 27, 24, 22, 25, 31, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5767, 20, 61, 61, 28, 32, 42, 46, 50, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5767, 20, 63, 63, 41, 34, 31, 42, 46, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5768, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5768, 30, 86, 86, 45, 75, 66, 57, 54, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5769, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5770, 26, 50, 50, 42, 27, 32, 37, 63, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5770, 26, 58, 58, 32, 50, 63, 42, 37, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5770, 27, 68, 68, 39, 33, 30, 36, 44, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5770, 27, 67, 67, 42, 37, 47, 41, 49, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5770, 27, 70, 70, 40, 49, 41, 49, 37, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5771, 25, 79, 79, 36, 38, 44, 46, 31, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5771, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5771, 25, 56, 56, 24, 21, 66, 41, 59, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5771, 30, 80, 80, 45, 72, 39, 45, 36, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5771, 25, 71, 71, 49, 36, 49, 39, 44, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5771, 30, 74, 74, 47, 41, 51, 45, 54, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5772, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5772, 50, 118, 118, 68, 63, 58, 58, 79, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5772, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5772, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5772, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5773, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5773, 50, 161, 161, 103, 98, 93, 93, 124, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5773, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5773, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5773, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5774, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5774, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5774, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5774, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5774, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5774, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5775, 5, 21, 21, 11, 13, 11, 13, 11, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5775, 5, 21, 21, 13, 13, 11, 11, 11, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5775, 5, 20, 20, 12, 11, 12, 11, 13, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5775, 5, 17, 17, 12, 9, 10, 11, 16, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5775, 5, 24, 24, 10, 10, 12, 12, 13, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5775, 5, 21, 21, 14, 10, 13, 9, 10, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5776, 5, 20, 20, 10, 10, 10, 12, 11, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5776, 5, 22, 22, 11, 11, 9, 9, 8, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5776, 5, 17, 17, 12, 9, 10, 11, 16, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5776, 5, 22, 22, 14, 11, 11, 11, 10, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5776, 5, 20, 20, 11, 10, 10, 10, 15, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5776, 5, 21, 21, 12, 11, 13, 11, 12, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5777, 43, 180, 180, 80, 50, 80, 50, 72, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5777, 43, 120, 120, 73, 89, 74, 89, 72, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5777, 43, 120, 120, 72, 72, 93, 93, 93, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5778, 62, 224, 224, 188, 176, 83, 83, 76, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5778, 61, 178, 178, 142, 130, 94, 106, 112, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5778, 61, 166, 166, 161, 112, 100, 100, 148, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5779, 9, 29, 29, 22, 19, 17, 14, 14, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5779, 10, 32, 32, 16, 20, 16, 23, 18, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5780, 40, 104, 104, 87, 87, 63, 63, 59, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5780, 40, 128, 128, 83, 83, 63, 63, 91, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5780, 40, 144, 144, 91, 123, 55, 71, 63, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5780, 40, 128, 128, 87, 95, 43, 43, 39, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5781, 11, 33, 33, 22, 17, 17, 17, 15, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5781, 12, 35, 35, 22, 16, 16, 16, 29, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5782, 30, 80, 80, 66, 48, 54, 54, 69, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5782, 30, 83, 83, 64, 51, 45, 57, 74, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5783, 5, 21, 21, 11, 13, 11, 13, 11, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5783, 5, 20, 20, 14, 16, 9, 9, 8, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5784, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5784, 27, 84, 84, 44, 44, 57, 47, 39, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5784, 27, 95, 95, 47, 47, 36, 36, 36, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5785, 63, 139, 139, 108, 134, 120, 96, 68, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5785, 63, 196, 196, 134, 147, 65, 65, 59, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5785, 63, 190, 190, 141, 204, 103, 103, 78, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5785, 63, 171, 171, 90, 153, 134, 115, 109, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5786, 40, 108, 108, 47, 59, 63, 107, 87, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5786, 40, 104, 104, 87, 87, 63, 63, 59, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5786, 40, 113, 113, 91, 55, 59, 59, 147, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5786, 40, 128, 128, 119, 79, 51, 95, 87, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5786, 40, 116, 116, 119, 99, 63, 75, 87, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5787, 6, 22, 22, 13, 10, 10, 10, 17, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5787, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5788, 58, 132, 132, 66, 66, 101, 89, 83, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5788, 59, 172, 172, 120, 102, 132, 102, 126, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5788, 60, 139, 139, 68, 62, 170, 110, 152, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5788, 61, 178, 178, 94, 106, 142, 130, 112, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5789, 64, 237, 237, 127, 121, 125, 118, 104, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5789, 64, 98, 98, 143, 85, 66, 66, 79, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5789, 64, 257, 257, 102, 102, 125, 125, 113, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5789, 65, 221, 221, 138, 138, 112, 112, 73, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5790, 30, 92, 92, 53, 56, 48, 48, 49, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5790, 30, 83, 83, 57, 48, 39, 48, 66, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5791, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5791, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5791, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5791, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5791, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5791, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5792, 28, 64, 64, 40, 90, 40, 65, 31, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5792, 27, 84, 84, 63, 52, 47, 47, 52, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5793, 5, 19, 19, 10, 13, 16, 12, 11, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5793, 5, 23, 23, 11, 9, 11, 9, 9, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5794, 30, 77, 77, 47, 57, 39, 51, 41, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5795, 30, 77, 77, 47, 57, 39, 51, 41, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5796, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5797, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5798, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5799, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5799, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5800, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5801, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5802, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5803, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5804, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5805, 22, 59, 59, 34, 32, 63, 37, 54, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5806, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5806, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5806, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5807, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5808, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5809, 38, 95, 95, 56, 52, 106, 60, 90, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5810, 34, 76, 76, 41, 37, 85, 41, 71, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5810, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5811, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5811, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5811, 33, 84, 84, 49, 46, 92, 53, 79, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5812, 34, 76, 76, 41, 37, 85, 41, 71, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5812, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5813, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5813, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5813, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5814, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5815, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5816, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5817, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5818, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5819, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5820, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5821, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5821, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5822, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5823, 24, 57, 57, 30, 28, 61, 30, 52, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5824, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5825, 38, 95, 95, 56, 52, 106, 60, 90, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5826, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5827, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5827, 33, 74, 74, 39, 36, 82, 39, 69, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5827, 33, 84, 84, 49, 46, 92, 53, 79, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5828, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5828, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5828, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5828, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5828, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5828, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5829, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5829, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5829, 52, 122, 122, 70, 60, 54, 65, 80, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5829, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5829, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5829, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5830, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5830, 51, 109, 109, 59, 53, 125, 59, 104, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5830, 51, 160, 160, 117, 89, 89, 104, 92, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5830, 51, 155, 155, 104, 94, 89, 99, 115, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5830, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5830, 51, 104, 104, 59, 94, 120, 79, 69, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5831, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5831, 51, 145, 145, 120, 81, 125, 110, 118, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5831, 51, 120, 120, 69, 59, 53, 64, 79, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5831, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5831, 51, 130, 130, 84, 120, 145, 94, 94, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5831, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5832, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5832, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5832, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5832, 51, 145, 145, 120, 81, 125, 110, 118, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5832, 54, 164, 164, 110, 100, 94, 105, 121, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5832, 54, 137, 137, 127, 218, 116, 73, 100, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5833, 51, 140, 140, 89, 84, 155, 99, 135, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5833, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5833, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5833, 52, 156, 156, 102, 101, 107, 127, 127, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5833, 51, 130, 130, 84, 120, 145, 94, 94, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5833, 52, 163, 163, 132, 91, 86, 101, 158, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5834, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5834, 52, 127, 127, 75, 70, 143, 80, 122, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5834, 54, 137, 137, 127, 218, 116, 73, 100, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5834, 51, 153, 153, 100, 99, 105, 125, 125, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5834, 53, 166, 166, 135, 92, 87, 103, 161, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5834, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5835, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5835, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5835, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5835, 53, 150, 150, 124, 84, 130, 114, 122, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5835, 52, 156, 156, 102, 101, 107, 127, 127, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5835, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5836, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5836, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5836, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5836, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5836, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5836, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5837, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5837, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5837, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5837, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5837, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5837, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5838, 56, 153, 153, 103, 81, 137, 81, 97, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5838, 56, 147, 147, 131, 86, 64, 109, 153, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5838, 56, 164, 164, 86, 86, 114, 92, 75, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5838, 57, 161, 161, 79, 88, 108, 111, 122, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5839, 25, 61, 61, 37, 31, 31, 36, 24, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5839, 25, 64, 64, 41, 29, 29, 29, 56, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5839, 26, 76, 76, 45, 45, 32, 32, 29, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5840, 35, 117, 117, 70, 62, 49, 56, 80, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5840, 32, 79, 79, 51, 35, 35, 35, 70, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5840, 21, 63, 63, 37, 37, 27, 27, 25, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5841, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5841, 51, 140, 140, 110, 84, 74, 74, 150, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5841, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5842, 58, 170, 170, 130, 107, 95, 95, 72, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5842, 56, 167, 167, 110, 109, 115, 137, 137, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5842, 57, 173, 173, 128, 185, 93, 93, 71, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5842, 57, 190, 190, 111, 111, 128, 139, 105, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5843, 60, 175, 175, 110, 74, 98, 74, 98, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5843, 61, 184, 184, 94, 112, 94, 142, 161, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5843, 60, 169, 169, 114, 92, 83, 116, 128, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5843, 60, 163, 163, 110, 86, 146, 86, 104, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5844, 27, 84, 84, 37, 43, 37, 43, 36, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5844, 27, 68, 68, 39, 33, 30, 36, 44, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5845, 36, 109, 109, 48, 56, 48, 56, 46, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5845, 36, 112, 112, 75, 68, 64, 71, 82, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5846, 54, 191, 191, 103, 114, 103, 114, 83, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5846, 54, 164, 164, 110, 100, 94, 105, 121, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5847, 36, 73, 73, 25, 57, 28, 32, 75, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5847, 36, 73, 73, 28, 32, 25, 57, 75, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5847, 40, 200, 200, 91, 55, 91, 55, 67, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5848, 42, 176, 176, 78, 49, 78, 49, 70, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5848, 42, 176, 176, 78, 49, 78, 49, 70, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5848, 45, 224, 224, 102, 61, 102, 61, 75, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5849, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5849, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5850, 56, 276, 276, 125, 75, 125, 75, 92, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5850, 56, 276, 276, 125, 75, 125, 75, 92, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5851, 31, 107, 107, 53, 53, 40, 40, 40, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5851, 32, 82, 82, 80, 45, 45, 45, 22, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5852, 38, 130, 130, 64, 64, 49, 49, 49, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5852, 38, 99, 99, 71, 56, 56, 56, 71, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5853, 52, 132, 132, 86, 70, 127, 106, 91, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5853, 52, 149, 149, 66, 103, 87, 114, 47, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5853, 51, 140, 140, 84, 84, 84, 84, 84, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5854, 37, 88, 88, 44, 44, 66, 59, 55, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5854, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5854, 38, 99, 99, 64, 52, 94, 79, 68, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5854, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5855, 54, 169, 169, 113, 108, 127, 110, 116, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5855, 53, 145, 145, 92, 98, 114, 103, 66, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5855, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5855, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5856, 54, 169, 169, 113, 108, 127, 110, 116, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5856, 53, 145, 145, 92, 98, 114, 103, 66, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5856, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5856, 52, 184, 184, 75, 75, 102, 123, 96, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5857, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5857, 31, 69, 69, 31, 31, 44, 37, 40, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5857, 32, 91, 91, 42, 54, 42, 54, 38, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5858, 38, 92, 92, 68, 90, 64, 52, 45, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5858, 38, 90, 90, 45, 45, 68, 60, 56, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5858, 39, 109, 109, 50, 65, 50, 65, 46, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5859, 33, 81, 81, 49, 46, 63, 46, 63, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5859, 32, 79, 79, 42, 38, 48, 80, 61, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5859, 32, 91, 91, 67, 48, 48, 48, 42, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5860, 40, 96, 96, 59, 55, 75, 55, 75, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5860, 41, 98, 98, 52, 48, 60, 101, 77, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5860, 39, 109, 109, 81, 58, 58, 58, 50, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5861, 32, 79, 79, 67, 80, 35, 35, 29, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5861, 31, 76, 76, 34, 34, 40, 47, 34, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5861, 32, 85, 85, 48, 48, 48, 48, 48, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5861, 31, 89, 89, 53, 53, 37, 37, 34, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5862, 37, 101, 101, 88, 103, 51, 51, 44, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5862, 38, 92, 92, 41, 41, 49, 56, 41, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5862, 37, 97, 97, 55, 55, 55, 55, 55, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5862, 38, 107, 107, 64, 64, 45, 45, 41, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5863, 40, 116, 116, 95, 99, 67, 59, 59, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5863, 41, 131, 131, 85, 85, 64, 64, 93, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5864, 30, 74, 74, 45, 42, 57, 42, 57, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5864, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5865, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5865, 40, 104, 104, 67, 95, 115, 75, 75, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5865, 40, 122, 122, 80, 79, 84, 99, 99, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5865, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5866, 52, 163, 163, 106, 106, 80, 80, 117, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5866, 55, 150, 150, 118, 90, 118, 90, 85, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5866, 53, 124, 124, 92, 124, 87, 71, 61, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5866, 54, 148, 148, 116, 89, 78, 78, 159, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5867, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5867, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5867, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5867, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5867, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5867, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5868, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5868, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5868, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5868, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5868, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5868, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5869, 100, 434, 434, 281, 161, 121, 161, 141, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5869, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5869, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5869, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5869, 100, 336, 336, 161, 199, 241, 291, 203, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5869, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5870, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5870, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5870, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5870, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5870, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5870, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5871, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5871, 100, 268, 268, 221, 131, 141, 141, 361, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5871, 100, 318, 318, 203, 235, 203, 255, 127, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5871, 100, 434, 434, 281, 161, 121, 161, 141, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5871, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5871, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5872, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5872, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5872, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5872, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5872, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5872, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5873, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5873, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5873, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5873, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5873, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5873, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5874, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5874, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5874, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5874, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5874, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5874, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5875, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5875, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5875, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5875, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5875, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5875, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5876, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5876, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5876, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5876, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5876, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5876, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5877, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5877, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5877, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5877, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5877, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5877, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5878, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5878, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5878, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5878, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5878, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5878, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5879, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5879, 29, 72, 72, 38, 35, 44, 73, 56, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5880, 43, 128, 128, 106, 119, 46, 76, 46, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5880, 43, 101, 101, 50, 50, 76, 67, 63, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5880, 43, 124, 124, 89, 89, 71, 74, 70, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5880, 42, 137, 137, 79, 56, 79, 56, 60, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5881, 13, 41, 41, 21, 21, 16, 16, 13, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5881, 12, 35, 35, 21, 20, 26, 20, 26, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5882, 12, 35, 35, 21, 19, 23, 21, 24, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5883, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5883, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5883, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5883, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5883, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5883, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5884, 16, 45, 45, 34, 21, 30, 21, 25, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5884, 16, 44, 44, 17, 20, 23, 36, 28, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5884, 16, 42, 42, 31, 21, 31, 21, 31, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5884, 16, 42, 42, 17, 31, 23, 31, 17, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5885, 23, 61, 61, 47, 29, 42, 28, 33, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5885, 23, 59, 59, 22, 27, 31, 50, 38, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5885, 23, 57, 57, 43, 29, 43, 29, 43, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5885, 23, 66, 66, 31, 52, 50, 61, 31, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5886, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5886, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5886, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5886, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5887, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5887, 29, 74, 74, 32, 47, 38, 53, 71, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5888, 34, 100, 100, 68, 64, 81, 64, 81, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5888, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5888, 33, 127, 127, 68, 65, 67, 63, 56, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5888, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5889, 14, 44, 44, 21, 21, 28, 22, 19, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5889, 14, 41, 41, 26, 21, 29, 24, 22, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5890, 20, 61, 61, 32, 28, 46, 42, 50, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5890, 20, 61, 61, 28, 32, 42, 46, 50, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5890, 20, 61, 61, 44, 32, 28, 28, 24, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5891, 27, 82, 82, 36, 56, 47, 61, 27, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5892, 42, 113, 113, 99, 66, 49, 83, 116, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5892, 42, 121, 121, 99, 104, 70, 62, 62, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5892, 42, 109, 109, 74, 57, 91, 74, 99, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5893, 17, 50, 50, 28, 24, 21, 21, 28, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5893, 17, 48, 48, 36, 31, 24, 21, 28, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5893, 17, 53, 53, 40, 25, 40, 25, 42, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5893, 17, 45, 45, 32, 40, 36, 29, 22, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5894, 23, 64, 64, 36, 31, 27, 27, 36, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5894, 23, 61, 61, 47, 40, 31, 27, 36, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5894, 23, 68, 68, 52, 32, 52, 32, 55, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5894, 23, 57, 57, 42, 52, 47, 38, 28, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5895, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5895, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5895, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5895, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5896, 6, 23, 23, 11, 14, 11, 16, 13, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5896, 6, 20, 20, 8, 9, 8, 13, 16, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5897, 17, 48, 48, 24, 31, 24, 36, 28, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5897, 17, 39, 39, 16, 17, 14, 29, 38, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5897, 16, 44, 44, 20, 20, 28, 20, 37, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5898, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5898, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5898, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5899, 20, 57, 57, 22, 23, 30, 34, 18, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5899, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5899, 20, 55, 55, 24, 18, 46, 38, 38, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5899, 20, 51, 51, 20, 38, 28, 38, 20, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5900, 35, 99, 99, 52, 66, 52, 80, 63, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5900, 36, 102, 102, 68, 53, 89, 53, 64, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5900, 34, 107, 107, 68, 54, 88, 75, 37, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5900, 36, 105, 105, 51, 57, 70, 71, 79, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5900, 36, 105, 105, 70, 57, 51, 71, 79, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5901, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5901, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5901, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5901, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5901, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5901, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5902, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5902, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5903, 20, 53, 53, 24, 24, 28, 32, 24, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5903, 20, 53, 53, 28, 32, 24, 24, 24, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5903, 20, 65, 65, 40, 40, 40, 40, 40, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5904, 20, 51, 51, 30, 25, 26, 30, 20, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5904, 20, 59, 59, 20, 26, 20, 30, 42, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5904, 20, 57, 57, 30, 30, 26, 26, 32, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5905, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5905, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5905, 50, 168, 168, 98, 98, 113, 123, 93, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5905, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5905, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5905, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5906, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5906, 100, 266, 266, 181, 251, 181, 281, 191, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5907, 20, 51, 51, 34, 26, 24, 24, 26, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5907, 20, 53, 53, 34, 24, 24, 24, 46, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5907, 20, 48, 48, 22, 22, 30, 26, 28, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5907, 20, 45, 45, 28, 48, 24, 48, 22, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5908, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5908, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5909, 20, 61, 61, 44, 32, 32, 32, 28, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5909, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5909, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5909, 20, 55, 55, 24, 18, 46, 38, 38, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5910, 5, 20, 20, 13, 11, 11, 11, 11, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5910, 5, 19, 19, 9, 9, 9, 9, 9, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5911, 5, 21, 21, 14, 11, 14, 11, 11, 583); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5911, 5, 21, 21, 15, 8, 13, 8, 13, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5912, 20, 53, 53, 34, 24, 24, 24, 46, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5912, 20, 53, 53, 32, 30, 40, 30, 40, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5912, 20, 55, 55, 36, 28, 40, 32, 30, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5912, 20, 55, 55, 28, 36, 28, 42, 32, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5913, 20, 55, 55, 52, 30, 30, 30, 16, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5913, 20, 61, 61, 22, 26, 40, 44, 36, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5913, 20, 61, 61, 36, 36, 36, 36, 36, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5914, 5, 22, 22, 12, 11, 10, 12, 11, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5914, 5, 21, 21, 11, 11, 11, 11, 11, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5915, 31, 98, 98, 76, 55, 76, 55, 78, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5915, 31, 98, 98, 76, 55, 76, 55, 78, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5915, 31, 98, 98, 76, 55, 76, 55, 78, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5916, 30, 88, 88, 51, 48, 45, 45, 58, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5917, 10, 33, 33, 19, 18, 19, 18, 21, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5917, 10, 33, 33, 19, 18, 19, 18, 21, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5918, 10, 33, 33, 19, 18, 19, 18, 21, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5918, 10, 33, 33, 19, 18, 19, 18, 21, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5919, 10, 33, 33, 19, 18, 19, 18, 21, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5919, 10, 33, 33, 19, 18, 19, 18, 21, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5920, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5921, 30, 83, 83, 27, 36, 27, 42, 60, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5922, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5922, 42, 121, 121, 99, 83, 66, 66, 91, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5922, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5923, 37, 104, 104, 73, 92, 59, 77, 55, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5923, 38, 122, 122, 109, 117, 60, 68, 52, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5923, 38, 114, 114, 83, 71, 64, 71, 56, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5923, 38, 114, 114, 94, 71, 98, 75, 49, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5923, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5924, 46, 127, 127, 85, 118, 85, 131, 90, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5924, 45, 138, 138, 102, 147, 75, 75, 57, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5924, 46, 146, 146, 113, 95, 95, 95, 113, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5924, 46, 173, 173, 93, 88, 91, 86, 76, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5924, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5925, 46, 127, 127, 85, 118, 85, 131, 90, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5925, 45, 138, 138, 102, 147, 75, 75, 57, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5925, 46, 146, 146, 113, 95, 95, 95, 113, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5925, 46, 173, 173, 93, 88, 91, 86, 76, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5925, 47, 144, 144, 106, 68, 125, 97, 111, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5926, 63, 171, 171, 115, 159, 115, 178, 122, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5926, 64, 193, 193, 143, 207, 104, 104, 79, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5926, 65, 228, 228, 171, 145, 138, 145, 106, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5926, 64, 186, 186, 149, 136, 98, 111, 117, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5926, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5927, 63, 171, 171, 115, 159, 115, 178, 122, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5927, 64, 193, 193, 143, 207, 104, 104, 79, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5927, 65, 228, 228, 171, 145, 138, 145, 106, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5927, 64, 186, 186, 149, 136, 98, 111, 117, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5927, 65, 195, 195, 145, 93, 171, 132, 151, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5928, 48, 147, 147, 99, 89, 84, 94, 108, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5928, 47, 125, 125, 119, 120, 110, 92, 70, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5928, 47, 191, 191, 76, 76, 93, 93, 84, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5928, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5928, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5929, 48, 156, 156, 108, 99, 89, 99, 147, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5929, 49, 135, 135, 71, 120, 105, 91, 86, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5929, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5929, 49, 135, 135, 96, 105, 120, 105, 135, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5929, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5930, 48, 156, 156, 108, 99, 89, 99, 147, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5930, 49, 135, 135, 71, 120, 105, 91, 86, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5930, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5930, 49, 135, 135, 96, 105, 120, 105, 135, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5930, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5931, 62, 174, 174, 76, 114, 126, 200, 114, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5931, 63, 227, 227, 191, 178, 84, 84, 78, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5931, 64, 218, 218, 188, 129, 104, 156, 131, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5931, 65, 208, 208, 145, 132, 119, 132, 197, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5931, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5932, 62, 174, 174, 76, 114, 126, 200, 114, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5932, 63, 227, 227, 191, 178, 84, 84, 78, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5932, 64, 218, 218, 188, 129, 104, 156, 131, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5932, 65, 208, 208, 145, 132, 119, 132, 197, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5932, 65, 189, 189, 125, 106, 164, 106, 164, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5933, 28, 92, 92, 54, 54, 65, 71, 54, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5933, 29, 95, 95, 56, 56, 67, 73, 56, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5933, 31, 101, 101, 59, 59, 71, 78, 59, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5933, 30, 98, 98, 57, 57, 69, 75, 57, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5933, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5934, 44, 140, 140, 82, 82, 100, 108, 82, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5934, 45, 143, 143, 84, 84, 102, 111, 84, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5934, 46, 149, 149, 86, 61, 86, 61, 65, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5934, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5934, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5935, 44, 140, 140, 82, 82, 100, 108, 82, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5935, 45, 143, 143, 84, 84, 102, 111, 84, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5935, 46, 149, 149, 86, 61, 86, 61, 65, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5935, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5935, 43, 132, 132, 127, 106, 80, 89, 59, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5936, 63, 196, 196, 115, 115, 141, 153, 115, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5936, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5936, 64, 230, 230, 144, 108, 144, 121, 115, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5936, 65, 202, 202, 119, 119, 145, 158, 119, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5936, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5937, 63, 196, 196, 115, 115, 141, 153, 115, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5937, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5937, 64, 230, 230, 144, 108, 144, 121, 115, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5937, 65, 202, 202, 119, 119, 145, 158, 119, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5937, 64, 193, 193, 188, 156, 117, 130, 85, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5938, 45, 134, 134, 79, 79, 70, 70, 84, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5938, 45, 138, 138, 97, 201, 70, 79, 48, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5938, 45, 128, 128, 124, 79, 95, 77, 79, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5938, 44, 135, 135, 91, 95, 117, 100, 64, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5938, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5939, 48, 147, 147, 99, 113, 108, 118, 70, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5939, 47, 130, 130, 78, 78, 101, 101, 101, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5939, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5939, 48, 209, 209, 89, 65, 103, 70, 65, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5939, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5940, 48, 147, 147, 99, 113, 108, 118, 70, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5940, 47, 130, 130, 78, 78, 101, 101, 101, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5940, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5940, 48, 209, 209, 89, 65, 103, 70, 65, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5940, 48, 166, 166, 79, 98, 118, 142, 100, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5941, 65, 429, 429, 41, 41, 125, 203, 99, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5941, 64, 148, 148, 117, 194, 104, 194, 60, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5941, 63, 171, 171, 141, 96, 141, 128, 166, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5941, 64, 199, 199, 133, 156, 134, 156, 130, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5941, 50, 178, 178, 98, 138, 113, 138, 108, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5942, 65, 429, 429, 41, 41, 125, 203, 99, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5942, 64, 148, 148, 117, 194, 104, 194, 60, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5942, 63, 171, 171, 141, 96, 141, 128, 166, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5942, 64, 199, 199, 133, 156, 134, 156, 130, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5942, 65, 221, 221, 106, 131, 158, 190, 133, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5943, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5943, 44, 118, 118, 64, 60, 139, 104, 126, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5943, 44, 135, 135, 104, 104, 104, 104, 95, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5943, 44, 140, 140, 130, 86, 56, 104, 95, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5943, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5943, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5944, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5944, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5944, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5944, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5944, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5944, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5945, 45, 126, 126, 102, 61, 66, 66, 165, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5945, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5945, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5945, 45, 143, 143, 111, 93, 93, 93, 111, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5945, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5945, 50, 208, 208, 108, 103, 108, 118, 83, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5946, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5946, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5946, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5946, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5946, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5946, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5947, 36, 102, 102, 82, 118, 53, 53, 46, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5947, 36, 123, 123, 61, 68, 71, 68, 50, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5947, 36, 127, 127, 71, 75, 89, 97, 39, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5947, 36, 123, 123, 111, 71, 71, 71, 57, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5947, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5947, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5948, 42, 146, 146, 83, 87, 104, 112, 45, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5948, 43, 145, 145, 132, 84, 84, 84, 67, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5948, 43, 128, 128, 115, 175, 72, 72, 63, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5948, 44, 166, 166, 91, 100, 104, 100, 78, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5948, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5949, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5949, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5949, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5949, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5949, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5949, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5950, 26, 110, 110, 44, 44, 53, 53, 49, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5950, 26, 94, 94, 58, 58, 48, 48, 32, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5950, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5950, 27, 84, 84, 52, 52, 52, 52, 52, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5950, 28, 81, 81, 57, 71, 45, 59, 43, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5951, 42, 117, 117, 83, 104, 66, 87, 62, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5951, 42, 146, 146, 91, 91, 74, 74, 49, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5951, 42, 125, 125, 129, 104, 66, 87, 74, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5951, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5951, 42, 125, 125, 78, 78, 78, 78, 78, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5951, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5952, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5952, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5952, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5952, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5952, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5952, 50, 158, 158, 73, 123, 123, 223, 73, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5953, 20, 54, 54, 24, 34, 28, 38, 51, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5953, 19, 58, 58, 38, 30, 49, 30, 36, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5953, 19, 54, 54, 34, 28, 49, 42, 36, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5953, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5954, 36, 107, 107, 64, 64, 107, 100, 75, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5954, 36, 98, 98, 78, 93, 100, 71, 55, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5954, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5954, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5955, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5955, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5955, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5955, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5955, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5955, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5956, 42, 151, 151, 104, 87, 70, 70, 62, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5956, 42, 134, 134, 87, 87, 87, 87, 87, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5956, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5957, 55, 194, 194, 134, 112, 90, 90, 79, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5957, 54, 169, 169, 110, 110, 110, 110, 110, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5957, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5958, 55, 194, 194, 134, 112, 90, 90, 79, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5958, 54, 169, 169, 110, 110, 110, 110, 110, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5958, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5959, 41, 114, 114, 73, 77, 89, 81, 52, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5959, 42, 130, 130, 66, 78, 66, 99, 112, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5959, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5960, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5960, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5960, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5961, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5961, 53, 161, 161, 82, 98, 82, 124, 140, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5961, 52, 132, 132, 86, 70, 127, 106, 91, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5962, 36, 87, 87, 75, 89, 39, 39, 32, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5962, 36, 87, 87, 75, 89, 39, 39, 32, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5962, 38, 118, 118, 94, 102, 52, 60, 68, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5963, 45, 165, 165, 115, 88, 79, 111, 66, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5963, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5964, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5964, 54, 169, 169, 73, 94, 121, 143, 110, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5964, 53, 156, 156, 130, 98, 135, 103, 66, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5964, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5965, 63, 227, 227, 159, 122, 109, 153, 90, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5965, 62, 193, 193, 83, 107, 138, 163, 126, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5965, 61, 178, 178, 148, 112, 155, 118, 75, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5965, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5966, 39, 125, 125, 81, 58, 50, 58, 38, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5966, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5966, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5967, 37, 123, 123, 74, 65, 51, 59, 84, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5967, 39, 90, 90, 69, 46, 69, 46, 69, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5967, 41, 123, 123, 77, 77, 77, 77, 77, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5967, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5968, 57, 184, 184, 112, 98, 76, 88, 128, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5968, 56, 170, 170, 142, 109, 142, 109, 75, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5968, 58, 170, 170, 107, 107, 107, 107, 107, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5968, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5969, 57, 184, 184, 112, 98, 76, 88, 128, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5969, 56, 170, 170, 142, 109, 142, 109, 75, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5969, 58, 170, 170, 107, 107, 107, 107, 107, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5969, 56, 242, 242, 103, 75, 120, 81, 75, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5970, 38, 114, 114, 87, 71, 64, 64, 49, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5970, 39, 109, 109, 69, 73, 85, 77, 50, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5970, 40, 116, 116, 57, 63, 77, 79, 87, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5971, 42, 125, 125, 70, 72, 87, 89, 70, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5971, 41, 123, 123, 93, 77, 68, 68, 52, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5971, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5972, 54, 159, 159, 89, 91, 110, 113, 89, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5972, 53, 161, 161, 119, 172, 87, 87, 66, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5972, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5973, 53, 156, 156, 87, 89, 108, 111, 87, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5973, 51, 155, 155, 115, 166, 84, 84, 64, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5973, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5974, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5974, 34, 86, 86, 78, 30, 61, 30, 61, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5975, 35, 85, 85, 45, 56, 45, 66, 56, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5975, 35, 77, 77, 35, 35, 49, 42, 45, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5975, 35, 84, 84, 42, 42, 63, 56, 52, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5976, 37, 93, 93, 62, 40, 77, 55, 66, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5976, 36, 73, 73, 46, 82, 39, 82, 35, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5976, 37, 89, 89, 66, 88, 62, 51, 44, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5976, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5977, 38, 111, 111, 74, 60, 54, 75, 83, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5977, 39, 94, 94, 65, 50, 50, 50, 42, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5977, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5978, 53, 150, 150, 101, 82, 73, 103, 114, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5978, 54, 159, 159, 121, 100, 89, 89, 67, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5978, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5979, 53, 150, 150, 101, 82, 73, 103, 114, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5979, 52, 153, 153, 117, 96, 86, 86, 65, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5979, 53, 150, 150, 73, 82, 101, 103, 114, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5980, 38, 114, 114, 71, 49, 64, 49, 64, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5980, 38, 95, 95, 87, 33, 68, 33, 68, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5980, 38, 95, 95, 64, 41, 79, 56, 68, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5980, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5981, 57, 167, 167, 105, 71, 93, 71, 93, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5981, 56, 164, 164, 159, 69, 131, 69, 131, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5981, 56, 136, 136, 92, 58, 114, 81, 97, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5981, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5982, 57, 167, 167, 105, 71, 93, 71, 93, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5982, 56, 164, 164, 159, 69, 131, 69, 131, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5982, 56, 136, 136, 92, 58, 114, 81, 97, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5982, 57, 150, 150, 133, 88, 65, 111, 156, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5983, 40, 128, 128, 87, 95, 43, 43, 39, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5983, 40, 104, 104, 71, 55, 87, 71, 95, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5983, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5984, 57, 178, 178, 122, 133, 59, 59, 54, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5984, 56, 142, 142, 97, 75, 120, 97, 131, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5984, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5985, 57, 178, 178, 122, 133, 59, 59, 54, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5985, 56, 142, 142, 97, 75, 120, 97, 131, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5985, 57, 167, 167, 93, 96, 116, 119, 93, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5986, 39, 125, 125, 90, 69, 69, 81, 72, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5986, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5986, 39, 109, 109, 58, 73, 81, 81, 128, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5986, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5986, 39, 117, 117, 97, 108, 42, 69, 42, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5987, 47, 139, 139, 101, 153, 101, 87, 40, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5987, 46, 118, 118, 67, 131, 95, 95, 49, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5987, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5988, 47, 139, 139, 101, 153, 101, 87, 40, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5988, 46, 118, 118, 67, 131, 95, 95, 49, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5988, 48, 145, 145, 95, 94, 100, 118, 118, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5989, 32, 85, 85, 58, 74, 38, 38, 26, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5989, 31, 71, 71, 44, 71, 34, 34, 40, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5989, 32, 79, 79, 35, 37, 48, 49, 58, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5989, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5990, 51, 155, 155, 115, 166, 84, 84, 64, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5990, 55, 151, 151, 123, 74, 79, 79, 200, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5990, 52, 153, 153, 86, 88, 106, 109, 86, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5990, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5991, 51, 155, 155, 115, 166, 84, 84, 64, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5991, 55, 151, 151, 123, 74, 79, 79, 200, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5991, 52, 153, 153, 86, 88, 106, 109, 86, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5991, 54, 148, 148, 100, 78, 132, 78, 94, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5992, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5992, 43, 120, 120, 93, 72, 63, 63, 127, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5992, 43, 120, 120, 97, 80, 72, 123, 54, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5992, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5993, 57, 133, 133, 65, 59, 162, 105, 145, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5993, 58, 158, 158, 124, 95, 83, 83, 170, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5993, 58, 158, 158, 130, 107, 95, 165, 72, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5993, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5994, 57, 133, 133, 65, 59, 162, 105, 145, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5994, 58, 158, 158, 124, 95, 83, 83, 170, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5994, 58, 158, 158, 130, 107, 95, 165, 72, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5994, 58, 199, 199, 124, 124, 101, 101, 66, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5995, 45, 165, 165, 115, 88, 79, 111, 66, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5995, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5996, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5996, 54, 169, 169, 73, 94, 121, 143, 110, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5996, 53, 145, 145, 161, 108, 87, 87, 98, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5996, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5997, 63, 227, 227, 159, 122, 109, 153, 90, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5997, 62, 193, 193, 83, 107, 138, 163, 126, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5997, 61, 166, 166, 185, 124, 100, 100, 112, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5997, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5998, 34, 103, 103, 44, 51, 54, 51, 34, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5998, 32, 95, 95, 42, 65, 55, 72, 31, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5998, 33, 94, 94, 49, 63, 49, 76, 59, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5999, 40, 136, 136, 67, 75, 79, 75, 55, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5999, 39, 114, 114, 51, 79, 66, 86, 36, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (5999, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6000, 34, 97, 97, 44, 58, 44, 58, 41, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6000, 34, 90, 90, 75, 44, 75, 44, 41, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6001, 37, 130, 130, 35, 53, 35, 53, 35, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6001, 38, 88, 88, 67, 83, 74, 60, 43, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6001, 38, 92, 92, 79, 94, 41, 41, 33, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6001, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6002, 42, 226, 226, 47, 68, 47, 68, 47, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6002, 43, 98, 98, 75, 93, 84, 67, 48, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6002, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6002, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6003, 42, 226, 226, 47, 68, 47, 68, 47, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6003, 43, 98, 98, 75, 93, 84, 67, 48, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6003, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6003, 41, 114, 114, 68, 81, 68, 81, 85, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6004, 53, 283, 283, 59, 85, 59, 85, 59, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6004, 51, 135, 135, 129, 130, 119, 99, 76, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6004, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6004, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6005, 53, 283, 283, 59, 85, 59, 85, 59, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6005, 51, 135, 135, 129, 130, 119, 99, 76, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6005, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6005, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6006, 48, 157, 157, 100, 115, 100, 125, 63, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6006, 48, 147, 147, 99, 103, 127, 108, 70, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6006, 49, 145, 145, 135, 81, 135, 81, 76, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6006, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6007, 48, 157, 157, 100, 115, 100, 125, 63, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6007, 48, 147, 147, 99, 103, 127, 108, 70, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6007, 49, 145, 145, 135, 81, 135, 81, 76, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6007, 49, 145, 145, 105, 86, 125, 105, 140, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6008, 38, 120, 120, 71, 65, 56, 65, 94, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6008, 38, 122, 122, 79, 79, 60, 60, 87, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6008, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6009, 42, 132, 132, 78, 71, 62, 71, 104, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6009, 44, 140, 140, 91, 91, 69, 69, 100, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6009, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6010, 42, 132, 132, 78, 71, 62, 71, 104, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6010, 44, 140, 140, 91, 91, 69, 69, 100, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6010, 43, 128, 128, 76, 76, 67, 67, 80, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6011, 40, 120, 120, 86, 75, 71, 75, 60, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6011, 40, 96, 96, 55, 47, 43, 51, 63, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6011, 40, 100, 100, 51, 67, 51, 79, 59, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6011, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6012, 56, 164, 164, 119, 103, 97, 103, 82, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6012, 56, 170, 170, 114, 103, 97, 109, 125, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6012, 58, 141, 141, 72, 95, 72, 112, 83, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6012, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6013, 56, 164, 164, 119, 103, 97, 103, 82, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6013, 56, 170, 170, 114, 103, 97, 109, 125, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6013, 58, 141, 141, 72, 95, 72, 112, 83, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6013, 57, 144, 144, 122, 122, 88, 88, 82, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6014, 45, 165, 165, 115, 88, 79, 111, 66, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6014, 44, 140, 140, 60, 78, 100, 117, 91, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6015, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6015, 54, 169, 169, 73, 94, 121, 143, 110, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6015, 53, 156, 156, 151, 66, 124, 66, 124, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6015, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6016, 63, 227, 227, 159, 122, 109, 153, 90, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6016, 62, 193, 193, 83, 107, 138, 163, 126, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6016, 61, 178, 178, 173, 75, 142, 75, 142, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6016, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6017, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6017, 33, 87, 87, 79, 79, 39, 89, 63, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6017, 34, 154, 154, 98, 58, 44, 58, 51, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6017, 50, 148, 148, 88, 83, 113, 98, 113, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6017, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6018, 35, 117, 117, 80, 73, 66, 73, 108, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6018, 35, 108, 108, 87, 59, 87, 59, 63, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6018, 34, 100, 100, 51, 64, 81, 71, 61, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6018, 34, 103, 103, 58, 59, 71, 73, 58, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6019, 11, 31, 31, 17, 24, 24, 14, 22, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6019, 12, 37, 37, 25, 23, 17, 21, 24, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6019, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6020, 11, 31, 31, 17, 24, 24, 14, 22, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6020, 12, 37, 37, 25, 23, 17, 21, 24, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6020, 11, 33, 33, 21, 26, 16, 22, 15, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6021, 20, 49, 49, 28, 40, 40, 22, 36, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6021, 20, 55, 55, 39, 36, 26, 32, 37, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6021, 19, 51, 51, 32, 42, 25, 34, 23, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6022, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6022, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6022, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6023, 14, 45, 45, 18, 18, 20, 25, 24, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6023, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6024, 14, 45, 45, 18, 18, 20, 25, 24, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6024, 15, 48, 48, 28, 28, 20, 20, 19, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6025, 20, 77, 77, 32, 32, 42, 50, 40, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6025, 20, 69, 69, 44, 44, 34, 34, 48, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6026, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6026, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6027, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6027, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6027, 15, 45, 45, 26, 24, 29, 25, 26, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6027, 16, 42, 42, 31, 21, 31, 21, 31, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6028, 14, 34, 34, 21, 35, 18, 35, 17, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6028, 14, 43, 43, 22, 22, 19, 19, 24, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6029, 14, 43, 43, 24, 24, 24, 24, 24, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6029, 14, 43, 43, 23, 22, 22, 21, 26, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6030, 17, 41, 41, 17, 16, 46, 29, 41, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6030, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6030, 16, 38, 38, 15, 17, 13, 28, 36, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6030, 16, 54, 54, 29, 20, 17, 20, 18, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6031, 19, 62, 62, 28, 31, 28, 31, 27, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6031, 19, 56, 56, 27, 27, 36, 28, 25, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6031, 20, 54, 54, 24, 34, 28, 38, 51, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6031, 20, 67, 67, 44, 50, 48, 52, 32, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6032, 19, 68, 68, 40, 36, 28, 32, 46, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6032, 20, 52, 52, 24, 28, 24, 28, 36, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6032, 19, 56, 56, 27, 44, 42, 51, 27, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6032, 21, 57, 57, 35, 31, 39, 31, 44, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6033, 25, 74, 74, 29, 29, 32, 42, 39, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6033, 26, 73, 73, 63, 74, 37, 37, 32, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6033, 26, 81, 81, 36, 41, 36, 41, 35, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6033, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6034, 22, 56, 56, 28, 28, 41, 37, 34, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6034, 20, 68, 68, 40, 36, 32, 36, 52, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6034, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6035, 20, 51, 51, 46, 30, 26, 26, 42, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6035, 18, 48, 48, 25, 24, 29, 47, 36, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6035, 20, 63, 63, 32, 40, 50, 44, 38, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6036, 22, 55, 55, 37, 28, 26, 26, 28, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6036, 21, 49, 49, 27, 41, 52, 35, 31, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6036, 21, 51, 51, 31, 35, 41, 35, 48, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6036, 21, 65, 65, 67, 37, 44, 37, 44, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6037, 20, 66, 66, 52, 36, 52, 36, 38, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6037, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6037, 22, 72, 72, 48, 43, 41, 45, 52, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6037, 21, 67, 67, 50, 41, 37, 37, 41, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6038, 23, 68, 68, 36, 59, 52, 45, 43, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6038, 23, 59, 59, 33, 31, 43, 31, 43, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6038, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6039, 21, 57, 57, 44, 27, 39, 26, 31, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6039, 21, 63, 63, 46, 33, 33, 33, 29, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6039, 21, 61, 61, 35, 48, 39, 48, 27, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6040, 23, 71, 71, 36, 45, 56, 50, 43, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6040, 23, 74, 74, 56, 41, 52, 43, 52, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6040, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6041, 22, 55, 55, 41, 28, 41, 28, 41, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6041, 22, 72, 72, 48, 43, 41, 45, 52, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6041, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6042, 22, 57, 57, 28, 26, 65, 43, 59, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6042, 22, 70, 70, 37, 37, 48, 39, 32, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6042, 21, 72, 72, 46, 46, 35, 35, 50, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6042, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6043, 21, 57, 57, 40, 37, 27, 33, 39, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6043, 21, 57, 57, 50, 20, 39, 20, 39, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6043, 21, 55, 55, 39, 52, 37, 31, 27, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6043, 21, 67, 67, 50, 41, 37, 37, 41, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6044, 31, 92, 92, 47, 59, 75, 65, 56, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6044, 30, 86, 86, 69, 57, 51, 87, 39, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6044, 30, 110, 110, 45, 45, 61, 73, 57, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6044, 29, 90, 90, 67, 56, 50, 50, 56, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6045, 21, 46, 46, 29, 50, 25, 50, 23, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6045, 20, 54, 54, 44, 38, 32, 26, 26, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6045, 21, 65, 65, 52, 44, 35, 35, 48, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6046, 22, 57, 57, 28, 26, 65, 43, 59, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6046, 22, 64, 64, 54, 37, 28, 45, 63, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6046, 22, 66, 66, 39, 39, 50, 50, 50, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6046, 50, 118, 118, 68, 58, 63, 63, 113, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6047, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6047, 31, 101, 101, 90, 96, 50, 56, 44, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6047, 31, 98, 98, 71, 102, 53, 53, 40, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6047, 32, 95, 95, 42, 61, 67, 106, 61, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6047, 31, 104, 104, 71, 65, 59, 65, 96, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6048, 22, 66, 66, 50, 31, 50, 31, 52, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6048, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6048, 22, 70, 70, 52, 43, 39, 39, 30, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6049, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6049, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6049, 29, 107, 107, 57, 63, 57, 63, 47, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6049, 29, 92, 92, 61, 56, 53, 58, 67, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6049, 30, 92, 92, 87, 39, 72, 39, 72, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6050, 35, 103, 103, 108, 59, 70, 59, 70, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6050, 34, 97, 97, 78, 47, 51, 51, 126, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6050, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6050, 35, 92, 92, 77, 77, 56, 56, 52, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6051, 22, 70, 70, 50, 74, 50, 43, 21, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6051, 23, 73, 73, 45, 31, 40, 31, 40, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6051, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6052, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6052, 9, 30, 30, 17, 18, 21, 19, 13, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6052, 9, 31, 31, 23, 15, 23, 15, 14, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6052, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6052, 9, 31, 31, 19, 24, 14, 14, 10, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6052, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6053, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6053, 9, 30, 30, 17, 18, 21, 19, 13, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6053, 9, 31, 31, 23, 15, 23, 15, 14, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6053, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6053, 9, 31, 31, 19, 24, 14, 14, 10, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6054, 19, 51, 51, 23, 23, 27, 30, 23, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6054, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6054, 18, 52, 52, 42, 25, 42, 25, 24, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6054, 19, 58, 58, 27, 34, 27, 34, 25, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6054, 20, 57, 57, 38, 48, 26, 26, 18, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6055, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6055, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6055, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6055, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6055, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6056, 41, 168, 168, 67, 67, 82, 82, 74, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6056, 41, 106, 106, 68, 97, 118, 77, 77, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6056, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6057, 30, 86, 86, 39, 45, 60, 66, 72, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6057, 30, 86, 86, 57, 45, 75, 45, 54, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6057, 28, 78, 78, 34, 43, 45, 76, 62, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6057, 31, 92, 92, 45, 50, 61, 62, 68, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6058, 40, 115, 115, 111, 71, 85, 69, 71, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6058, 40, 104, 104, 79, 79, 71, 71, 59, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6058, 40, 96, 96, 75, 123, 67, 123, 39, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6058, 44, 144, 144, 100, 91, 82, 91, 135, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6058, 44, 219, 219, 100, 60, 100, 60, 73, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6059, 37, 115, 115, 84, 55, 99, 77, 88, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6059, 37, 114, 114, 74, 73, 78, 92, 92, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6059, 34, 107, 107, 71, 75, 92, 78, 51, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6059, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6059, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6060, 33, 101, 101, 56, 57, 69, 71, 56, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6060, 33, 120, 120, 63, 63, 59, 59, 46, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6060, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6060, 33, 94, 94, 56, 56, 56, 56, 56, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6061, 29, 91, 91, 73, 50, 73, 50, 53, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6061, 29, 84, 84, 64, 39, 64, 39, 68, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6061, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6061, 50, 133, 133, 93, 68, 93, 73, 83, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6062, 30, 86, 86, 45, 39, 66, 60, 72, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6062, 30, 86, 86, 45, 57, 45, 69, 54, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6062, 31, 92, 92, 62, 59, 75, 59, 75, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6062, 30, 89, 89, 59, 48, 44, 60, 66, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6063, 36, 91, 91, 57, 50, 64, 50, 71, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6063, 36, 116, 116, 50, 64, 82, 97, 75, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6063, 35, 127, 127, 68, 75, 68, 75, 56, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6063, 35, 127, 127, 80, 108, 49, 63, 56, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6063, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6063, 35, 124, 124, 77, 77, 63, 63, 42, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6064, 13, 36, 36, 31, 21, 18, 18, 29, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6064, 14, 40, 40, 25, 18, 18, 18, 33, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6065, 39, 113, 113, 69, 54, 77, 54, 93, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6065, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6065, 39, 105, 105, 34, 46, 34, 54, 77, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6065, 37, 115, 115, 77, 81, 99, 84, 55, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6065, 40, 124, 124, 75, 91, 75, 103, 83, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6066, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6066, 32, 75, 75, 38, 42, 38, 51, 48, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6066, 31, 95, 95, 53, 54, 65, 67, 53, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6066, 32, 101, 101, 67, 77, 74, 80, 48, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6067, 20, 63, 63, 41, 34, 31, 42, 46, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6067, 21, 63, 63, 23, 27, 41, 46, 37, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6067, 20, 63, 63, 31, 34, 41, 42, 46, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6067, 21, 69, 69, 54, 37, 54, 37, 39, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6067, 22, 97, 97, 43, 28, 43, 28, 39, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6068, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6068, 38, 122, 122, 109, 117, 60, 68, 52, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6068, 38, 111, 111, 75, 71, 90, 71, 90, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6068, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6069, 35, 106, 106, 80, 66, 59, 59, 66, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6069, 34, 105, 105, 81, 59, 75, 61, 75, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6069, 37, 114, 114, 103, 62, 62, 62, 84, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6069, 35, 106, 106, 101, 45, 84, 45, 84, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6069, 34, 107, 107, 68, 54, 88, 75, 37, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6070, 44, 87, 87, 29, 223, 29, 223, 25, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6070, 42, 281, 281, 28, 28, 83, 133, 66, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6070, 41, 119, 119, 93, 118, 89, 77, 68, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6071, 30, 89, 89, 93, 51, 60, 51, 60, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6071, 31, 86, 86, 28, 37, 28, 44, 62, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6071, 30, 104, 104, 87, 87, 51, 51, 45, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6071, 31, 107, 107, 62, 68, 87, 71, 50, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6071, 31, 101, 101, 59, 56, 65, 90, 78, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6072, 41, 131, 131, 85, 85, 85, 85, 85, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6072, 44, 149, 149, 86, 95, 122, 100, 69, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6072, 42, 117, 117, 129, 87, 70, 70, 78, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6072, 44, 149, 149, 126, 126, 73, 73, 64, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6072, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6073, 37, 112, 112, 92, 70, 96, 73, 47, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6073, 37, 108, 108, 84, 107, 81, 70, 62, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6073, 38, 141, 141, 98, 75, 68, 94, 56, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6073, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6073, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6074, 37, 112, 112, 103, 62, 103, 62, 59, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6074, 37, 114, 114, 74, 73, 78, 92, 92, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6074, 37, 112, 112, 81, 121, 81, 70, 33, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6074, 37, 108, 108, 47, 70, 77, 121, 70, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6074, 35, 126, 126, 65, 75, 68, 78, 53, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6075, 31, 73, 73, 55, 68, 62, 50, 36, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6075, 31, 98, 98, 81, 62, 81, 62, 44, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6075, 31, 129, 129, 52, 52, 63, 63, 57, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6075, 32, 117, 117, 74, 99, 45, 58, 51, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6076, 41, 125, 125, 97, 70, 89, 73, 89, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6076, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6076, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6076, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6077, 34, 97, 97, 51, 64, 71, 71, 112, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6077, 34, 97, 97, 58, 58, 75, 75, 75, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6077, 36, 102, 102, 68, 93, 68, 104, 71, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6077, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6077, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6078, 20, 59, 59, 50, 34, 26, 42, 58, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6078, 19, 60, 60, 36, 28, 40, 28, 47, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6078, 20, 61, 61, 36, 36, 46, 46, 46, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6078, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6079, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6079, 30, 101, 101, 61, 54, 42, 48, 69, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6079, 31, 86, 86, 40, 68, 65, 81, 40, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6079, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6080, 16, 44, 44, 26, 25, 33, 25, 33, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6080, 14, 37, 37, 22, 35, 18, 18, 21, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6080, 15, 69, 69, 31, 20, 31, 20, 28, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6081, 20, 53, 53, 36, 28, 28, 28, 24, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6081, 19, 58, 58, 38, 30, 49, 30, 36, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6081, 20, 61, 61, 32, 40, 32, 48, 38, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6081, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6082, 18, 49, 49, 40, 34, 29, 24, 24, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6082, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6082, 18, 63, 63, 40, 29, 25, 29, 20, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6083, 18, 48, 48, 31, 40, 24, 33, 22, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6083, 18, 56, 56, 42, 26, 42, 26, 44, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6083, 18, 56, 56, 33, 33, 24, 24, 22, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6083, 18, 63, 63, 42, 45, 22, 22, 20, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6084, 14, 43, 43, 24, 21, 18, 18, 24, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6084, 13, 39, 39, 29, 18, 26, 18, 21, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6084, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6085, 17, 72, 72, 26, 17, 26, 19, 17, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6085, 17, 55, 55, 28, 34, 43, 38, 33, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6085, 16, 63, 63, 33, 33, 31, 31, 25, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6086, 20, 65, 65, 52, 58, 24, 38, 24, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6086, 21, 53, 53, 39, 48, 43, 35, 26, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6087, 39, 125, 125, 54, 69, 89, 104, 81, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6087, 39, 113, 113, 81, 128, 50, 73, 73, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6087, 39, 109, 109, 77, 97, 61, 81, 58, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6087, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6087, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6088, 10, 39, 39, 24, 18, 16, 18, 13, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6088, 10, 31, 31, 16, 15, 18, 28, 22, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6088, 11, 33, 33, 23, 29, 22, 18, 16, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6088, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6089, 10, 39, 39, 24, 18, 16, 18, 13, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6089, 10, 31, 31, 16, 15, 18, 28, 22, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6089, 11, 33, 33, 23, 29, 22, 18, 16, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6089, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6090, 20, 69, 69, 44, 32, 28, 32, 22, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6090, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6090, 20, 53, 53, 38, 50, 36, 30, 26, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6090, 20, 53, 53, 30, 26, 24, 28, 34, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6091, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6091, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6091, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6091, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6092, 14, 40, 40, 21, 21, 29, 21, 15, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6092, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6093, 14, 40, 40, 21, 21, 29, 21, 15, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6093, 14, 45, 45, 26, 21, 28, 22, 19, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6094, 20, 53, 53, 28, 28, 40, 28, 20, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6094, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6095, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6095, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6096, 18, 50, 50, 43, 18, 34, 18, 34, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6096, 17, 50, 50, 27, 25, 26, 25, 31, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6097, 19, 60, 60, 47, 40, 32, 32, 44, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6097, 20, 69, 69, 46, 50, 24, 24, 22, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6097, 20, 67, 67, 27, 27, 34, 34, 39, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6097, 20, 53, 53, 38, 50, 36, 30, 26, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6098, 27, 76, 76, 70, 71, 65, 55, 42, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6098, 27, 73, 73, 60, 36, 60, 36, 33, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6098, 27, 79, 79, 57, 41, 41, 41, 36, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6098, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6099, 36, 98, 98, 92, 93, 85, 71, 55, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6099, 35, 106, 106, 98, 59, 98, 59, 56, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6099, 35, 103, 103, 80, 101, 77, 66, 59, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6099, 35, 120, 120, 108, 70, 70, 70, 56, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6099, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6100, 31, 52, 52, 71, 44, 34, 34, 40, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6100, 30, 164, 164, 35, 50, 35, 50, 35, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6100, 35, 92, 92, 66, 52, 52, 52, 66, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6100, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6101, 15, 38, 38, 17, 17, 23, 20, 22, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6101, 16, 44, 44, 20, 26, 28, 28, 42, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6101, 16, 46, 46, 34, 29, 23, 20, 26, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6101, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6102, 30, 94, 94, 61, 60, 64, 75, 75, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6102, 30, 95, 95, 48, 57, 48, 72, 81, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6102, 32, 117, 117, 48, 67, 54, 67, 48, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6102, 50, 143, 143, 78, 138, 123, 63, 83, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6102, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6103, 19, 58, 58, 46, 38, 34, 57, 27, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6103, 21, 55, 55, 25, 26, 33, 34, 39, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6103, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6104, 11, 41, 41, 17, 17, 21, 21, 23, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6104, 12, 35, 35, 20, 18, 24, 18, 24, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6104, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6105, 11, 41, 41, 17, 17, 21, 21, 23, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6105, 12, 35, 35, 20, 18, 24, 18, 24, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6105, 11, 30, 30, 16, 24, 29, 21, 18, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6106, 20, 67, 67, 27, 27, 34, 34, 39, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6106, 20, 53, 53, 30, 28, 38, 28, 38, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6106, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6107, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6107, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6107, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6111, 33, 81, 81, 39, 36, 96, 63, 86, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6112, 44, 105, 105, 51, 47, 126, 82, 113, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6112, 44, 135, 135, 108, 78, 73, 78, 122, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6113, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6113, 50, 153, 153, 123, 89, 83, 89, 138, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6114, 56, 147, 147, 81, 75, 176, 131, 159, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6114, 56, 170, 170, 137, 99, 92, 99, 153, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6120, 14, 45, 45, 24, 24, 26, 29, 24, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6120, 14, 48, 48, 29, 21, 26, 21, 26, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6121, 26, 76, 76, 40, 40, 45, 50, 40, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6121, 26, 81, 81, 50, 35, 45, 35, 45, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6122, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6122, 29, 90, 90, 56, 38, 50, 38, 50, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6123, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6123, 32, 98, 98, 61, 42, 54, 42, 54, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6124, 35, 113, 113, 66, 66, 80, 87, 66, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6124, 35, 120, 120, 87, 59, 80, 59, 73, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6125, 20, 66, 66, 52, 36, 52, 36, 38, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6126, 20, 66, 66, 58, 36, 36, 36, 48, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6127, 30, 94, 94, 84, 51, 51, 51, 69, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6127, 30, 94, 94, 75, 51, 75, 51, 54, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6128, 14, 45, 45, 24, 24, 26, 29, 24, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6128, 14, 48, 48, 29, 21, 26, 21, 26, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6129, 26, 76, 76, 40, 40, 45, 50, 40, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6129, 26, 81, 81, 50, 35, 45, 35, 45, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6130, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6130, 29, 90, 90, 56, 38, 50, 38, 50, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6131, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6131, 32, 98, 98, 61, 42, 54, 42, 54, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6132, 35, 113, 113, 66, 66, 80, 87, 66, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6132, 35, 120, 120, 87, 59, 80, 59, 73, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6133, 18, 60, 60, 52, 33, 33, 33, 43, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6133, 18, 60, 60, 47, 33, 47, 33, 34, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6134, 22, 61, 61, 50, 37, 41, 41, 52, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6134, 20, 57, 57, 46, 34, 38, 38, 48, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6134, 24, 66, 66, 54, 40, 44, 44, 56, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6135, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6135, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6135, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6136, 20, 57, 57, 36, 30, 52, 44, 38, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6136, 22, 61, 61, 39, 32, 56, 48, 41, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6136, 24, 66, 66, 42, 35, 61, 52, 44, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6137, 19, 62, 62, 49, 55, 23, 36, 23, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6137, 19, 62, 62, 49, 55, 23, 36, 23, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6137, 19, 62, 62, 49, 55, 23, 36, 23, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6138, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6138, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6138, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6140, 28, 86, 86, 55, 58, 36, 38, 33, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6140, 28, 86, 86, 55, 58, 36, 38, 33, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6140, 34, 102, 102, 66, 70, 43, 45, 39, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6141, 51, 148, 148, 96, 102, 62, 66, 56, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6141, 53, 154, 154, 100, 106, 64, 68, 58, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6141, 52, 151, 151, 98, 104, 63, 67, 57, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6142, 21, 61, 61, 39, 27, 37, 25, 48, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6142, 21, 61, 61, 39, 27, 37, 25, 48, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6142, 24, 69, 69, 44, 30, 42, 28, 54, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6143, 12, 33, 33, 17, 16, 33, 17, 28, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6143, 13, 35, 35, 18, 17, 35, 18, 30, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6143, 17, 43, 43, 23, 21, 45, 23, 38, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6144, 21, 55, 55, 33, 50, 25, 35, 39, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6144, 21, 69, 69, 54, 42, 50, 42, 31, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6144, 21, 65, 65, 35, 60, 54, 29, 37, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6144, 21, 80, 80, 41, 47, 42, 49, 33, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6144, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6144, 21, 65, 65, 39, 31, 44, 31, 52, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6145, 27, 98, 98, 49, 74, 47, 84, 49, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6145, 27, 81, 81, 49, 47, 84, 66, 74, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6146, 24, 73, 73, 44, 42, 66, 59, 76, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6146, 24, 73, 73, 76, 42, 59, 66, 44, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6146, 24, 105, 105, 44, 42, 66, 59, 44, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6147, 25, 111, 111, 56, 34, 34, 56, 16, 584); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6148, 28, 59, 59, 23, 26, 20, 45, 59, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6149, 25, 84, 84, 76, 51, 34, 61, 56, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6150, 35, 96, 96, 45, 77, 73, 91, 45, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6151, 54, 175, 175, 78, 127, 154, 148, 110, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6152, 27, 81, 81, 47, 52, 60, 55, 36, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6153, 22, 65, 65, 43, 32, 30, 32, 31, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6154, 15, 48, 48, 25, 25, 28, 31, 25, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6154, 15, 51, 51, 31, 22, 28, 22, 28, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6155, 25, 74, 74, 39, 39, 44, 49, 39, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6155, 25, 79, 79, 49, 34, 44, 34, 44, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6156, 39, 125, 125, 73, 73, 89, 97, 73, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6156, 39, 133, 133, 97, 65, 89, 65, 81, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6157, 43, 137, 137, 80, 80, 97, 106, 80, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6157, 43, 145, 145, 106, 72, 97, 72, 89, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6158, 49, 155, 155, 91, 91, 110, 120, 91, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6158, 49, 164, 164, 120, 81, 110, 81, 101, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6159, 24, 77, 77, 61, 42, 61, 42, 44, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6160, 24, 77, 77, 68, 42, 42, 42, 56, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6161, 28, 78, 78, 34, 43, 45, 76, 62, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6161, 29, 87, 87, 87, 73, 47, 56, 64, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6162, 13, 62, 62, 31, 20, 20, 31, 10, 584); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6162, 14, 41, 41, 31, 26, 21, 18, 24, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6163, 31, 94, 94, 71, 56, 47, 50, 67, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6166, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6166, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6166, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6166, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6166, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6166, 50, 128, 128, 103, 118, 33, 68, 33, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6167, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6167, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6167, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6167, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6168, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6168, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6168, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6168, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6168, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6168, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6169, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6169, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6169, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6169, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6169, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6169, 50, 152, 152, 123, 95, 113, 95, 69, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6170, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6170, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6170, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6170, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6170, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6170, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6171, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6171, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6171, 50, 142, 142, 101, 75, 101, 75, 104, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6171, 50, 153, 153, 112, 108, 78, 88, 59, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6171, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6171, 50, 142, 142, 89, 91, 104, 99, 73, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6172, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6172, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6172, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6172, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6172, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6172, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6173, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6173, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6173, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6173, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6173, 50, 146, 146, 113, 88, 73, 78, 105, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6173, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6174, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6174, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6174, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6174, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6174, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6174, 50, 128, 128, 103, 118, 33, 68, 33, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6175, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6175, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6175, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6175, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6175, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6176, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6176, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6176, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6176, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6176, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6176, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6177, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6177, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6177, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6177, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6177, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6177, 50, 152, 152, 123, 95, 113, 95, 69, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6178, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6178, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6178, 50, 142, 142, 101, 75, 101, 75, 104, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6178, 50, 153, 153, 112, 108, 78, 88, 59, 139); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6178, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6178, 50, 142, 142, 89, 91, 104, 99, 73, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6179, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6179, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6179, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6179, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6179, 50, 146, 146, 113, 88, 73, 78, 105, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6179, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6184, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6184, 35, 97, 97, 34, 77, 34, 77, 33, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6184, 37, 121, 121, 96, 66, 81, 66, 81, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6185, 38, 92, 92, 45, 41, 109, 71, 98, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6185, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6185, 40, 130, 130, 104, 71, 88, 71, 87, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6186, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6186, 16, 54, 54, 37, 31, 31, 29, 46, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6187, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6187, 37, 102, 102, 36, 81, 36, 81, 35, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6187, 39, 118, 118, 83, 68, 68, 65, 106, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6188, 41, 112, 112, 39, 90, 39, 90, 38, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6188, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6188, 45, 135, 135, 95, 78, 78, 74, 122, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6189, 18, 48, 48, 27, 24, 22, 25, 31, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6189, 20, 78, 78, 49, 39, 40, 36, 45, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6190, 41, 112, 112, 39, 90, 39, 90, 38, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6190, 41, 127, 127, 85, 77, 73, 81, 93, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6190, 46, 167, 167, 107, 83, 86, 77, 98, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6191, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6191, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6191, 40, 130, 130, 104, 71, 88, 71, 87, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6192, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6192, 42, 115, 115, 40, 92, 40, 92, 39, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6192, 44, 142, 142, 114, 78, 96, 78, 95, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6193, 15, 42, 42, 23, 20, 19, 22, 26, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6193, 17, 57, 57, 39, 32, 32, 31, 49, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6194, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6194, 38, 105, 105, 36, 84, 36, 84, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6194, 40, 121, 121, 85, 70, 70, 66, 109, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6195, 44, 120, 120, 41, 96, 41, 96, 41, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6195, 44, 135, 135, 91, 82, 78, 86, 100, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6195, 46, 137, 137, 97, 80, 80, 75, 124, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6196, 58, 166, 166, 129, 160, 117, 160, 64, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6196, 58, 175, 175, 118, 107, 101, 112, 130, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6196, 60, 176, 176, 125, 103, 103, 97, 161, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6197, 21, 55, 55, 31, 27, 25, 29, 35, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6197, 23, 88, 88, 56, 44, 45, 41, 51, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6198, 44, 120, 120, 41, 96, 41, 96, 41, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6198, 44, 135, 135, 91, 82, 78, 86, 100, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6198, 46, 167, 167, 107, 83, 86, 77, 98, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6199, 58, 166, 166, 129, 160, 117, 160, 64, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6199, 58, 175, 175, 118, 107, 101, 112, 130, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6199, 60, 215, 215, 138, 107, 111, 99, 127, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6219, 13, 40, 40, 23, 22, 26, 22, 23, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6220, 55, 172, 172, 115, 110, 129, 112, 118, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6222, 43, 120, 120, 102, 89, 72, 89, 46, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6223, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6223, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6223, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6223, 50, 138, 138, 85, 73, 85, 83, 63, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6223, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6223, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6225, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6225, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6226, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6226, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6227, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6227, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6228, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6228, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6229, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6229, 52, 179, 179, 106, 132, 65, 96, 127, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6230, 57, 173, 173, 139, 133, 71, 105, 150, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6230, 57, 195, 195, 116, 145, 71, 105, 139, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6231, 45, 144, 144, 113, 90, 97, 88, 97, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6231, 45, 152, 152, 104, 99, 88, 97, 89, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6232, 25, 71, 71, 31, 39, 41, 69, 56, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6233, 25, 76, 76, 61, 64, 44, 39, 39, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6233, 25, 69, 69, 39, 74, 54, 54, 29, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6234, 25, 64, 64, 41, 63, 34, 53, 37, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6234, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6235, 25, 74, 74, 59, 84, 39, 39, 34, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6235, 25, 79, 79, 64, 71, 29, 46, 29, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6236, 25, 79, 79, 24, 39, 24, 39, 34, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6236, 25, 86, 86, 49, 35, 49, 35, 38, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6237, 25, 81, 81, 64, 69, 36, 41, 46, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6237, 25, 76, 76, 54, 84, 34, 49, 49, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6238, 25, 79, 79, 56, 84, 56, 49, 24, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6238, 25, 73, 73, 69, 89, 36, 38, 31, 305); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6239, 14, 45, 45, 22, 21, 19, 21, 18, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6239, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6239, 16, 50, 50, 25, 23, 21, 23, 20, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6239, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6239, 15, 48, 48, 23, 22, 20, 22, 19, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6240, 23, 64, 64, 52, 38, 43, 43, 54, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6243, 48, 137, 137, 123, 79, 79, 89, 113, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6243, 48, 123, 123, 113, 113, 55, 127, 89, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6243, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6244, 54, 153, 153, 137, 89, 89, 100, 127, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6244, 54, 137, 137, 127, 127, 62, 143, 100, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6244, 54, 180, 180, 164, 110, 94, 116, 83, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6245, 38, 99, 99, 109, 58, 45, 102, 84, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6245, 38, 99, 99, 98, 78, 45, 102, 76, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6246, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6247, 100, 326, 326, 225, 215, 191, 211, 193, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6248, 37, 89, 89, 77, 44, 44, 51, 70, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6248, 37, 108, 108, 96, 62, 62, 70, 88, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6249, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6249, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6250, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6250, 55, 156, 156, 140, 90, 90, 101, 129, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6251, 38, 99, 99, 109, 58, 45, 102, 84, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6251, 38, 99, 99, 98, 78, 45, 102, 76, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6252, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6252, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6253, 55, 139, 139, 156, 83, 63, 145, 120, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6253, 55, 139, 139, 140, 111, 63, 145, 108, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6254, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6254, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6255, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6255, 39, 113, 113, 100, 65, 65, 73, 93, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6256, 51, 160, 160, 125, 94, 74, 84, 69, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6256, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6257, 56, 186, 186, 170, 114, 97, 120, 86, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6257, 56, 158, 158, 142, 92, 92, 103, 131, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6258, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6258, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6259, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6259, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6260, 29, 78, 78, 76, 61, 35, 79, 59, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6260, 29, 78, 78, 85, 46, 35, 79, 65, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6261, 33, 87, 87, 86, 69, 39, 89, 67, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6261, 33, 87, 87, 96, 51, 39, 89, 74, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6262, 51, 130, 130, 130, 103, 59, 135, 100, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6262, 51, 130, 130, 145, 77, 59, 135, 112, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6263, 56, 142, 142, 142, 113, 64, 148, 110, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6263, 56, 142, 142, 159, 84, 64, 148, 122, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6264, 5, 23, 23, 14, 11, 10, 10, 10, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6264, 5, 19, 19, 10, 9, 16, 10, 14, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6265, 40, 112, 112, 67, 67, 87, 87, 87, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6265, 40, 147, 147, 92, 69, 92, 77, 73, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6265, 40, 140, 140, 71, 107, 67, 123, 71, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6265, 40, 216, 216, 45, 65, 45, 65, 45, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6266, 28, 73, 73, 48, 31, 59, 43, 51, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6266, 28, 78, 78, 45, 62, 51, 62, 34, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6266, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6267, 58, 158, 158, 101, 107, 124, 112, 72, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6267, 59, 178, 178, 114, 91, 150, 126, 61, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6267, 60, 181, 181, 122, 128, 158, 134, 86, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6268, 30, 89, 89, 48, 84, 75, 39, 51, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6268, 30, 110, 110, 57, 57, 54, 54, 42, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6269, 43, 111, 111, 93, 54, 93, 54, 50, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6269, 43, 120, 120, 72, 54, 76, 59, 50, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6269, 43, 107, 107, 72, 46, 89, 63, 76, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6269, 44, 122, 122, 100, 144, 64, 64, 56, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6270, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6271, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6272, 17, 51, 51, 36, 28, 24, 24, 38, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6273, 17, 50, 50, 40, 29, 33, 33, 41, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6274, 15, 42, 42, 26, 19, 19, 19, 28, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6274, 15, 46, 46, 32, 25, 22, 22, 34, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6275, 28, 78, 78, 57, 43, 37, 37, 59, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6275, 30, 83, 83, 60, 45, 39, 39, 63, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6276, 37, 101, 101, 73, 55, 47, 47, 77, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6276, 39, 105, 105, 77, 58, 50, 50, 81, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6277, 58, 187, 187, 165, 107, 83, 95, 141, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6277, 58, 187, 187, 165, 107, 83, 95, 141, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6278, 17, 45, 45, 29, 24, 28, 28, 41, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6279, 31, 73, 73, 50, 40, 47, 47, 71, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6280, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6281, 60, 163, 163, 134, 92, 134, 122, 158, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6282, 17, 48, 48, 33, 22, 24, 22, 26, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6283, 15, 42, 42, 26, 19, 19, 19, 28, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6283, 15, 45, 45, 35, 26, 29, 29, 37, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6284, 15, 43, 43, 29, 20, 22, 20, 23, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6284, 15, 43, 43, 29, 20, 22, 20, 23, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6285, 17, 46, 46, 26, 23, 21, 24, 29, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6286, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6287, 21, 59, 59, 48, 35, 39, 39, 50, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6288, 18, 48, 48, 31, 22, 22, 22, 33, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6288, 20, 59, 59, 42, 32, 28, 28, 44, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6289, 32, 88, 88, 64, 48, 42, 42, 67, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6289, 34, 114, 114, 98, 64, 51, 58, 85, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6290, 43, 141, 141, 123, 80, 63, 72, 106, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6290, 43, 141, 141, 123, 80, 63, 72, 106, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6291, 58, 158, 158, 153, 107, 95, 95, 141, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6291, 59, 190, 190, 167, 108, 85, 97, 144, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6292, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6293, 35, 82, 82, 56, 45, 52, 52, 80, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6294, 45, 125, 125, 102, 70, 102, 93, 120, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6295, 58, 158, 158, 83, 72, 124, 112, 136, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6295, 58, 158, 158, 72, 83, 112, 124, 136, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6295, 58, 158, 158, 130, 89, 130, 118, 153, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6296, 21, 61, 61, 44, 33, 29, 29, 46, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6297, 17, 46, 46, 29, 21, 21, 21, 31, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6297, 18, 48, 48, 31, 22, 22, 22, 33, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6297, 19, 51, 51, 32, 23, 23, 23, 34, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6298, 20, 57, 57, 46, 34, 38, 38, 48, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6298, 18, 50, 50, 34, 23, 25, 23, 27, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6299, 21, 57, 57, 39, 26, 29, 26, 31, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6300, 22, 57, 57, 37, 56, 30, 47, 33, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6300, 22, 57, 57, 37, 56, 30, 47, 33, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6301, 22, 67, 67, 32, 34, 32, 34, 37, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6301, 22, 68, 68, 51, 34, 51, 34, 59, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6302, 37, 119, 119, 103, 77, 66, 59, 87, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6303, 25, 75, 75, 52, 45, 39, 35, 46, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6304, 37, 115, 115, 92, 64, 77, 64, 104, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6305, 25, 64, 64, 41, 63, 34, 53, 37, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6306, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6306, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6308, 25, 79, 79, 59, 36, 21, 36, 39, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6309, 21, 59, 59, 34, 32, 34, 32, 39, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6310, 21, 59, 59, 34, 32, 34, 32, 39, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6311, 21, 59, 59, 34, 32, 34, 32, 39, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6312, 25, 69, 69, 51, 49, 31, 49, 38, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6314, 24, 76, 76, 56, 35, 20, 35, 37, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6315, 32, 98, 98, 74, 45, 26, 45, 48, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6320, 15, 45, 45, 32, 32, 29, 29, 25, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6321, 36, 109, 109, 82, 68, 61, 61, 68, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6322, 26, 71, 71, 58, 35, 58, 35, 32, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6322, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6323, 34, 103, 103, 98, 44, 81, 44, 81, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6324, 41, 123, 123, 118, 52, 97, 52, 97, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6325, 43, 128, 128, 123, 54, 102, 54, 102, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6325, 43, 115, 115, 102, 67, 50, 84, 119, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6326, 49, 145, 145, 140, 61, 115, 61, 115, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6326, 49, 145, 145, 140, 86, 66, 105, 145, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6327, 64, 109, 109, 98, 60, 72, 85, 149, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6327, 64, 141, 141, 130, 92, 92, 117, 181, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6328, 25, 74, 74, 56, 34, 29, 36, 48, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6329, 61, 105, 105, 94, 57, 69, 81, 142, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6329, 61, 135, 135, 124, 87, 87, 112, 173, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6330, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6330, 27, 79, 79, 63, 44, 63, 57, 74, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6331, 47, 153, 153, 134, 87, 68, 78, 115, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6331, 47, 177, 177, 95, 90, 93, 88, 78, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6332, 47, 163, 163, 139, 96, 78, 115, 98, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6332, 47, 130, 130, 78, 92, 78, 92, 97, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6333, 36, 127, 127, 107, 74, 61, 89, 76, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6333, 36, 102, 102, 82, 57, 82, 75, 97, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6334, 50, 163, 163, 143, 93, 73, 83, 123, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6334, 50, 153, 153, 123, 89, 83, 89, 138, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6335, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6335, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6336, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6336, 25, 76, 76, 55, 42, 61, 56, 66, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6337, 47, 106, 106, 97, 68, 68, 87, 134, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6337, 47, 135, 135, 99, 75, 111, 101, 120, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6338, 52, 169, 169, 106, 117, 132, 122, 86, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6338, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6339, 35, 89, 89, 70, 59, 45, 38, 52, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6340, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6340, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6341, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6341, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6342, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6342, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6343, 46, 113, 113, 90, 76, 58, 49, 67, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6343, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6343, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6344, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6344, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6344, 49, 140, 140, 115, 120, 81, 71, 71, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6345, 34, 86, 86, 68, 58, 44, 37, 51, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6346, 37, 115, 115, 70, 84, 70, 96, 77, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6346, 37, 115, 115, 70, 84, 70, 96, 77, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6347, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6347, 41, 127, 127, 77, 93, 77, 105, 85, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6348, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6348, 44, 135, 135, 82, 100, 82, 113, 91, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6349, 46, 113, 113, 90, 76, 58, 49, 67, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6349, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6349, 46, 141, 141, 85, 104, 85, 118, 95, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6350, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6350, 49, 150, 150, 91, 110, 91, 125, 101, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6350, 49, 140, 140, 115, 120, 81, 71, 71, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6351, 46, 125, 125, 85, 62, 58, 62, 60, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6351, 46, 125, 125, 85, 62, 58, 62, 60, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6351, 49, 169, 169, 145, 100, 81, 120, 102, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6352, 60, 205, 205, 176, 121, 98, 146, 123, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6353, 57, 144, 144, 105, 82, 82, 82, 105, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6353, 57, 157, 157, 121, 99, 105, 105, 105, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6353, 57, 150, 150, 99, 133, 133, 76, 122, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6354, 53, 125, 125, 91, 71, 77, 77, 77, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6354, 55, 151, 151, 117, 96, 101, 101, 101, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6355, 61, 167, 167, 129, 106, 112, 112, 112, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6355, 61, 167, 167, 129, 106, 112, 112, 112, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6356, 53, 129, 129, 66, 87, 66, 103, 77, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6356, 57, 173, 173, 105, 128, 105, 145, 116, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6357, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6357, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6358, 56, 162, 162, 125, 97, 81, 86, 117, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6358, 56, 192, 192, 165, 113, 92, 137, 115, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6359, 58, 199, 199, 170, 117, 95, 141, 119, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6360, 57, 138, 138, 111, 93, 71, 59, 82, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6360, 59, 166, 166, 138, 144, 97, 85, 85, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6361, 49, 143, 143, 110, 86, 71, 76, 103, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6362, 39, 108, 108, 73, 54, 50, 54, 51, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6363, 43, 126, 126, 97, 76, 63, 67, 91, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6364, 63, 181, 181, 141, 109, 90, 96, 131, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6365, 56, 147, 147, 97, 131, 131, 75, 120, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6365, 56, 192, 192, 165, 113, 92, 137, 115, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6366, 43, 118, 118, 80, 59, 54, 59, 56, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6366, 45, 111, 111, 57, 75, 57, 88, 66, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6366, 47, 137, 137, 106, 83, 68, 73, 99, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6367, 57, 153, 153, 105, 76, 71, 76, 73, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6367, 57, 165, 165, 128, 99, 82, 88, 119, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6367, 57, 157, 157, 121, 99, 105, 105, 105, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6368, 60, 200, 200, 187, 140, 146, 146, 122, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6369, 53, 154, 154, 119, 92, 77, 82, 111, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6369, 55, 167, 167, 101, 123, 101, 140, 112, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6370, 59, 178, 178, 108, 132, 108, 150, 120, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6370, 61, 224, 224, 185, 142, 124, 130, 151, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6371, 56, 170, 170, 103, 125, 103, 142, 114, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6371, 56, 147, 147, 97, 131, 131, 75, 120, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6372, 60, 181, 181, 110, 134, 110, 152, 122, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6372, 60, 181, 181, 140, 140, 140, 140, 128, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6373, 52, 123, 123, 90, 70, 75, 75, 75, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6373, 56, 162, 162, 125, 97, 81, 86, 117, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6374, 55, 134, 134, 134, 74, 74, 74, 35, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6374, 57, 144, 144, 105, 82, 82, 82, 105, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6375, 57, 138, 138, 111, 93, 71, 59, 82, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6375, 57, 161, 161, 133, 139, 93, 82, 82, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6375, 57, 144, 144, 105, 82, 82, 82, 105, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6376, 45, 138, 138, 84, 102, 84, 115, 93, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6376, 47, 137, 137, 106, 83, 68, 73, 99, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6377, 34, 95, 95, 64, 47, 44, 47, 45, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6378, 46, 135, 135, 104, 81, 67, 72, 97, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6379, 61, 172, 172, 142, 148, 100, 87, 87, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6379, 61, 175, 175, 136, 106, 87, 94, 127, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6379, 61, 167, 167, 129, 106, 112, 112, 112, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6380, 55, 129, 129, 95, 74, 79, 79, 79, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6380, 57, 173, 173, 105, 128, 105, 145, 116, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6381, 39, 113, 113, 93, 97, 65, 58, 58, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6381, 39, 121, 121, 93, 93, 93, 93, 85, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6382, 47, 144, 144, 87, 106, 87, 120, 97, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6383, 47, 144, 144, 111, 111, 111, 111, 101, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6384, 47, 149, 149, 115, 97, 97, 97, 115, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6385, 50, 163, 163, 93, 103, 120, 103, 146, 589); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6385, 50, 155, 155, 143, 113, 83, 113, 71, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6385, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6386, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6387, 66, 225, 225, 183, 134, 114, 121, 150, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6388, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6389, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6390, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6391, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6392, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6393, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6394, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6395, 55, 150, 150, 115, 74, 74, 74, 106, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6396, 55, 156, 156, 107, 123, 131, 160, 73, 518); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6396, 55, 167, 167, 101, 123, 101, 140, 112, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6396, 55, 178, 178, 101, 112, 131, 112, 160, 589); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6397, 45, 161, 161, 66, 93, 75, 93, 66, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6397, 45, 152, 152, 104, 99, 88, 97, 89, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6397, 45, 164, 164, 103, 77, 103, 86, 82, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6398, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6398, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6398, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6399, 55, 179, 179, 99, 104, 144, 97, 141, 590); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6399, 55, 170, 170, 113, 102, 106, 100, 163, 321); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6399, 55, 150, 150, 85, 123, 184, 123, 112, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6400, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6400, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6400, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6401, 45, 143, 143, 129, 138, 70, 79, 61, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6401, 45, 134, 134, 120, 183, 75, 75, 66, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6401, 45, 152, 152, 106, 106, 84, 102, 84, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6402, 45, 138, 138, 93, 106, 102, 111, 66, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6402, 45, 152, 152, 111, 84, 120, 156, 93, 327); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6402, 45, 141, 141, 79, 82, 122, 159, 88, 591); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6403, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6403, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6403, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6404, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6404, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6404, 45, 163, 163, 75, 98, 75, 98, 66, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6405, 50, 163, 163, 143, 93, 73, 83, 123, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6405, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6405, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6406, 45, 125, 125, 84, 79, 133, 115, 102, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6406, 45, 134, 134, 84, 124, 138, 102, 75, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6406, 45, 120, 120, 66, 61, 142, 106, 129, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6407, 55, 162, 162, 105, 121, 156, 122, 89, 592); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6407, 55, 164, 164, 140, 151, 84, 119, 99, 593); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6407, 55, 150, 150, 107, 118, 134, 118, 151, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6408, 45, 125, 125, 111, 101, 70, 83, 122, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6408, 45, 125, 125, 102, 70, 102, 93, 120, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6408, 45, 138, 138, 70, 84, 70, 106, 120, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6409, 55, 161, 161, 167, 134, 85, 112, 96, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6409, 55, 150, 150, 85, 184, 107, 189, 68, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6410, 25, 77, 77, 43, 42, 54, 47, 64, 594); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6410, 25, 71, 71, 51, 39, 34, 34, 54, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6411, 25, 76, 76, 59, 39, 56, 36, 41, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6411, 25, 86, 86, 66, 56, 34, 39, 34, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6412, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6412, 25, 77, 77, 72, 49, 34, 39, 47, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6413, 25, 80, 80, 71, 44, 44, 44, 59, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6413, 25, 79, 79, 56, 49, 46, 49, 39, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6414, 25, 81, 81, 64, 50, 59, 50, 37, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6414, 25, 96, 96, 79, 74, 36, 36, 34, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6415, 25, 66, 66, 39, 36, 71, 41, 61, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6415, 25, 69, 69, 46, 46, 54, 51, 43, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6416, 25, 74, 74, 56, 46, 49, 49, 49, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6416, 25, 74, 74, 55, 36, 36, 36, 51, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6417, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6417, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6417, 18, 52, 52, 33, 45, 54, 36, 36, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6418, 21, 49, 49, 27, 41, 52, 35, 31, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6419, 21, 55, 55, 25, 33, 35, 35, 54, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6419, 21, 49, 49, 27, 41, 52, 35, 31, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6420, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6420, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6420, 18, 52, 52, 33, 45, 54, 36, 36, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6421, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6421, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6421, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6422, 21, 49, 49, 27, 41, 52, 35, 31, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6423, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6424, 50, 168, 168, 115, 110, 98, 108, 99, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6425, 16, 44, 44, 20, 26, 28, 28, 42, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6425, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6425, 18, 57, 57, 33, 36, 42, 38, 25, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6425, 15, 42, 42, 34, 20, 20, 23, 31, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6425, 16, 49, 49, 52, 47, 26, 26, 34, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6425, 18, 56, 56, 43, 31, 43, 40, 51, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6426, 15, 48, 48, 25, 31, 34, 34, 52, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6426, 15, 61, 61, 41, 32, 29, 40, 25, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6426, 20, 63, 63, 36, 40, 46, 42, 28, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6426, 18, 55, 55, 34, 32, 40, 34, 40, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6426, 17, 77, 77, 40, 38, 40, 43, 31, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6426, 17, 53, 53, 41, 29, 41, 38, 48, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6427, 22, 57, 57, 32, 28, 26, 30, 37, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6427, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6427, 24, 69, 69, 52, 42, 37, 47, 60, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6428, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6428, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6428, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6428, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6428, 32, 95, 95, 74, 93, 70, 61, 54, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6428, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6429, 23, 68, 68, 52, 45, 43, 49, 50, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6429, 23, 68, 68, 43, 45, 52, 47, 31, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6429, 25, 74, 74, 56, 35, 56, 35, 59, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6430, 32, 91, 91, 70, 60, 58, 67, 67, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6430, 32, 101, 101, 67, 70, 86, 74, 48, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6430, 32, 91, 91, 70, 43, 70, 43, 74, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6431, 36, 112, 112, 75, 68, 64, 71, 82, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6432, 33, 84, 84, 56, 36, 69, 49, 59, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6432, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6432, 35, 110, 110, 80, 52, 94, 73, 84, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6433, 53, 193, 193, 135, 103, 92, 130, 77, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6433, 54, 148, 148, 116, 98, 94, 109, 110, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6433, 55, 167, 167, 112, 118, 145, 123, 79, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6434, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6434, 54, 153, 153, 121, 154, 116, 100, 89, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6434, 55, 167, 167, 123, 79, 145, 112, 129, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6435, 8, 27, 27, 15, 13, 12, 14, 16, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6435, 12, 35, 35, 24, 32, 23, 20, 17, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6436, 28, 90, 90, 59, 54, 51, 57, 65, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6436, 33, 97, 97, 76, 96, 72, 63, 56, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6437, 22, 57, 57, 32, 28, 26, 30, 37, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6437, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6437, 24, 69, 69, 52, 42, 37, 47, 60, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6438, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6438, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6438, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6438, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6438, 32, 95, 95, 74, 93, 70, 61, 54, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6438, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6439, 25, 74, 74, 56, 48, 46, 53, 54, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6439, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6439, 27, 79, 79, 60, 37, 60, 37, 63, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6440, 32, 91, 91, 70, 60, 58, 67, 67, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6440, 32, 101, 101, 67, 70, 86, 74, 48, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6440, 32, 91, 91, 70, 43, 70, 43, 74, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6441, 35, 89, 89, 59, 38, 73, 52, 63, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6441, 35, 85, 85, 63, 84, 59, 49, 42, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6441, 38, 118, 118, 87, 56, 102, 79, 90, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6442, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6442, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6442, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6442, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6442, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6442, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6443, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6443, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6443, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6443, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6443, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6443, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6444, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6444, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6444, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6444, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6444, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6444, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6445, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6445, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6445, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6445, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6445, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6445, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6450, 22, 53, 53, 30, 37, 30, 37, 39, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6450, 22, 71, 71, 39, 26, 21, 26, 23, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6451, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6451, 30, 94, 94, 51, 33, 27, 33, 30, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6452, 33, 94, 94, 56, 66, 56, 66, 69, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6452, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6453, 36, 102, 102, 61, 71, 61, 71, 75, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6453, 36, 162, 162, 104, 61, 46, 61, 53, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6454, 39, 109, 109, 65, 77, 65, 77, 81, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6454, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6455, 28, 128, 128, 82, 48, 37, 48, 43, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6456, 31, 141, 141, 90, 53, 40, 53, 47, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6457, 34, 154, 154, 98, 58, 44, 58, 51, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6458, 37, 166, 166, 107, 62, 47, 62, 55, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6459, 40, 179, 179, 115, 67, 51, 67, 59, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6460, 33, 101, 101, 66, 56, 86, 56, 86, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6460, 33, 114, 114, 102, 69, 59, 72, 53, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6461, 33, 104, 104, 41, 41, 53, 53, 61, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6461, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6462, 30, 94, 94, 51, 33, 27, 33, 30, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6462, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6463, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6463, 33, 94, 94, 56, 66, 56, 66, 69, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6464, 33, 127, 127, 68, 65, 67, 63, 56, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6464, 33, 74, 74, 43, 53, 43, 53, 56, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6465, 33, 94, 94, 72, 56, 49, 49, 99, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6465, 33, 94, 94, 102, 69, 56, 56, 63, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6466, 21, 51, 51, 29, 35, 29, 35, 37, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6466, 21, 68, 68, 37, 25, 20, 25, 23, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6467, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6467, 30, 94, 94, 51, 33, 27, 33, 30, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6468, 33, 94, 94, 56, 66, 56, 66, 69, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6468, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6469, 36, 102, 102, 61, 71, 61, 71, 75, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6469, 36, 162, 162, 104, 61, 46, 61, 53, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6470, 39, 109, 109, 65, 77, 65, 77, 81, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6470, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6471, 27, 124, 124, 79, 47, 36, 47, 41, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6472, 33, 149, 149, 96, 56, 43, 56, 49, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6473, 36, 162, 162, 104, 61, 46, 61, 53, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6474, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6475, 42, 188, 188, 120, 70, 53, 70, 62, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6476, 45, 116, 116, 106, 106, 52, 120, 84, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6476, 45, 179, 179, 111, 97, 48, 97, 61, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6477, 24, 57, 57, 32, 40, 32, 40, 42, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6477, 26, 120, 120, 76, 45, 35, 45, 40, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6478, 33, 74, 74, 43, 53, 43, 53, 56, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6478, 35, 158, 158, 101, 59, 45, 59, 52, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6479, 40, 112, 112, 67, 79, 67, 79, 83, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6479, 42, 188, 188, 120, 70, 53, 70, 62, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6480, 44, 105, 105, 82, 56, 51, 56, 73, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6480, 44, 122, 122, 73, 86, 73, 86, 91, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6480, 44, 196, 196, 126, 73, 56, 73, 64, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6481, 54, 148, 148, 89, 105, 89, 105, 110, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6481, 55, 243, 243, 156, 90, 68, 90, 79, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6481, 56, 164, 164, 148, 103, 153, 103, 125, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6482, 47, 144, 144, 139, 92, 50, 92, 101, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6483, 30, 137, 137, 87, 51, 39, 51, 45, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6484, 31, 141, 141, 90, 53, 40, 53, 47, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6485, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6486, 45, 147, 147, 115, 97, 57, 66, 57, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6486, 45, 200, 200, 129, 75, 57, 75, 66, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6487, 54, 167, 167, 123, 105, 104, 92, 151, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6487, 55, 243, 243, 156, 90, 68, 90, 79, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6487, 56, 203, 203, 181, 131, 86, 97, 75, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6488, 37, 102, 102, 77, 85, 77, 82, 73, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6488, 39, 102, 102, 85, 85, 61, 61, 58, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6489, 56, 198, 198, 81, 114, 92, 114, 81, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6489, 56, 173, 173, 97, 101, 150, 197, 109, 591); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6490, 33, 90, 90, 46, 47, 66, 81, 51, 595); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6490, 35, 115, 115, 73, 77, 77, 70, 68, 596); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6491, 49, 174, 174, 71, 101, 81, 101, 71, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6491, 49, 175, 175, 93, 93, 119, 109, 51, 597); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6492, 37, 109, 109, 61, 60, 78, 67, 93, 594); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6492, 39, 141, 141, 75, 75, 96, 88, 41, 597); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6493, 52, 140, 140, 106, 118, 106, 114, 101, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6493, 52, 184, 184, 75, 106, 86, 106, 75, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6494, 19, 58, 58, 21, 25, 38, 42, 34, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6494, 19, 54, 54, 44, 44, 32, 32, 30, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6495, 22, 56, 56, 28, 28, 41, 37, 34, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6496, 17, 72, 72, 26, 17, 26, 19, 17, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6497, 35, 138, 138, 49, 31, 49, 35, 31, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6498, 40, 176, 176, 75, 55, 87, 59, 55, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6499, 42, 184, 184, 78, 57, 91, 62, 57, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6499, 42, 125, 125, 57, 60, 70, 74, 49, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6500, 48, 209, 209, 89, 65, 103, 70, 65, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6500, 48, 166, 166, 89, 92, 113, 108, 79, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6501, 21, 59, 59, 31, 31, 27, 27, 33, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6501, 23, 94, 94, 33, 22, 33, 24, 22, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6502, 75, 217, 217, 197, 137, 204, 137, 167, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6502, 75, 239, 239, 107, 174, 212, 204, 152, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6502, 75, 217, 217, 197, 137, 204, 137, 167, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6503, 15, 49, 49, 32, 41, 20, 29, 35, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6503, 25, 89, 89, 39, 31, 44, 36, 49, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6506, 6, 22, 22, 14, 18, 14, 12, 11, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6506, 6, 22, 22, 14, 18, 14, 12, 11, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6507, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6507, 32, 79, 79, 42, 42, 61, 42, 29, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6508, 17, 52, 52, 32, 30, 38, 33, 38, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6509, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6509, 28, 84, 84, 87, 48, 68, 76, 51, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6509, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6510, 15, 42, 42, 29, 38, 28, 23, 20, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6510, 16, 49, 49, 33, 25, 33, 26, 29, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6510, 15, 42, 42, 29, 38, 28, 23, 20, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6511, 29, 87, 87, 70, 48, 73, 64, 69, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6511, 32, 95, 95, 74, 93, 70, 61, 54, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6511, 29, 87, 87, 70, 48, 73, 64, 69, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6512, 9, 29, 29, 15, 15, 17, 19, 19, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6513, 11, 39, 39, 29, 21, 30, 27, 29, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6513, 13, 44, 44, 34, 24, 35, 31, 33, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6514, 6, 22, 22, 14, 18, 14, 12, 11, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6514, 6, 22, 22, 14, 18, 14, 12, 11, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6515, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6515, 32, 79, 79, 42, 42, 61, 42, 29, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6516, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6516, 28, 84, 84, 87, 48, 68, 76, 51, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6516, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6517, 29, 87, 87, 70, 48, 73, 64, 69, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6517, 32, 95, 95, 74, 93, 70, 61, 54, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6517, 29, 87, 87, 70, 48, 73, 64, 69, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6518, 9, 29, 29, 15, 15, 17, 19, 19, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6519, 11, 39, 39, 29, 21, 30, 27, 29, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6519, 13, 44, 44, 34, 24, 35, 31, 33, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6520, 6, 22, 22, 14, 18, 14, 12, 11, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6520, 6, 22, 22, 14, 18, 14, 12, 11, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6521, 42, 100, 100, 74, 99, 70, 57, 49, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6521, 45, 116, 116, 66, 129, 93, 93, 48, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6522, 36, 87, 87, 64, 86, 61, 50, 43, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6522, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6522, 36, 87, 87, 64, 86, 61, 50, 43, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6523, 16, 44, 44, 31, 41, 29, 25, 21, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6523, 16, 44, 44, 31, 41, 29, 25, 21, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6523, 17, 51, 51, 34, 26, 34, 28, 31, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6524, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6524, 47, 139, 139, 115, 87, 120, 92, 59, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6524, 40, 116, 116, 91, 115, 87, 75, 67, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6525, 9, 29, 29, 15, 15, 17, 19, 19, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6526, 18, 55, 55, 34, 32, 40, 34, 40, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6527, 11, 39, 39, 29, 21, 30, 27, 29, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6527, 16, 52, 52, 41, 29, 42, 37, 40, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6528, 25, 76, 76, 61, 42, 64, 56, 60, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6528, 32, 95, 95, 77, 53, 80, 70, 76, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6529, 34, 100, 100, 81, 56, 85, 75, 80, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6529, 37, 108, 108, 88, 60, 92, 81, 87, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6530, 26, 68, 68, 53, 33, 50, 42, 57, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6530, 49, 140, 140, 115, 78, 120, 105, 113, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6530, 58, 175, 175, 136, 103, 170, 136, 122, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6531, 51, 145, 145, 125, 94, 104, 104, 130, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6531, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6531, 53, 135, 135, 77, 124, 66, 77, 61, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6531, 51, 153, 153, 100, 99, 105, 125, 125, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6531, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6531, 53, 161, 161, 108, 114, 140, 119, 77, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6532, 55, 156, 156, 129, 87, 134, 118, 127, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6532, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6532, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6532, 55, 165, 165, 108, 107, 113, 134, 134, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6532, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6532, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6533, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6533, 51, 140, 140, 104, 135, 74, 104, 69, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6533, 54, 148, 148, 143, 100, 89, 89, 132, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6533, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6533, 51, 176, 176, 120, 110, 150, 89, 79, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6533, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6534, 53, 164, 164, 113, 106, 139, 114, 130, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6534, 53, 164, 164, 113, 106, 139, 114, 130, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6534, 51, 176, 176, 99, 104, 125, 135, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6534, 51, 339, 339, 33, 33, 99, 161, 79, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6534, 51, 171, 171, 117, 112, 99, 110, 100, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6534, 51, 176, 176, 120, 110, 150, 89, 79, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6535, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6536, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6536, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6536, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6537, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6537, 17, 43, 43, 26, 29, 34, 29, 40, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6537, 17, 43, 43, 33, 45, 26, 19, 24, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6538, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6538, 22, 57, 57, 34, 30, 30, 30, 52, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6538, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6539, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6539, 24, 64, 64, 45, 42, 30, 37, 43, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6540, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6541, 21, 55, 55, 33, 29, 29, 29, 50, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6541, 21, 51, 51, 39, 54, 31, 23, 29, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6541, 21, 57, 57, 40, 37, 27, 33, 39, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6541, 21, 51, 51, 29, 41, 41, 23, 37, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6542, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6542, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6543, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6543, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6543, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6543, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6543, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6543, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6544, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6544, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6544, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6544, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6545, 31, 70, 70, 56, 78, 44, 31, 40, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6545, 31, 83, 83, 75, 127, 68, 44, 59, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6546, 33, 107, 107, 77, 59, 59, 69, 61, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6546, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6547, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6548, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6549, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6549, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6549, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6550, 18, 57, 57, 45, 38, 31, 31, 42, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6551, 23, 71, 71, 56, 47, 38, 38, 52, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6552, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6552, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6552, 32, 95, 95, 77, 64, 51, 51, 70, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6553, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6553, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6553, 37, 108, 108, 88, 73, 59, 59, 81, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6554, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6554, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6555, 8, 27, 27, 15, 14, 14, 14, 22, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6555, 8, 27, 27, 15, 14, 14, 14, 22, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6556, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6556, 29, 92, 92, 76, 58, 76, 58, 41, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6556, 29, 78, 78, 70, 119, 64, 41, 56, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6556, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6557, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6557, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6557, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6557, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6558, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6558, 31, 92, 92, 56, 56, 47, 47, 71, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6558, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6559, 32, 75, 75, 58, 38, 58, 38, 58, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6559, 32, 75, 75, 58, 38, 58, 38, 58, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6560, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6560, 10, 42, 42, 33, 24, 20, 28, 24, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6560, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6560, 15, 58, 58, 47, 34, 28, 40, 34, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6561, 10, 32, 32, 22, 20, 15, 18, 21, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6562, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6563, 17, 55, 55, 43, 36, 29, 29, 40, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6563, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6564, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6564, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6565, 35, 103, 103, 84, 70, 56, 56, 77, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6565, 39, 125, 125, 90, 69, 69, 81, 72, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6566, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6566, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6566, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6566, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6567, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6567, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6567, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6568, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6568, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6568, 31, 92, 92, 75, 62, 50, 50, 68, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6568, 31, 101, 101, 59, 56, 65, 90, 78, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6569, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6569, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6569, 25, 84, 84, 60, 46, 46, 54, 48, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6570, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6570, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6570, 32, 104, 104, 75, 58, 58, 67, 60, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6571, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6571, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6571, 38, 88, 88, 68, 45, 68, 45, 68, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6572, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6573, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6574, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6574, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6574, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6575, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6575, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6576, 8, 27, 27, 15, 14, 14, 14, 22, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6576, 8, 27, 27, 15, 14, 14, 14, 22, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6577, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6577, 29, 92, 92, 76, 58, 76, 58, 41, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6577, 29, 78, 78, 70, 119, 64, 41, 56, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6577, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6578, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6578, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6578, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6578, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6579, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6579, 31, 92, 92, 56, 56, 47, 47, 71, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6579, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6580, 32, 75, 75, 58, 38, 58, 38, 58, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6580, 32, 75, 75, 58, 38, 58, 38, 58, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6581, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6581, 10, 42, 42, 33, 24, 20, 28, 24, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6581, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6581, 15, 58, 58, 47, 34, 28, 40, 34, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6582, 10, 32, 32, 22, 20, 15, 18, 21, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6583, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6584, 17, 55, 55, 43, 36, 29, 29, 40, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6584, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6585, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6585, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6586, 35, 103, 103, 84, 70, 56, 56, 77, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6586, 39, 125, 125, 90, 69, 69, 81, 72, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6587, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6587, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6587, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6587, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6588, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6588, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6588, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6589, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6589, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6589, 31, 92, 92, 75, 62, 50, 50, 68, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6589, 31, 101, 101, 59, 56, 65, 90, 78, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6590, 18, 57, 57, 45, 38, 31, 31, 42, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6591, 23, 71, 71, 56, 47, 38, 38, 52, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6592, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6592, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6592, 32, 95, 95, 77, 64, 51, 51, 70, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6593, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6593, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6593, 37, 108, 108, 88, 73, 59, 59, 81, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6594, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6594, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6594, 25, 84, 84, 60, 46, 46, 54, 48, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6595, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6595, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6595, 32, 104, 104, 75, 58, 58, 67, 60, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6596, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6596, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6596, 38, 88, 88, 68, 45, 68, 45, 68, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6597, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6597, 10, 31, 31, 16, 15, 18, 28, 22, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6597, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6598, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6598, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6599, 23, 59, 59, 31, 29, 36, 59, 45, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6599, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6599, 24, 105, 105, 47, 30, 47, 30, 42, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6599, 25, 64, 64, 34, 31, 39, 64, 49, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6600, 16, 46, 46, 32, 29, 21, 26, 30, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6600, 16, 46, 46, 32, 29, 21, 26, 30, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6600, 16, 46, 46, 32, 29, 21, 26, 30, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6600, 18, 52, 52, 28, 26, 28, 26, 33, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6601, 12, 35, 35, 18, 17, 21, 33, 26, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6601, 15, 69, 69, 31, 20, 31, 20, 28, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6601, 9, 29, 29, 15, 14, 17, 26, 20, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6601, 12, 35, 35, 18, 17, 21, 33, 26, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6602, 11, 29, 29, 11, 21, 12, 13, 26, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6602, 8, 27, 27, 14, 13, 15, 23, 19, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6602, 11, 29, 29, 11, 21, 12, 13, 26, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6603, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6603, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6603, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6604, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6604, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6604, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6604, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6605, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6605, 30, 98, 98, 57, 54, 63, 87, 75, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6605, 30, 77, 77, 69, 27, 54, 27, 54, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6605, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6606, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6606, 35, 113, 113, 66, 63, 73, 101, 87, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6606, 33, 101, 101, 96, 43, 79, 43, 79, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6606, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6607, 30, 62, 62, 21, 48, 24, 27, 63, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6607, 21, 55, 55, 29, 27, 33, 54, 41, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6607, 27, 57, 57, 22, 25, 20, 44, 57, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6607, 24, 64, 64, 56, 23, 44, 23, 44, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6608, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6608, 35, 113, 113, 66, 63, 73, 101, 87, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6608, 33, 84, 84, 76, 30, 59, 30, 59, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6609, 6, 20, 20, 8, 13, 8, 9, 16, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6609, 6, 20, 20, 8, 13, 8, 9, 16, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6609, 6, 20, 20, 8, 13, 8, 9, 16, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6610, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6610, 32, 79, 79, 42, 38, 48, 80, 61, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6610, 30, 128, 128, 57, 36, 57, 36, 51, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6610, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6611, 12, 35, 35, 18, 17, 21, 33, 26, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6612, 20, 57, 57, 31, 29, 30, 28, 36, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6613, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6613, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6613, 35, 124, 124, 105, 72, 59, 87, 74, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6613, 45, 89, 89, 30, 70, 34, 39, 93, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6614, 19, 43, 43, 15, 32, 17, 19, 42, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6614, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6614, 22, 81, 81, 67, 47, 39, 56, 48, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6614, 25, 91, 91, 76, 53, 44, 64, 54, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6614, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6614, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6615, 17, 48, 48, 41, 17, 33, 17, 33, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6616, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6616, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6616, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6616, 32, 104, 104, 61, 58, 67, 93, 80, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6617, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6617, 10, 31, 31, 16, 15, 18, 28, 22, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6617, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6618, 25, 64, 64, 34, 31, 39, 64, 49, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6618, 25, 66, 66, 59, 24, 46, 24, 46, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6619, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6619, 25, 84, 84, 49, 46, 54, 74, 64, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6620, 29, 61, 61, 21, 47, 24, 27, 61, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6620, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6620, 26, 55, 55, 22, 24, 19, 42, 55, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6620, 23, 61, 61, 54, 22, 43, 22, 43, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6621, 16, 38, 38, 13, 28, 15, 17, 36, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6621, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6621, 18, 52, 52, 28, 26, 28, 26, 33, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6622, 11, 33, 33, 17, 16, 19, 30, 24, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6622, 14, 65, 65, 29, 19, 29, 19, 26, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6622, 11, 33, 33, 17, 16, 19, 30, 24, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6622, 14, 65, 65, 29, 19, 29, 19, 26, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6623, 9, 25, 25, 10, 18, 10, 11, 22, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6624, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6624, 7, 25, 25, 13, 12, 14, 21, 17, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6624, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6625, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6625, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6625, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6626, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6626, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6626, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6626, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6627, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6627, 30, 77, 77, 69, 27, 54, 27, 54, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6627, 30, 98, 98, 57, 54, 63, 87, 75, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6627, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6628, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6628, 33, 101, 101, 96, 43, 79, 43, 79, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6628, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6628, 35, 113, 113, 66, 63, 73, 101, 87, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6629, 31, 80, 80, 71, 28, 56, 28, 56, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6629, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6630, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6630, 6, 20, 20, 8, 13, 8, 9, 16, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6630, 7, 22, 22, 8, 15, 9, 10, 18, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6631, 30, 128, 128, 57, 36, 57, 36, 51, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6631, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6631, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6632, 19, 54, 54, 30, 28, 29, 27, 34, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6633, 11, 33, 33, 17, 16, 19, 30, 24, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6634, 19, 54, 54, 30, 28, 29, 27, 34, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6635, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6635, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6635, 35, 124, 124, 105, 72, 59, 87, 74, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6636, 19, 43, 43, 15, 32, 17, 19, 42, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6636, 21, 78, 78, 65, 45, 37, 54, 46, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6636, 23, 84, 84, 70, 49, 40, 59, 50, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6636, 26, 94, 94, 79, 55, 45, 66, 56, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6636, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6636, 35, 124, 124, 105, 72, 59, 87, 74, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6637, 16, 44, 44, 23, 21, 26, 42, 33, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6638, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6638, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6638, 36, 152, 152, 68, 43, 68, 43, 61, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6639, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6639, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6640, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6640, 17, 43, 43, 26, 29, 34, 29, 40, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6640, 17, 43, 43, 33, 45, 26, 19, 24, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6641, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6641, 24, 64, 64, 45, 42, 30, 37, 43, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6642, 31, 70, 70, 56, 78, 44, 31, 40, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6642, 31, 83, 83, 75, 127, 68, 44, 59, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6643, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6643, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6643, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6644, 21, 55, 55, 33, 29, 29, 29, 50, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6644, 21, 51, 51, 39, 54, 31, 23, 29, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6644, 21, 57, 57, 40, 37, 27, 33, 39, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6644, 21, 51, 51, 29, 41, 41, 23, 37, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6645, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6645, 28, 76, 76, 68, 115, 62, 40, 54, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6645, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6645, 28, 78, 78, 51, 68, 68, 40, 62, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6646, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6647, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6648, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6648, 22, 57, 57, 34, 30, 30, 30, 52, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6648, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6649, 33, 107, 107, 77, 59, 59, 69, 61, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6649, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6650, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6650, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6650, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6650, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6651, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6651, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6651, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6651, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6651, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6652, 49, 140, 140, 115, 96, 76, 76, 105, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6652, 49, 140, 140, 115, 96, 76, 76, 105, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6653, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6653, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6653, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6653, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6653, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6653, 27, 57, 57, 20, 44, 22, 25, 57, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6654, 47, 92, 92, 31, 73, 36, 40, 97, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6654, 47, 92, 92, 31, 73, 36, 40, 97, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6654, 47, 92, 92, 31, 73, 36, 40, 97, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6654, 47, 92, 92, 31, 73, 36, 40, 97, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6654, 47, 92, 92, 31, 73, 36, 40, 97, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6654, 47, 92, 92, 31, 73, 36, 40, 97, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6655, 40, 80, 80, 27, 63, 31, 35, 83, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6655, 42, 146, 146, 125, 86, 70, 104, 88, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6656, 53, 182, 182, 156, 107, 87, 130, 109, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6656, 53, 182, 182, 156, 107, 87, 130, 109, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6657, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6657, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6657, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6657, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6657, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6657, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6658, 39, 78, 78, 26, 61, 30, 34, 81, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6658, 42, 108, 108, 61, 67, 61, 71, 75, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6658, 39, 78, 78, 30, 34, 26, 61, 81, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6659, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6659, 19, 54, 54, 30, 28, 29, 27, 34, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6660, 31, 83, 83, 45, 42, 44, 41, 53, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6660, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6661, 41, 143, 143, 122, 84, 68, 101, 86, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6661, 41, 143, 143, 122, 84, 68, 101, 86, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6661, 38, 88, 88, 68, 45, 68, 45, 68, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6662, 28, 59, 59, 20, 45, 23, 26, 59, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6662, 30, 80, 80, 45, 49, 45, 52, 55, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6662, 32, 114, 114, 96, 67, 54, 80, 68, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6663, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6663, 24, 66, 66, 36, 34, 35, 33, 42, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6663, 24, 88, 88, 73, 51, 42, 61, 52, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6664, 38, 76, 76, 26, 60, 30, 33, 79, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6664, 42, 146, 146, 125, 86, 70, 104, 88, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6664, 40, 92, 92, 71, 47, 71, 47, 71, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6664, 40, 103, 103, 58, 64, 58, 68, 72, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6665, 14, 41, 41, 28, 26, 19, 24, 27, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6666, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6667, 55, 172, 172, 126, 96, 96, 112, 99, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6668, 21, 78, 78, 65, 45, 37, 54, 46, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6669, 19, 43, 43, 15, 32, 17, 19, 42, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6669, 19, 49, 49, 36, 25, 36, 25, 36, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6669, 22, 81, 81, 67, 47, 39, 56, 48, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6670, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6670, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6670, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6670, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6670, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6671, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6671, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6672, 53, 182, 182, 156, 107, 87, 130, 109, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6672, 53, 182, 182, 156, 107, 87, 130, 109, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6673, 17, 50, 50, 27, 25, 26, 25, 31, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6673, 17, 50, 50, 27, 25, 26, 25, 31, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6673, 18, 52, 52, 28, 26, 28, 26, 33, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6673, 20, 67, 67, 31, 31, 35, 37, 25, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6674, 26, 71, 71, 39, 36, 38, 35, 45, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6675, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6675, 13, 39, 39, 27, 25, 18, 22, 26, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6675, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6676, 42, 83, 83, 28, 66, 32, 36, 87, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6676, 45, 156, 156, 133, 92, 75, 111, 94, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6677, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6677, 54, 186, 186, 159, 109, 89, 132, 111, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6678, 8, 24, 24, 9, 16, 10, 11, 20, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6678, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6678, 12, 31, 31, 11, 22, 12, 14, 28, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6678, 12, 31, 31, 11, 22, 12, 14, 28, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6678, 14, 34, 34, 12, 25, 14, 15, 32, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6678, 16, 38, 38, 13, 28, 15, 17, 36, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6679, 43, 85, 85, 29, 67, 33, 37, 89, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6679, 42, 108, 108, 61, 67, 61, 71, 75, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6679, 42, 83, 83, 32, 36, 28, 66, 87, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6680, 33, 87, 87, 48, 45, 47, 43, 56, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6680, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6681, 43, 150, 150, 127, 88, 72, 106, 90, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6681, 43, 150, 150, 127, 88, 72, 106, 90, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6681, 40, 92, 92, 71, 47, 71, 47, 71, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6682, 30, 80, 80, 45, 49, 45, 52, 55, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6682, 32, 84, 84, 47, 52, 47, 55, 58, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6682, 34, 89, 89, 50, 55, 50, 58, 62, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6683, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6683, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6683, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6684, 41, 82, 82, 27, 64, 32, 36, 85, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6684, 42, 146, 146, 125, 86, 70, 104, 88, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6684, 41, 94, 94, 73, 48, 73, 48, 73, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6684, 41, 105, 105, 59, 65, 59, 69, 73, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6685, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6686, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6687, 54, 169, 169, 123, 94, 94, 110, 97, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6688, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6688, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6689, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6690, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6690, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6690, 28, 101, 101, 85, 59, 48, 71, 60, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6691, 29, 69, 69, 53, 35, 53, 35, 53, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6691, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6691, 29, 69, 69, 53, 35, 53, 35, 53, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6691, 30, 71, 71, 54, 36, 54, 36, 54, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6691, 31, 73, 73, 56, 37, 56, 37, 56, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6692, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6692, 33, 117, 117, 99, 69, 56, 82, 70, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6693, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6693, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6693, 51, 155, 155, 130, 99, 130, 99, 69, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6694, 24, 66, 66, 36, 34, 35, 33, 42, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6694, 25, 69, 69, 38, 35, 37, 34, 44, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6694, 25, 69, 69, 38, 35, 37, 34, 44, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6694, 26, 94, 94, 79, 55, 45, 66, 56, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6695, 33, 127, 127, 68, 65, 67, 63, 56, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6696, 14, 34, 34, 12, 25, 14, 15, 32, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6696, 16, 46, 46, 32, 29, 21, 26, 30, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6696, 14, 34, 34, 12, 25, 14, 15, 32, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6697, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6698, 44, 96, 96, 78, 108, 60, 42, 56, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6699, 40, 140, 140, 119, 82, 67, 99, 84, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6699, 37, 130, 130, 110, 76, 62, 92, 78, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6699, 37, 130, 130, 110, 76, 62, 92, 78, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6700, 28, 67, 67, 51, 34, 51, 34, 51, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6700, 28, 67, 67, 51, 34, 51, 34, 51, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6701, 44, 179, 179, 71, 71, 87, 87, 79, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6701, 40, 116, 116, 51, 75, 83, 131, 75, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6702, 8, 27, 27, 15, 14, 14, 14, 22, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6702, 8, 27, 27, 15, 14, 14, 14, 22, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6703, 33, 74, 74, 59, 82, 46, 33, 43, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6703, 37, 115, 115, 96, 73, 96, 73, 51, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6703, 37, 97, 97, 88, 151, 81, 51, 70, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6703, 33, 77, 77, 59, 39, 59, 39, 59, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6704, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6704, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6704, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6704, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6705, 39, 98, 98, 71, 65, 46, 58, 68, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6705, 39, 98, 98, 71, 65, 46, 58, 68, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6705, 35, 103, 103, 84, 70, 56, 56, 77, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6706, 40, 128, 128, 93, 71, 71, 83, 73, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6706, 43, 137, 137, 99, 76, 76, 89, 78, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6706, 38, 111, 111, 90, 75, 60, 60, 83, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6707, 43, 137, 137, 99, 76, 76, 89, 78, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6707, 47, 149, 149, 108, 83, 83, 97, 85, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6707, 41, 119, 119, 97, 81, 64, 64, 89, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6707, 39, 86, 86, 100, 89, 38, 38, 58, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6708, 48, 152, 152, 110, 84, 84, 99, 87, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6708, 52, 163, 163, 119, 91, 91, 106, 94, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6708, 49, 140, 140, 115, 96, 76, 76, 105, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6708, 51, 135, 135, 155, 140, 74, 74, 99, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6709, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6709, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6709, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6710, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6710, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6710, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6710, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6711, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6711, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6711, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6711, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6711, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6712, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6712, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6712, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6712, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6712, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6712, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6713, 42, 113, 113, 74, 99, 99, 57, 91, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6714, 36, 84, 84, 64, 43, 64, 43, 64, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6714, 42, 130, 130, 108, 83, 108, 83, 57, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6715, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6715, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6715, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6716, 32, 88, 88, 51, 70, 58, 70, 38, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6716, 34, 93, 93, 54, 75, 61, 75, 41, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6716, 36, 98, 98, 57, 79, 64, 79, 43, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6716, 38, 103, 103, 60, 83, 68, 83, 45, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6717, 10, 32, 32, 22, 20, 15, 18, 21, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6718, 40, 128, 128, 93, 71, 71, 83, 73, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6719, 45, 129, 129, 106, 88, 70, 70, 97, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6719, 42, 134, 134, 97, 74, 74, 87, 77, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6720, 53, 150, 150, 124, 103, 82, 82, 114, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6720, 56, 175, 175, 128, 97, 97, 114, 101, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6721, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6721, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6721, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6721, 22, 48, 48, 17, 37, 19, 21, 48, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6722, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6722, 30, 89, 89, 72, 60, 48, 48, 66, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6722, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6723, 43, 150, 150, 93, 93, 76, 76, 50, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6723, 38, 111, 111, 90, 75, 60, 60, 83, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6723, 38, 122, 122, 71, 68, 79, 109, 94, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6724, 19, 60, 60, 47, 40, 32, 32, 44, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6725, 33, 97, 97, 79, 66, 53, 53, 72, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6726, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6726, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6726, 38, 111, 111, 90, 75, 60, 60, 83, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6727, 41, 131, 131, 95, 73, 73, 85, 75, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6727, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6727, 53, 150, 150, 124, 103, 82, 82, 114, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6728, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6728, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6728, 29, 95, 95, 68, 53, 53, 61, 54, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6729, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6729, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6729, 36, 116, 116, 84, 64, 64, 75, 66, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6730, 32, 82, 82, 59, 54, 38, 48, 56, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6730, 36, 116, 116, 84, 64, 64, 75, 66, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6730, 40, 128, 128, 93, 71, 71, 83, 73, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6731, 42, 134, 134, 97, 74, 74, 87, 77, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6731, 46, 146, 146, 106, 81, 81, 95, 84, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6731, 63, 196, 196, 143, 109, 109, 128, 113, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6732, 16, 54, 54, 40, 31, 36, 28, 42, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6732, 16, 54, 54, 40, 31, 36, 28, 42, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6732, 16, 54, 54, 40, 31, 36, 28, 42, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6732, 16, 54, 54, 40, 31, 36, 28, 42, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6733, 34, 103, 103, 79, 61, 71, 54, 83, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6733, 34, 103, 103, 79, 61, 71, 54, 83, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6734, 34, 103, 103, 79, 61, 71, 54, 83, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6734, 34, 130, 130, 62, 74, 72, 84, 39, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6735, 62, 155, 155, 88, 96, 88, 102, 109, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6735, 62, 162, 162, 131, 157, 168, 120, 91, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6735, 62, 162, 162, 156, 157, 143, 120, 91, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6735, 62, 179, 179, 112, 121, 112, 133, 140, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6736, 18, 59, 59, 44, 34, 40, 31, 46, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6736, 18, 59, 59, 44, 34, 40, 31, 46, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6737, 63, 146, 146, 78, 71, 90, 153, 115, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6737, 63, 196, 196, 115, 109, 128, 178, 153, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6737, 63, 177, 177, 147, 122, 96, 96, 134, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6738, 34, 103, 103, 79, 61, 71, 54, 83, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6738, 34, 103, 103, 79, 61, 71, 54, 83, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6739, 60, 115, 115, 38, 92, 44, 50, 122, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6739, 60, 115, 115, 38, 92, 44, 50, 122, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6739, 60, 115, 115, 38, 92, 44, 50, 122, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6739, 60, 115, 115, 38, 92, 44, 50, 122, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6739, 60, 115, 115, 38, 92, 44, 50, 122, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6739, 60, 115, 115, 38, 92, 44, 50, 122, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6740, 63, 120, 120, 46, 52, 40, 96, 128, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6740, 63, 139, 139, 109, 71, 109, 71, 109, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6740, 63, 120, 120, 40, 96, 46, 52, 128, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6741, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6741, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6742, 62, 156, 156, 86, 80, 84, 78, 101, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6742, 62, 147, 147, 126, 107, 89, 70, 70, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6742, 62, 150, 150, 138, 52, 107, 52, 107, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6742, 62, 230, 230, 124, 117, 121, 115, 101, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6743, 64, 135, 135, 162, 143, 60, 60, 92, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6743, 64, 193, 193, 162, 124, 162, 124, 85, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6744, 16, 47, 47, 27, 26, 31, 26, 28, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6744, 16, 54, 54, 40, 31, 36, 28, 42, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6745, 60, 169, 169, 104, 104, 86, 86, 134, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6745, 60, 223, 223, 120, 114, 117, 111, 98, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6745, 60, 199, 199, 116, 116, 134, 146, 110, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6746, 61, 202, 202, 106, 106, 75, 75, 45, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6746, 61, 147, 147, 108, 100, 69, 87, 103, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6746, 61, 190, 190, 139, 106, 106, 124, 109, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6747, 64, 135, 135, 162, 143, 60, 60, 92, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6747, 64, 180, 180, 149, 124, 98, 98, 136, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6747, 64, 167, 167, 194, 175, 92, 92, 124, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6748, 39, 117, 117, 90, 69, 81, 61, 95, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6748, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6749, 42, 125, 125, 97, 74, 87, 66, 102, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6750, 59, 148, 148, 84, 92, 84, 98, 104, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6750, 59, 155, 155, 125, 150, 160, 114, 87, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6750, 59, 155, 155, 148, 150, 137, 114, 87, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6750, 59, 171, 171, 107, 115, 107, 127, 133, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6751, 60, 143, 143, 122, 104, 86, 68, 68, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6751, 60, 139, 139, 86, 74, 74, 74, 134, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6751, 60, 222, 222, 105, 127, 123, 145, 65, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6752, 17, 56, 56, 42, 33, 38, 29, 44, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6753, 40, 196, 196, 79, 83, 51, 55, 71, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6754, 44, 118, 118, 56, 64, 78, 95, 56, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6754, 44, 118, 118, 56, 64, 78, 95, 56, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6754, 44, 118, 118, 56, 64, 78, 95, 56, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6755, 40, 168, 168, 71, 67, 107, 95, 71, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6756, 64, 122, 122, 47, 53, 40, 98, 130, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6756, 64, 159, 159, 90, 99, 90, 106, 112, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6756, 64, 185, 185, 116, 125, 116, 138, 144, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6757, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6757, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6757, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6757, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6757, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6757, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6758, 60, 151, 151, 84, 78, 81, 75, 98, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6758, 60, 223, 223, 120, 114, 117, 111, 98, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6758, 60, 222, 222, 105, 127, 123, 145, 65, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6759, 38, 84, 84, 52, 60, 71, 60, 83, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6759, 38, 103, 103, 68, 45, 64, 41, 83, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6760, 40, 128, 128, 85, 81, 95, 83, 87, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6761, 27, 73, 73, 43, 48, 46, 48, 38, 514); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6761, 29, 75, 75, 67, 27, 53, 27, 53, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6762, 38, 114, 114, 88, 68, 79, 60, 93, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6762, 38, 114, 114, 88, 68, 79, 60, 93, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6763, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6763, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6763, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6763, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6763, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6763, 24, 52, 52, 18, 40, 20, 23, 52, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6764, 40, 152, 152, 81, 77, 80, 76, 67, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6765, 20, 49, 49, 38, 52, 30, 22, 28, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6765, 20, 49, 49, 30, 34, 40, 34, 46, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6766, 37, 108, 108, 66, 66, 55, 55, 84, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6766, 39, 113, 113, 69, 69, 58, 58, 89, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6767, 19, 51, 51, 27, 25, 30, 49, 38, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6767, 19, 51, 51, 27, 25, 30, 49, 38, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6767, 19, 51, 51, 27, 25, 30, 49, 38, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6768, 14, 34, 34, 12, 25, 14, 15, 32, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6768, 16, 38, 38, 13, 28, 15, 17, 36, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6769, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6769, 26, 94, 94, 79, 55, 45, 66, 56, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6770, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6771, 21, 56, 56, 46, 39, 33, 27, 27, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6771, 21, 93, 93, 41, 27, 41, 27, 37, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6772, 14, 40, 40, 21, 19, 24, 38, 29, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6772, 16, 73, 73, 33, 21, 33, 21, 29, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6773, 10, 27, 27, 10, 19, 11, 12, 24, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6773, 12, 35, 35, 18, 17, 21, 33, 26, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6774, 12, 31, 31, 11, 22, 12, 14, 28, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6774, 14, 40, 40, 21, 19, 24, 38, 29, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6775, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6775, 28, 101, 101, 85, 59, 48, 71, 60, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6776, 37, 119, 119, 70, 66, 77, 107, 92, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6776, 38, 145, 145, 77, 74, 76, 72, 64, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6776, 39, 137, 137, 116, 80, 65, 97, 82, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6777, 46, 146, 146, 85, 81, 95, 131, 113, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6777, 47, 144, 144, 120, 92, 120, 92, 64, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6777, 47, 177, 177, 95, 90, 93, 88, 78, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6777, 48, 166, 166, 142, 98, 79, 118, 100, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6778, 27, 71, 71, 63, 25, 49, 25, 49, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6778, 27, 71, 71, 63, 25, 49, 25, 49, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6778, 27, 57, 57, 22, 25, 20, 44, 57, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6779, 34, 99, 99, 98, 75, 78, 54, 54, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6779, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6780, 36, 138, 138, 74, 70, 72, 69, 61, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6781, 39, 160, 160, 64, 64, 78, 78, 71, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6782, 39, 125, 125, 73, 69, 81, 112, 97, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6783, 7, 22, 22, 8, 15, 9, 10, 18, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6783, 7, 22, 22, 8, 15, 9, 10, 18, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6783, 7, 22, 22, 8, 15, 9, 10, 18, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6784, 37, 92, 92, 40, 59, 47, 66, 90, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6784, 37, 134, 134, 84, 114, 51, 66, 59, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6785, 13, 38, 38, 20, 18, 22, 35, 27, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6786, 23, 84, 84, 70, 49, 40, 59, 50, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6787, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6788, 37, 156, 156, 70, 44, 70, 44, 62, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6788, 37, 112, 112, 107, 47, 88, 47, 88, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6789, 36, 127, 127, 107, 74, 61, 89, 76, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6789, 36, 127, 127, 107, 74, 61, 89, 76, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6789, 36, 127, 127, 107, 74, 61, 89, 76, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6790, 37, 112, 112, 107, 47, 88, 47, 88, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6790, 37, 141, 141, 76, 72, 74, 70, 62, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6791, 36, 116, 116, 84, 64, 64, 75, 66, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6792, 17, 48, 48, 41, 17, 33, 17, 33, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6793, 37, 156, 156, 70, 44, 70, 44, 62, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6793, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6794, 16, 38, 38, 13, 28, 15, 17, 36, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6794, 17, 39, 39, 14, 29, 16, 17, 38, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6795, 16, 47, 47, 26, 24, 25, 23, 29, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6795, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6796, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6797, 17, 46, 46, 28, 24, 24, 24, 41, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6798, 30, 62, 62, 24, 27, 21, 48, 63, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6798, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6799, 23, 75, 75, 30, 30, 39, 39, 44, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6800, 23, 55, 55, 33, 38, 45, 38, 52, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6800, 23, 84, 84, 70, 49, 40, 59, 50, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6801, 18, 56, 56, 41, 34, 36, 36, 36, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6801, 16, 62, 62, 34, 45, 42, 36, 20, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6801, 16, 62, 62, 33, 34, 41, 39, 29, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6801, 16, 44, 44, 23, 21, 26, 42, 33, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6801, 18, 54, 54, 40, 33, 29, 36, 46, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6801, 16, 57, 57, 37, 35, 41, 36, 37, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6802, 20, 61, 61, 45, 38, 40, 40, 40, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6802, 15, 61, 61, 38, 34, 22, 34, 37, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6802, 15, 54, 54, 46, 49, 26, 29, 23, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6802, 20, 59, 59, 32, 30, 66, 50, 60, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6802, 15, 57, 57, 49, 34, 29, 35, 26, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6802, 15, 48, 48, 32, 35, 40, 35, 44, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6803, 50, 122, 122, 71, 88, 73, 87, 66, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6803, 50, 118, 118, 73, 63, 63, 63, 113, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6803, 50, 98, 98, 33, 78, 38, 43, 103, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6803, 50, 137, 137, 86, 103, 88, 103, 81, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6803, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6803, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6804, 50, 137, 137, 86, 103, 88, 103, 81, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6804, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6804, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6804, 50, 128, 128, 118, 203, 108, 68, 93, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6804, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6804, 50, 133, 133, 78, 73, 68, 88, 78, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6805, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6805, 100, 276, 276, 121, 181, 201, 321, 181, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6805, 100, 396, 396, 157, 157, 193, 193, 175, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6805, 100, 336, 336, 211, 211, 171, 171, 111, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6805, 100, 326, 326, 181, 201, 181, 231, 181, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6805, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6806, 100, 286, 286, 161, 291, 271, 181, 151, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6806, 100, 316, 316, 251, 241, 199, 207, 197, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6806, 100, 396, 396, 157, 157, 193, 193, 175, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6806, 100, 276, 276, 221, 281, 211, 181, 161, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6806, 100, 336, 336, 211, 211, 171, 171, 111, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6806, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6807, 41, 139, 139, 68, 77, 81, 77, 56, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6808, 39, 90, 90, 68, 85, 76, 61, 44, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6808, 39, 90, 90, 68, 85, 76, 61, 44, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6809, 43, 115, 115, 109, 110, 101, 84, 65, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6809, 43, 115, 115, 92, 110, 118, 84, 65, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6810, 48, 128, 128, 122, 123, 112, 94, 72, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6810, 48, 128, 128, 102, 123, 131, 94, 72, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6810, 48, 123, 123, 113, 195, 103, 65, 89, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6811, 38, 88, 88, 67, 83, 74, 60, 43, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6811, 40, 128, 128, 75, 71, 83, 115, 99, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6812, 41, 110, 110, 64, 89, 73, 89, 48, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6813, 41, 168, 168, 67, 67, 82, 82, 74, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6814, 41, 147, 147, 60, 85, 68, 85, 60, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6815, 41, 114, 114, 81, 89, 101, 89, 114, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6816, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6816, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6817, 41, 131, 131, 95, 73, 73, 85, 75, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6818, 49, 148, 148, 120, 81, 120, 81, 86, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6818, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6818, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6818, 51, 120, 120, 59, 53, 145, 94, 130, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6819, 25, 74, 74, 29, 29, 32, 42, 39, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6819, 25, 61, 61, 37, 31, 31, 36, 24, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6820, 62, 150, 150, 95, 83, 107, 83, 120, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6820, 61, 178, 178, 130, 112, 100, 112, 87, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6820, 61, 227, 227, 124, 136, 142, 136, 106, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6821, 43, 102, 102, 76, 102, 72, 59, 50, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6821, 44, 131, 131, 82, 56, 73, 56, 73, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6821, 43, 94, 94, 59, 136, 59, 97, 46, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6821, 44, 113, 113, 95, 95, 69, 69, 64, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6822, 30, 76, 76, 63, 54, 45, 36, 36, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6822, 30, 74, 74, 45, 42, 57, 42, 57, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6823, 56, 153, 153, 125, 86, 125, 114, 148, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6823, 55, 150, 150, 79, 79, 90, 101, 79, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6823, 56, 153, 153, 81, 103, 114, 114, 181, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6823, 56, 170, 170, 103, 125, 103, 142, 114, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6824, 23, 52, 52, 22, 20, 61, 38, 54, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6824, 23, 61, 61, 47, 29, 42, 28, 33, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6825, 34, 103, 103, 71, 51, 41, 41, 41, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6825, 35, 85, 85, 45, 52, 38, 38, 38, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6825, 34, 114, 114, 68, 60, 47, 54, 78, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6826, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6826, 41, 123, 123, 77, 52, 68, 52, 68, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6826, 40, 132, 132, 80, 70, 55, 63, 91, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6827, 41, 135, 135, 82, 72, 56, 64, 93, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6827, 42, 125, 125, 78, 53, 70, 53, 70, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6827, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6828, 58, 181, 181, 165, 176, 89, 101, 78, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6828, 59, 208, 208, 132, 179, 79, 102, 91, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6828, 60, 175, 175, 164, 98, 164, 98, 92, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6828, 60, 181, 181, 146, 158, 80, 92, 104, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6829, 27, 68, 68, 41, 39, 52, 39, 52, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6829, 28, 59, 59, 37, 65, 31, 65, 29, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6830, 40, 120, 120, 51, 59, 63, 59, 39, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6830, 40, 120, 120, 83, 59, 47, 47, 47, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6831, 37, 97, 97, 73, 73, 66, 66, 55, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6831, 36, 109, 109, 68, 46, 61, 46, 61, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6832, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6832, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6832, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6832, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6832, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6832, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6833, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6833, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6833, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6833, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6833, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6833, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6834, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6834, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6834, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6834, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6834, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6834, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6835, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6835, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6835, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6835, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6835, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6835, 50, 118, 118, 53, 53, 78, 53, 108, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6836, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6836, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6836, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6836, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6836, 50, 123, 123, 83, 63, 93, 73, 68, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6836, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6837, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6837, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6837, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6837, 50, 144, 144, 64, 100, 84, 110, 46, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6837, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6837, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6838, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6838, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6838, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6838, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6838, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6838, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6839, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6839, 50, 122, 122, 98, 58, 86, 56, 68, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6839, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6839, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6839, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6839, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6840, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6840, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6840, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6840, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6840, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6840, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6841, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6841, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6841, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6841, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6841, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6841, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6842, 7, 25, 25, 14, 15, 18, 16, 11, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6842, 7, 29, 29, 18, 14, 12, 12, 12, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6843, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6843, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6844, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6844, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6845, 9, 27, 27, 15, 20, 20, 12, 19, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6845, 9, 26, 26, 11, 10, 27, 18, 24, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6845, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6846, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6846, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6846, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6846, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6846, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6846, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6847, 43, 145, 145, 72, 72, 54, 54, 54, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6847, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6848, 57, 144, 144, 93, 76, 139, 116, 99, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6848, 59, 161, 161, 108, 85, 144, 85, 102, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6848, 58, 158, 158, 95, 95, 95, 95, 95, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6849, 23, 68, 68, 27, 27, 29, 39, 36, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6849, 23, 57, 57, 34, 28, 29, 33, 22, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6849, 23, 59, 59, 33, 29, 27, 31, 38, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6850, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6850, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6850, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6851, 40, 216, 216, 45, 65, 45, 65, 45, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6851, 40, 112, 112, 67, 79, 67, 79, 83, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6851, 40, 65, 65, 91, 55, 43, 43, 51, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6851, 40, 120, 120, 87, 75, 67, 75, 59, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6852, 5, 20, 20, 12, 11, 12, 11, 13, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6852, 5, 20, 20, 8, 13, 10, 13, 8, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6853, 11, 38, 38, 17, 22, 17, 22, 16, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6854, 30, 77, 77, 45, 42, 84, 48, 72, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6854, 30, 86, 86, 44, 42, 41, 69, 41, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6855, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6855, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6855, 50, 143, 143, 88, 83, 133, 118, 153, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6855, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6855, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6855, 50, 133, 133, 78, 73, 68, 88, 78, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6856, 66, 231, 231, 205, 173, 154, 160, 109, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6856, 66, 198, 198, 160, 173, 88, 101, 114, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6856, 66, 192, 192, 173, 266, 107, 107, 94, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6856, 66, 192, 192, 180, 107, 180, 107, 101, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6856, 66, 185, 185, 127, 167, 74, 114, 140, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6857, 37, 102, 102, 77, 85, 77, 82, 73, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6857, 37, 88, 88, 44, 44, 66, 59, 55, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6857, 37, 126, 126, 107, 73, 62, 62, 51, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6858, 65, 189, 189, 197, 158, 99, 132, 112, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6858, 65, 238, 238, 174, 181, 116, 122, 89, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6858, 65, 195, 195, 151, 190, 86, 125, 151, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6859, 65, 189, 189, 106, 119, 141, 129, 138, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6859, 65, 193, 193, 127, 125, 133, 158, 158, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6859, 65, 227, 227, 116, 136, 122, 141, 94, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6860, 38, 112, 112, 62, 62, 80, 69, 95, 594); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6860, 38, 137, 137, 56, 79, 64, 79, 56, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6861, 40, 130, 130, 83, 88, 87, 79, 77, 596); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6862, 40, 145, 145, 77, 77, 98, 90, 42, 597); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6863, 65, 189, 189, 132, 119, 132, 119, 171, 317); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6863, 65, 215, 215, 148, 125, 148, 138, 106, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6863, 65, 241, 241, 197, 132, 119, 106, 132, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6864, 65, 202, 202, 119, 119, 145, 158, 119, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6864, 65, 215, 215, 125, 125, 145, 158, 119, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6864, 65, 221, 221, 171, 132, 119, 132, 93, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6865, 50, 135, 135, 47, 109, 47, 109, 46, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6865, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6865, 50, 168, 168, 73, 57, 83, 67, 93, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6865, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6865, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6865, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6867, 10, 32, 32, 24, 21, 18, 15, 15, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6868, 10, 32, 32, 24, 21, 18, 15, 15, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6869, 10, 32, 32, 24, 21, 18, 15, 15, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6870, 31, 64, 64, 22, 158, 22, 158, 19, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6870, 31, 103, 103, 65, 62, 59, 59, 78, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6870, 31, 73, 73, 65, 47, 47, 59, 90, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6871, 30, 91, 91, 69, 54, 45, 48, 65, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6872, 63, 133, 133, 80, 176, 80, 138, 65, 498); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6872, 63, 335, 335, 69, 100, 69, 100, 69, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6872, 63, 215, 215, 103, 127, 153, 185, 129, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6873, 63, 202, 202, 90, 147, 178, 172, 128, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6873, 63, 202, 202, 159, 96, 134, 90, 172, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6873, 63, 183, 183, 166, 115, 172, 115, 141, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6874, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6874, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6876, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6877, 17, 51, 51, 34, 26, 34, 28, 31, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6877, 17, 50, 50, 40, 29, 33, 33, 41, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6878, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6879, 22, 50, 50, 28, 43, 54, 37, 32, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6879, 22, 57, 57, 26, 34, 37, 37, 56, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6880, 20, 77, 77, 32, 32, 42, 50, 40, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6881, 33, 97, 97, 63, 56, 59, 59, 92, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6882, 37, 86, 86, 59, 47, 55, 55, 84, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6882, 33, 101, 101, 53, 53, 69, 56, 46, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6883, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6883, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6884, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6885, 44, 131, 131, 86, 73, 113, 73, 113, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6885, 44, 131, 131, 86, 73, 113, 73, 113, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6886, 31, 95, 95, 62, 53, 81, 53, 81, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6887, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6888, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6888, 36, 109, 109, 71, 61, 93, 61, 93, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6889, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6889, 39, 117, 117, 77, 65, 100, 65, 100, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6890, 41, 129, 129, 77, 69, 60, 69, 101, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6890, 41, 131, 131, 87, 83, 97, 85, 89, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6890, 41, 123, 123, 81, 68, 105, 68, 105, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6891, 36, 109, 109, 75, 64, 82, 64, 79, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6892, 41, 221, 221, 46, 67, 46, 67, 46, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6893, 44, 131, 131, 86, 73, 113, 73, 113, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6893, 44, 131, 131, 86, 73, 113, 73, 113, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6894, 36, 102, 102, 35, 43, 68, 75, 61, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6895, 45, 136, 136, 124, 75, 75, 75, 102, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6896, 29, 90, 90, 58, 50, 76, 50, 76, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6897, 34, 103, 103, 68, 58, 88, 58, 88, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6898, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6898, 36, 109, 109, 71, 61, 93, 61, 93, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6899, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6899, 39, 117, 117, 77, 65, 100, 65, 100, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6900, 41, 129, 129, 77, 69, 60, 69, 101, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6900, 41, 131, 131, 87, 83, 97, 85, 89, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6900, 41, 123, 123, 81, 68, 105, 68, 105, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6902, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6903, 49, 135, 135, 101, 130, 71, 101, 66, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6903, 49, 155, 155, 103, 99, 115, 101, 105, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6904, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6905, 17, 51, 51, 34, 26, 34, 28, 31, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6905, 17, 50, 50, 40, 29, 33, 33, 41, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6906, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6906, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6907, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6908, 19, 64, 64, 36, 28, 46, 27, 46, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6909, 31, 99, 99, 56, 44, 73, 42, 72, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6910, 40, 125, 125, 71, 55, 93, 53, 92, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6911, 60, 182, 182, 104, 80, 137, 77, 135, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6912, 21, 55, 55, 35, 25, 25, 25, 37, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6912, 21, 63, 63, 25, 25, 27, 36, 33, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6913, 27, 87, 87, 49, 39, 64, 37, 63, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6914, 35, 110, 110, 63, 49, 82, 47, 81, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6915, 45, 139, 139, 79, 61, 104, 59, 103, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6916, 61, 185, 185, 106, 81, 139, 78, 137, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6917, 27, 87, 87, 49, 39, 64, 37, 63, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6918, 22, 83, 83, 34, 34, 46, 55, 43, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6919, 36, 130, 130, 53, 53, 72, 87, 68, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6920, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6921, 58, 204, 204, 83, 83, 114, 137, 107, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6922, 41, 119, 119, 77, 68, 73, 73, 114, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6923, 46, 104, 104, 72, 58, 67, 67, 104, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6923, 42, 100, 100, 57, 53, 74, 53, 74, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6923, 43, 128, 128, 67, 67, 89, 72, 59, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6924, 45, 120, 120, 84, 61, 84, 66, 75, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6925, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6925, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6926, 40, 112, 112, 75, 71, 119, 103, 91, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6927, 65, 221, 221, 125, 132, 158, 171, 67, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6928, 63, 152, 152, 103, 65, 128, 90, 109, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6928, 63, 221, 221, 90, 90, 123, 148, 115, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6928, 63, 190, 190, 141, 90, 166, 128, 147, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6929, 64, 212, 212, 181, 124, 104, 104, 85, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6930, 35, 124, 124, 63, 94, 59, 108, 63, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6931, 39, 117, 117, 69, 69, 61, 61, 73, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6932, 62, 212, 212, 120, 126, 151, 163, 64, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6933, 17, 48, 48, 31, 26, 19, 26, 29, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6934, 60, 145, 145, 98, 62, 122, 86, 104, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6934, 60, 211, 211, 86, 86, 117, 141, 110, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6934, 60, 181, 181, 134, 86, 158, 122, 140, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6935, 43, 118, 118, 114, 116, 61, 61, 114, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6935, 43, 128, 128, 115, 80, 119, 80, 97, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6936, 51, 181, 181, 148, 99, 81, 99, 104, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6937, 49, 140, 140, 120, 91, 101, 101, 125, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6937, 49, 150, 150, 120, 84, 101, 84, 136, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6938, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6939, 41, 123, 123, 81, 68, 105, 68, 105, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6940, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6941, 48, 142, 142, 94, 79, 123, 79, 123, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6941, 50, 163, 163, 133, 113, 68, 113, 103, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6942, 15, 45, 45, 32, 32, 29, 29, 25, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6945, 23, 84, 84, 43, 63, 40, 73, 43, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6946, 9, 35, 35, 19, 13, 11, 13, 12, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6947, 50, 119, 119, 87, 68, 73, 73, 73, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6947, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6947, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6947, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6947, 50, 143, 143, 113, 63, 68, 103, 98, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6947, 50, 143, 143, 83, 93, 108, 98, 63, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6948, 51, 141, 141, 109, 89, 94, 94, 94, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6948, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6948, 52, 143, 143, 106, 138, 75, 106, 70, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6948, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6948, 53, 132, 132, 74, 74, 74, 74, 74, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6949, 51, 141, 141, 109, 89, 94, 94, 94, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6949, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6949, 51, 222, 222, 94, 69, 110, 74, 69, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6949, 51, 140, 140, 120, 104, 84, 104, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6949, 51, 145, 145, 89, 89, 74, 74, 115, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6949, 51, 138, 138, 88, 82, 104, 89, 104, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6950, 53, 146, 146, 113, 92, 98, 98, 98, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6950, 52, 161, 161, 111, 104, 137, 112, 127, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6950, 51, 140, 140, 115, 79, 115, 104, 135, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6950, 51, 150, 150, 135, 104, 79, 104, 130, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6950, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6950, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6951, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6951, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6951, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6951, 50, 159, 159, 125, 100, 108, 98, 108, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6951, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6951, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6952, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6952, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6952, 50, 168, 168, 123, 113, 148, 108, 113, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6952, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6952, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6952, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6953, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6953, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6953, 50, 168, 168, 123, 113, 148, 108, 113, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6953, 50, 143, 143, 88, 83, 133, 118, 153, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6953, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6953, 55, 227, 227, 118, 112, 118, 129, 90, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6954, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6954, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6954, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6954, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6954, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6954, 55, 260, 260, 145, 96, 96, 145, 57, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6955, 50, 133, 133, 93, 68, 93, 73, 83, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6955, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6955, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6955, 50, 117, 117, 75, 66, 83, 73, 88, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6956, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6956, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6956, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6956, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6956, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6956, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6963, 30, 87, 87, 66, 54, 57, 57, 57, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6963, 30, 86, 86, 66, 51, 66, 51, 48, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6963, 30, 89, 89, 72, 75, 51, 45, 45, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6963, 30, 77, 77, 50, 42, 50, 42, 52, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6963, 30, 89, 89, 62, 47, 62, 47, 64, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6963, 30, 91, 91, 69, 54, 45, 48, 65, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6965, 99, 253, 253, 80, 109, 80, 129, 189, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6966, 20, 55, 55, 36, 25, 32, 25, 42, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6967, 24, 54, 54, 30, 47, 59, 40, 35, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6967, 23, 59, 59, 27, 36, 38, 38, 59, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6968, 48, 142, 142, 137, 60, 113, 60, 113, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6968, 47, 139, 139, 115, 87, 120, 92, 59, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6968, 45, 129, 129, 66, 84, 106, 93, 79, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6968, 48, 132, 132, 79, 94, 79, 94, 99, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6969, 51, 180, 180, 92, 108, 96, 112, 75, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6969, 52, 148, 148, 158, 86, 101, 86, 101, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6969, 52, 143, 143, 117, 169, 75, 75, 65, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6969, 53, 192, 192, 120, 90, 120, 101, 96, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6970, 40, 104, 104, 87, 51, 87, 51, 47, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6970, 41, 139, 139, 68, 68, 52, 52, 52, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6970, 41, 90, 90, 56, 130, 56, 93, 44, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6970, 40, 108, 108, 75, 63, 51, 63, 87, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6971, 55, 155, 155, 151, 96, 116, 94, 96, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6971, 56, 142, 142, 92, 131, 159, 103, 103, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6971, 56, 158, 158, 69, 103, 114, 181, 103, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6971, 55, 205, 205, 110, 105, 108, 102, 90, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6972, 27, 84, 84, 57, 41, 33, 33, 33, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6972, 28, 81, 81, 48, 48, 34, 34, 31, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6972, 29, 71, 71, 32, 39, 32, 39, 50, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6973, 36, 109, 109, 64, 64, 57, 57, 68, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6973, 36, 102, 102, 61, 61, 61, 61, 61, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6973, 37, 119, 119, 77, 77, 59, 59, 84, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6974, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6974, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6974, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6974, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6974, 50, 117, 117, 75, 66, 83, 73, 88, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6974, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6975, 50, 98, 98, 63, 38, 58, 58, 83, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6975, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6975, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6975, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6975, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6975, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6976, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6976, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6976, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6976, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6976, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6976, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6977, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6977, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6977, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6977, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6977, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6977, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6978, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6978, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6978, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6978, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6978, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6978, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6979, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6979, 50, 118, 118, 53, 53, 78, 53, 108, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6979, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6979, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6979, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6979, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6980, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6980, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6980, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6980, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6980, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6980, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6981, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6981, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6981, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6981, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6981, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6981, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6982, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6982, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6982, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6982, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6982, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6982, 50, 118, 118, 53, 53, 78, 53, 108, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6983, 50, 108, 108, 53, 53, 53, 53, 53, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6983, 50, 98, 98, 33, 78, 38, 43, 103, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6983, 50, 123, 123, 68, 58, 43, 53, 43, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6983, 50, 128, 128, 43, 63, 43, 63, 43, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6983, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6983, 50, 128, 128, 58, 78, 48, 48, 38, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6986, 34, 154, 154, 98, 58, 44, 58, 51, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6986, 34, 93, 93, 51, 47, 109, 81, 98, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6987, 20, 53, 53, 30, 26, 28, 28, 48, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6988, 60, 185, 185, 137, 116, 115, 102, 168, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6988, 60, 199, 199, 146, 110, 158, 206, 122, 327); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6988, 60, 173, 173, 104, 104, 176, 164, 122, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6989, 34, 100, 100, 73, 56, 81, 75, 88, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6990, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6990, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6990, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6990, 33, 81, 81, 36, 49, 53, 53, 82, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6991, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6991, 15, 49, 49, 25, 17, 25, 17, 18, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6991, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6992, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6992, 25, 76, 76, 39, 25, 39, 25, 28, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6992, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6993, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6993, 28, 95, 95, 54, 39, 54, 39, 41, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6993, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6994, 31, 83, 83, 53, 75, 90, 59, 59, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6994, 31, 104, 104, 60, 42, 60, 42, 45, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6994, 31, 83, 83, 53, 75, 90, 59, 59, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6995, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6995, 34, 126, 126, 79, 60, 79, 66, 63, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6995, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6996, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6996, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6997, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6997, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6997, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6998, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6998, 15, 49, 49, 25, 17, 25, 17, 18, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6999, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6999, 25, 76, 76, 39, 25, 39, 25, 28, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (6999, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7000, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7000, 28, 95, 95, 54, 39, 54, 39, 41, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7000, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7001, 31, 83, 83, 53, 75, 90, 59, 59, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7001, 31, 104, 104, 60, 42, 60, 42, 45, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7001, 31, 83, 83, 53, 75, 90, 59, 59, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7002, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7002, 34, 126, 126, 79, 60, 79, 66, 63, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7002, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7003, 26, 81, 81, 53, 45, 68, 45, 68, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7004, 30, 74, 74, 42, 39, 54, 39, 54, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7004, 30, 101, 101, 58, 41, 58, 41, 44, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7005, 35, 85, 85, 49, 45, 63, 45, 63, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7005, 35, 85, 85, 49, 45, 63, 45, 63, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7005, 35, 116, 116, 67, 47, 67, 47, 51, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7006, 37, 89, 89, 51, 47, 66, 47, 66, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7006, 37, 112, 112, 73, 62, 96, 62, 96, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7006, 37, 122, 122, 70, 50, 70, 50, 53, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7007, 39, 117, 117, 77, 65, 100, 65, 100, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7007, 39, 117, 117, 77, 65, 100, 65, 100, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7007, 39, 128, 128, 74, 52, 74, 52, 56, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7008, 41, 123, 123, 81, 68, 105, 68, 105, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7008, 41, 123, 123, 81, 68, 105, 68, 105, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7008, 41, 151, 151, 94, 71, 94, 79, 75, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7009, 14, 40, 40, 22, 21, 28, 21, 28, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7009, 14, 40, 40, 18, 24, 25, 25, 38, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7010, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7010, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7011, 15, 42, 42, 19, 25, 26, 26, 40, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7012, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7012, 17, 41, 41, 23, 34, 43, 29, 26, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7013, 16, 44, 44, 25, 21, 20, 23, 28, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7013, 16, 44, 44, 25, 21, 20, 23, 28, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7014, 44, 122, 122, 95, 63, 73, 63, 73, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7015, 44, 122, 122, 100, 69, 100, 91, 117, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7016, 42, 117, 117, 91, 61, 70, 61, 70, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7016, 42, 133, 133, 91, 70, 66, 70, 79, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7017, 31, 89, 89, 68, 46, 53, 46, 53, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7018, 55, 150, 150, 118, 78, 90, 78, 90, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7019, 6, 22, 22, 10, 12, 10, 12, 10, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7020, 23, 76, 76, 52, 36, 38, 36, 43, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7021, 35, 111, 111, 77, 53, 56, 53, 63, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7022, 47, 146, 146, 101, 69, 73, 69, 83, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7023, 52, 160, 160, 112, 76, 80, 76, 91, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7024, 59, 181, 181, 126, 86, 91, 86, 102, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7025, 44, 91, 91, 51, 82, 104, 69, 60, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7025, 44, 122, 122, 95, 63, 73, 63, 73, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7025, 44, 122, 122, 95, 63, 73, 63, 73, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7026, 47, 130, 130, 106, 73, 106, 97, 125, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7027, 45, 125, 125, 97, 65, 75, 65, 75, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7027, 45, 125, 125, 97, 65, 75, 65, 75, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7028, 33, 105, 105, 72, 50, 53, 50, 59, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7028, 33, 71, 71, 39, 63, 79, 53, 46, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7029, 52, 160, 160, 112, 76, 80, 76, 91, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7029, 52, 132, 132, 86, 122, 148, 96, 96, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7030, 42, 121, 121, 89, 68, 99, 91, 108, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7031, 45, 129, 129, 79, 75, 120, 106, 138, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7031, 43, 102, 102, 46, 63, 67, 67, 106, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7031, 42, 88, 88, 49, 78, 99, 66, 57, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7032, 30, 83, 83, 60, 51, 60, 51, 77, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7033, 33, 104, 104, 82, 58, 69, 58, 93, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7034, 14, 37, 37, 22, 26, 18, 20, 26, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7034, 14, 40, 40, 28, 36, 26, 22, 19, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7035, 24, 61, 61, 40, 61, 32, 51, 36, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7036, 33, 94, 94, 71, 46, 46, 46, 65, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7036, 33, 97, 97, 74, 49, 74, 49, 86, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7037, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7037, 16, 52, 52, 27, 18, 27, 18, 19, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7038, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7038, 25, 86, 86, 49, 35, 49, 35, 38, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7039, 32, 85, 85, 54, 77, 93, 61, 61, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7039, 32, 107, 107, 61, 44, 61, 44, 47, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7040, 43, 111, 111, 72, 102, 123, 80, 80, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7040, 43, 157, 157, 98, 74, 98, 83, 78, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7041, 48, 148, 148, 84, 65, 110, 62, 109, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7041, 48, 175, 175, 109, 82, 109, 92, 87, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7041, 48, 142, 142, 89, 132, 147, 108, 79, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7042, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7042, 16, 44, 44, 25, 23, 31, 23, 31, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7043, 15, 42, 42, 19, 25, 26, 26, 40, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7043, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7044, 43, 120, 120, 80, 63, 106, 63, 76, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7044, 42, 117, 117, 87, 62, 62, 62, 53, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7044, 42, 113, 113, 57, 62, 57, 74, 87, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7044, 43, 98, 98, 75, 93, 84, 67, 48, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7045, 25, 66, 66, 36, 31, 24, 29, 24, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7045, 25, 69, 69, 31, 41, 26, 26, 21, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7045, 26, 71, 71, 32, 42, 27, 27, 22, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7046, 40, 100, 100, 73, 67, 47, 59, 69, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7046, 40, 100, 100, 55, 47, 35, 43, 35, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7047, 55, 150, 150, 167, 112, 90, 90, 101, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7047, 55, 161, 161, 156, 68, 129, 68, 129, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7047, 56, 164, 164, 137, 103, 142, 109, 69, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7047, 55, 167, 167, 123, 178, 90, 90, 68, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7048, 40, 96, 96, 43, 43, 63, 43, 87, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7048, 40, 136, 136, 43, 31, 51, 35, 31, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7049, 48, 161, 161, 137, 94, 79, 79, 65, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7049, 47, 139, 139, 100, 87, 83, 87, 69, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7049, 47, 135, 135, 59, 87, 97, 153, 87, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7049, 49, 164, 164, 81, 91, 96, 91, 66, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7050, 33, 84, 84, 79, 49, 43, 49, 66, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7050, 33, 87, 87, 59, 76, 39, 39, 26, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7050, 32, 95, 95, 63, 51, 46, 64, 70, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7050, 32, 95, 95, 46, 51, 63, 64, 70, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7051, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7051, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7051, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7051, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7051, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7051, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7052, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7052, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7052, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7052, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7052, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7052, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7053, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7053, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7053, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7053, 50, 158, 158, 123, 223, 73, 123, 73, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7053, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7053, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7054, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7054, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7054, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7054, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7054, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7054, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7055, 50, 98, 98, 33, 78, 38, 43, 103, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7055, 50, 98, 98, 38, 43, 33, 78, 103, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7055, 50, 128, 128, 43, 63, 43, 63, 43, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7055, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7055, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7055, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7056, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7056, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7056, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7056, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7056, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7056, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7057, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7057, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7057, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7057, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7057, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7057, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7058, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7058, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7058, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7058, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7058, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7058, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7059, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7059, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7059, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7059, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7059, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7059, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7060, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7060, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7060, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7060, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7060, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7060, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7061, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7061, 50, 138, 138, 75, 191, 70, 161, 53, 605); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7061, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7061, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7061, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7061, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7063, 64, 173, 173, 79, 130, 104, 85, 79, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7063, 64, 173, 173, 92, 117, 130, 130, 207, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7064, 29, 69, 69, 47, 38, 41, 38, 50, 606); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7064, 29, 85, 85, 40, 44, 40, 44, 47, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7064, 29, 85, 85, 60, 51, 44, 39, 53, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7065, 20, 55, 55, 33, 40, 28, 36, 29, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7065, 20, 49, 49, 30, 35, 24, 27, 35, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7066, 20, 55, 55, 33, 40, 28, 36, 29, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7066, 20, 57, 57, 38, 46, 26, 26, 34, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7067, 20, 49, 49, 30, 35, 24, 27, 35, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7067, 20, 55, 55, 33, 40, 28, 36, 29, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7068, 30, 83, 83, 60, 51, 60, 51, 77, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7068, 30, 94, 94, 50, 63, 77, 63, 74, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7069, 22, 57, 57, 37, 56, 30, 47, 33, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7069, 22, 57, 57, 37, 56, 30, 47, 33, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7070, 21, 57, 57, 34, 41, 29, 37, 30, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7071, 20, 57, 57, 38, 46, 26, 26, 34, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7071, 20, 59, 59, 37, 48, 32, 44, 29, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7072, 61, 166, 166, 75, 124, 100, 81, 75, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7072, 61, 166, 166, 87, 112, 124, 124, 197, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7073, 20, 55, 55, 33, 40, 28, 36, 29, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7073, 20, 55, 55, 33, 40, 28, 36, 29, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7074, 19, 52, 52, 31, 38, 27, 34, 27, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7074, 19, 47, 47, 23, 27, 23, 27, 38, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7074, 19, 54, 54, 36, 44, 25, 25, 32, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7075, 35, 85, 85, 45, 56, 45, 66, 56, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7076, 20, 49, 49, 24, 29, 24, 29, 40, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7076, 20, 59, 59, 37, 48, 32, 44, 29, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7077, 35, 85, 85, 45, 56, 45, 66, 56, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7079, 30, 68, 68, 36, 33, 75, 36, 63, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7079, 30, 86, 86, 54, 51, 93, 60, 81, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7079, 30, 77, 77, 45, 42, 84, 48, 72, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7080, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7080, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7080, 10, 30, 30, 17, 40, 14, 17, 22, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7081, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7081, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7082, 17, 45, 45, 26, 65, 21, 26, 34, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7083, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7083, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7083, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7083, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7084, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7084, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7085, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7085, 21, 53, 53, 31, 79, 25, 31, 41, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7086, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7086, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7086, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7087, 25, 64, 64, 54, 64, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7088, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7088, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7089, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7089, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7089, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7089, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7090, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7090, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7090, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7091, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7091, 21, 61, 61, 52, 60, 31, 31, 27, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7092, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7092, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7092, 21, 61, 61, 52, 60, 31, 31, 27, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7093, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7093, 21, 53, 53, 31, 79, 25, 31, 41, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7094, 19, 49, 49, 28, 72, 23, 28, 38, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7094, 19, 56, 56, 47, 55, 28, 28, 25, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7095, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7095, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7096, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7096, 18, 66, 66, 58, 40, 34, 42, 31, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7097, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7097, 27, 76, 76, 66, 76, 39, 39, 33, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7097, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7098, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7098, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7098, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7099, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7099, 36, 116, 116, 104, 111, 57, 64, 50, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7099, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7100, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7100, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7100, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7100, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7100, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7101, 14, 31, 31, 25, 17, 19, 22, 36, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7101, 14, 40, 40, 32, 38, 18, 18, 15, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7101, 16, 42, 42, 36, 26, 26, 33, 49, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7102, 11, 32, 32, 18, 44, 15, 18, 24, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7103, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7103, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7103, 27, 84, 84, 57, 41, 33, 33, 33, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7104, 35, 120, 120, 108, 73, 63, 77, 56, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7105, 27, 87, 87, 68, 74, 39, 44, 49, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7105, 29, 81, 81, 70, 82, 41, 41, 35, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7105, 31, 101, 101, 90, 96, 50, 56, 44, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7105, 29, 81, 81, 70, 82, 41, 41, 35, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7106, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7106, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7107, 25, 64, 64, 54, 64, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7107, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7107, 25, 84, 84, 74, 79, 41, 46, 36, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7108, 29, 69, 69, 41, 108, 32, 41, 56, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7109, 35, 82, 82, 49, 129, 38, 49, 66, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7109, 33, 87, 87, 49, 43, 36, 36, 49, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7110, 35, 127, 127, 87, 73, 59, 59, 52, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7110, 35, 82, 82, 73, 52, 52, 66, 101, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7110, 38, 118, 118, 83, 170, 60, 68, 41, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7111, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7111, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7111, 23, 66, 66, 56, 66, 33, 33, 29, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7112, 4, 18, 18, 12, 14, 8, 8, 8, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7112, 6, 22, 22, 16, 19, 10, 10, 9, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7112, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7113, 32, 75, 75, 45, 118, 35, 45, 61, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7113, 34, 80, 80, 71, 51, 51, 64, 98, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7114, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7114, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7114, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7115, 27, 52, 52, 44, 28, 33, 39, 66, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7115, 27, 65, 65, 57, 41, 41, 52, 79, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7116, 22, 57, 57, 48, 56, 26, 26, 21, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7116, 22, 64, 64, 54, 63, 32, 32, 28, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7116, 22, 53, 53, 32, 72, 32, 52, 26, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7117, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7117, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7118, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7118, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7118, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7119, 21, 55, 55, 29, 35, 29, 41, 35, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7119, 21, 55, 55, 29, 35, 29, 41, 35, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7120, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7120, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7121, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7121, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7121, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7122, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7122, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7122, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7123, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7123, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7123, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7123, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7124, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7124, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7124, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7124, 24, 69, 69, 59, 68, 35, 35, 30, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7125, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7125, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7125, 27, 76, 76, 66, 76, 39, 39, 33, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7125, 27, 76, 76, 66, 76, 39, 39, 33, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7126, 30, 74, 74, 63, 75, 33, 33, 27, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7126, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7126, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7126, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7127, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7127, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7127, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7127, 33, 107, 107, 96, 102, 53, 59, 46, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7128, 22, 57, 57, 48, 56, 26, 26, 21, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7128, 22, 53, 53, 32, 72, 32, 52, 26, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7128, 22, 64, 64, 54, 63, 32, 32, 28, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7129, 17, 53, 53, 31, 24, 33, 26, 23, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7129, 17, 56, 56, 38, 28, 23, 23, 23, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7130, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7131, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7131, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7132, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7133, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7133, 20, 53, 53, 28, 34, 28, 40, 34, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7134, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7134, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7135, 18, 48, 48, 40, 47, 22, 22, 18, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7135, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7136, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7136, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7137, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7137, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7137, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7138, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7139, 26, 66, 66, 55, 66, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7139, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7140, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7140, 28, 81, 81, 48, 37, 51, 40, 34, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7140, 28, 78, 78, 68, 79, 40, 40, 34, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7141, 30, 92, 92, 63, 45, 36, 36, 36, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7141, 30, 86, 86, 51, 39, 54, 42, 36, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7141, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7142, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7142, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7142, 33, 107, 107, 96, 102, 53, 59, 46, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7143, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7143, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7143, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7144, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7144, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7144, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7144, 24, 69, 69, 59, 68, 35, 35, 30, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7145, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7145, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7145, 27, 76, 76, 66, 76, 39, 39, 33, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7145, 27, 76, 76, 66, 76, 39, 39, 33, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7146, 30, 74, 74, 63, 75, 33, 33, 27, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7146, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7146, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7146, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7147, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7147, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7147, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7147, 33, 107, 107, 96, 102, 53, 59, 46, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7148, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7148, 21, 53, 53, 31, 79, 25, 31, 41, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7149, 25, 64, 64, 54, 64, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7150, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7150, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7150, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7151, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7151, 21, 53, 53, 31, 79, 25, 31, 41, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7152, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7153, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7153, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7153, 21, 61, 61, 52, 60, 31, 31, 27, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7154, 49, 110, 110, 66, 179, 52, 66, 91, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7154, 49, 155, 155, 120, 91, 71, 81, 66, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7155, 54, 121, 121, 73, 197, 56, 73, 100, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7155, 54, 180, 180, 164, 110, 94, 116, 83, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7156, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7156, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7157, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7157, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7158, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7158, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7159, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7159, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7160, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7160, 28, 67, 67, 40, 104, 31, 40, 54, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7161, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7161, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7161, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7161, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7162, 21, 55, 55, 46, 54, 25, 25, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7162, 21, 61, 61, 52, 60, 31, 31, 27, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7163, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7163, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7163, 10, 30, 30, 17, 40, 14, 17, 22, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7164, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7165, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7166, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7166, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7166, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7166, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7167, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7167, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7167, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7168, 19, 49, 49, 28, 72, 23, 28, 38, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7168, 19, 56, 56, 47, 55, 28, 28, 25, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7169, 31, 73, 73, 44, 115, 34, 44, 59, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7169, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7170, 17, 45, 45, 26, 65, 21, 26, 34, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7171, 35, 110, 110, 73, 66, 63, 70, 80, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7171, 35, 96, 96, 84, 98, 49, 49, 42, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7171, 35, 82, 82, 49, 129, 38, 49, 66, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7172, 28, 70, 70, 40, 34, 31, 37, 45, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7172, 31, 73, 73, 44, 115, 34, 44, 59, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7172, 31, 98, 98, 65, 59, 56, 62, 71, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7173, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7173, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7173, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7173, 11, 37, 37, 18, 17, 16, 17, 15, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7174, 19, 49, 49, 28, 72, 23, 28, 38, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7175, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7175, 18, 55, 55, 20, 42, 20, 42, 19, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7176, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7176, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7176, 17, 46, 46, 26, 23, 21, 24, 29, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7176, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7177, 17, 45, 45, 26, 65, 21, 26, 34, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7178, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7178, 15, 40, 40, 23, 58, 19, 23, 31, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7179, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7179, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7180, 14, 38, 38, 22, 54, 18, 22, 29, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7181, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7181, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7182, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7182, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7183, 15, 40, 40, 23, 58, 19, 23, 31, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7183, 15, 40, 40, 23, 58, 19, 23, 31, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7184, 29, 69, 69, 41, 108, 32, 41, 56, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7184, 29, 69, 69, 41, 108, 32, 41, 56, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7185, 37, 86, 86, 51, 136, 40, 51, 70, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7185, 39, 121, 121, 85, 175, 61, 69, 42, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7186, 57, 173, 173, 122, 253, 88, 99, 59, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7186, 59, 178, 178, 126, 262, 91, 102, 61, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7187, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7187, 40, 112, 112, 63, 135, 79, 139, 51, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7188, 35, 78, 78, 49, 112, 49, 80, 38, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7188, 33, 77, 77, 46, 122, 36, 46, 63, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7188, 34, 107, 107, 75, 153, 54, 61, 37, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7189, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7189, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7189, 12, 35, 35, 28, 33, 16, 16, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7190, 22, 55, 55, 32, 83, 26, 32, 43, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7191, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7191, 20, 49, 49, 30, 66, 30, 48, 24, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7192, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7192, 19, 51, 51, 42, 49, 23, 23, 19, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7192, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7192, 19, 49, 49, 28, 72, 23, 28, 38, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7193, 22, 55, 55, 32, 83, 26, 32, 43, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7194, 14, 40, 40, 32, 38, 18, 18, 15, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7194, 18, 47, 47, 27, 69, 22, 27, 36, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7195, 35, 96, 96, 84, 98, 49, 49, 42, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7195, 35, 113, 113, 77, 84, 38, 38, 35, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7196, 14, 38, 38, 22, 54, 18, 22, 29, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7197, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7197, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7198, 22, 53, 53, 32, 72, 32, 52, 26, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7199, 18, 47, 47, 27, 69, 22, 27, 36, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7199, 20, 51, 51, 30, 76, 24, 30, 40, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7200, 32, 75, 75, 45, 118, 35, 45, 61, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7200, 34, 107, 107, 75, 153, 54, 61, 37, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7201, 42, 130, 130, 91, 188, 66, 74, 45, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7201, 44, 135, 135, 95, 196, 69, 78, 47, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7202, 56, 164, 164, 137, 103, 142, 109, 69, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7202, 59, 178, 178, 126, 262, 91, 102, 61, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7202, 59, 196, 196, 167, 167, 97, 97, 85, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7203, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7203, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7204, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7204, 32, 104, 104, 80, 61, 48, 54, 45, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7205, 37, 101, 101, 88, 103, 51, 51, 44, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7205, 38, 103, 103, 90, 106, 52, 52, 45, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7205, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7206, 41, 110, 110, 97, 114, 56, 56, 48, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7206, 49, 155, 155, 140, 150, 76, 86, 66, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7206, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7207, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7207, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7207, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7207, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7207, 13, 38, 38, 30, 35, 17, 17, 14, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7208, 15, 33, 33, 26, 17, 20, 23, 38, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7208, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7208, 17, 45, 45, 38, 28, 28, 34, 51, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7209, 39, 105, 105, 93, 108, 54, 54, 46, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7209, 44, 162, 162, 135, 126, 60, 60, 56, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7209, 45, 134, 134, 61, 64, 75, 79, 52, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7210, 43, 98, 98, 59, 158, 46, 59, 80, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7210, 45, 102, 102, 93, 66, 66, 84, 129, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7211, 11, 32, 32, 18, 44, 15, 18, 24, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7212, 19, 73, 73, 38, 38, 36, 36, 28, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7212, 19, 73, 73, 38, 38, 36, 36, 28, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7212, 19, 73, 73, 38, 38, 36, 36, 28, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7213, 44, 113, 113, 73, 104, 126, 82, 82, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7213, 44, 135, 135, 95, 196, 69, 78, 47, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7214, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7215, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7215, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7215, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7216, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7216, 27, 76, 76, 66, 76, 39, 39, 33, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7216, 27, 84, 84, 57, 41, 33, 33, 33, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7217, 45, 152, 152, 138, 93, 79, 97, 70, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7218, 27, 87, 87, 68, 74, 39, 44, 49, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7218, 29, 81, 81, 70, 82, 41, 41, 35, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7218, 33, 107, 107, 96, 102, 53, 59, 46, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7219, 16, 42, 42, 25, 61, 20, 25, 33, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7219, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7219, 37, 119, 119, 107, 114, 59, 66, 51, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7219, 32, 101, 101, 80, 86, 45, 51, 58, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7220, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7220, 37, 101, 101, 88, 103, 51, 51, 44, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7220, 44, 140, 140, 126, 135, 69, 78, 60, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7220, 46, 104, 104, 62, 168, 49, 62, 85, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7221, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7221, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7221, 49, 155, 155, 140, 150, 76, 86, 66, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7221, 54, 164, 164, 116, 240, 83, 94, 56, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7222, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7222, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7223, 25, 64, 64, 54, 64, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7223, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7223, 25, 84, 84, 74, 79, 41, 46, 36, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7224, 39, 107, 107, 37, 86, 37, 86, 36, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7224, 42, 134, 134, 120, 129, 66, 74, 57, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7225, 30, 71, 71, 42, 111, 33, 42, 57, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7226, 38, 88, 88, 52, 140, 41, 52, 71, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7226, 35, 96, 96, 84, 98, 49, 49, 42, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7227, 41, 127, 127, 89, 183, 64, 73, 44, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7227, 37, 101, 101, 88, 103, 51, 51, 44, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7228, 56, 170, 170, 120, 249, 86, 97, 58, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7228, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7229, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7229, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7229, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7230, 4, 18, 18, 12, 14, 8, 8, 8, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7230, 6, 22, 22, 16, 19, 10, 10, 9, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7230, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7231, 27, 52, 52, 44, 28, 33, 39, 66, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7231, 27, 65, 65, 57, 41, 41, 52, 79, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7232, 25, 79, 79, 66, 66, 39, 34, 24, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7233, 38, 126, 126, 98, 83, 49, 56, 49, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7233, 38, 114, 114, 98, 98, 56, 49, 33, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7234, 33, 94, 94, 72, 43, 36, 46, 61, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7234, 33, 110, 110, 86, 72, 43, 49, 43, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7235, 33, 91, 91, 46, 45, 53, 45, 64, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7235, 33, 110, 110, 86, 72, 43, 49, 43, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7235, 33, 101, 101, 86, 86, 49, 43, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7236, 40, 120, 120, 107, 163, 67, 67, 59, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7237, 26, 81, 81, 68, 68, 40, 35, 24, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7237, 26, 89, 89, 68, 58, 35, 40, 35, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7238, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7239, 63, 181, 181, 118, 125, 75, 80, 68, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7239, 63, 221, 221, 153, 128, 103, 103, 90, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7239, 63, 171, 171, 96, 210, 122, 216, 78, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7240, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7240, 34, 103, 103, 81, 102, 61, 68, 47, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7241, 63, 231, 231, 168, 176, 113, 118, 86, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7241, 63, 177, 177, 122, 159, 71, 109, 134, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7241, 63, 139, 139, 84, 229, 65, 84, 115, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7242, 34, 93, 93, 47, 46, 54, 46, 66, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7242, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7243, 63, 146, 146, 128, 153, 65, 65, 52, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7243, 63, 164, 164, 147, 172, 84, 84, 71, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7243, 63, 196, 196, 178, 191, 96, 109, 84, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7244, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7244, 34, 114, 114, 88, 75, 44, 51, 44, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7245, 24, 76, 76, 64, 64, 37, 32, 23, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7246, 51, 181, 181, 125, 104, 84, 84, 74, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7246, 51, 140, 140, 79, 171, 99, 176, 64, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7247, 53, 156, 156, 135, 135, 77, 66, 45, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7247, 53, 156, 156, 140, 214, 87, 87, 77, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7248, 61, 153, 153, 105, 87, 81, 87, 76, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7248, 61, 166, 166, 94, 203, 118, 209, 75, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7249, 37, 112, 112, 96, 96, 55, 47, 33, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7249, 37, 141, 141, 118, 62, 55, 66, 83, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7250, 32, 75, 75, 45, 118, 35, 45, 61, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7251, 32, 75, 75, 45, 118, 35, 45, 61, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7251, 32, 98, 98, 83, 83, 48, 42, 29, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7252, 11, 33, 33, 24, 17, 16, 17, 22, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7253, 45, 98, 98, 61, 142, 61, 102, 48, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7253, 45, 138, 138, 97, 201, 70, 79, 48, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7254, 31, 89, 89, 68, 40, 34, 44, 58, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7254, 31, 86, 86, 62, 68, 31, 31, 25, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7255, 61, 174, 174, 96, 94, 120, 94, 166, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7255, 61, 190, 190, 173, 185, 94, 106, 81, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7256, 37, 123, 123, 96, 81, 47, 55, 47, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7256, 37, 112, 112, 88, 110, 66, 73, 51, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7257, 32, 85, 85, 61, 80, 42, 42, 35, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7257, 32, 72, 72, 45, 102, 45, 74, 35, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7258, 60, 139, 139, 122, 146, 62, 62, 50, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7258, 60, 157, 157, 140, 164, 80, 80, 68, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7258, 60, 187, 187, 170, 182, 92, 104, 80, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7259, 32, 98, 98, 83, 83, 48, 42, 29, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7260, 64, 184, 184, 120, 127, 76, 81, 69, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7260, 64, 186, 186, 149, 188, 111, 124, 85, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7260, 64, 235, 235, 171, 179, 115, 120, 88, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7261, 61, 153, 153, 112, 148, 75, 75, 63, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7261, 61, 153, 153, 130, 130, 94, 94, 87, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7262, 31, 86, 86, 62, 68, 31, 31, 25, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7262, 31, 98, 98, 65, 50, 31, 37, 37, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7263, 61, 164, 164, 117, 87, 69, 87, 69, 557); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7263, 61, 227, 227, 185, 124, 112, 100, 124, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7264, 61, 224, 224, 163, 170, 109, 114, 84, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7264, 61, 166, 166, 124, 161, 87, 124, 81, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7264, 61, 221, 221, 185, 173, 81, 81, 75, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7265, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7266, 40, 108, 108, 95, 111, 55, 55, 47, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7266, 41, 110, 110, 97, 114, 56, 56, 48, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7266, 42, 109, 109, 62, 146, 62, 146, 62, 310); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7267, 48, 142, 142, 123, 123, 70, 60, 41, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7267, 48, 147, 147, 103, 214, 75, 84, 51, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7268, 21, 72, 72, 48, 52, 25, 25, 23, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7268, 21, 51, 51, 31, 69, 31, 50, 25, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7268, 21, 53, 53, 31, 79, 25, 31, 41, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7269, 44, 122, 122, 69, 148, 86, 152, 56, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7270, 56, 164, 164, 120, 181, 120, 103, 47, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7270, 56, 175, 175, 159, 170, 86, 97, 75, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7271, 24, 69, 69, 49, 54, 25, 25, 20, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7272, 42, 151, 151, 95, 129, 57, 74, 66, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7272, 42, 155, 155, 129, 120, 57, 57, 53, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7273, 22, 61, 61, 44, 28, 28, 28, 41, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7273, 23, 64, 64, 43, 52, 29, 29, 38, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7273, 24, 83, 83, 40, 50, 37, 50, 51, 607); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7274, 50, 187, 187, 89, 107, 104, 122, 55, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7275, 44, 113, 113, 82, 64, 64, 64, 82, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7276, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7276, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7277, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7277, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7278, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7279, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7280, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7281, 22, 57, 57, 48, 56, 26, 26, 21, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7281, 20, 53, 53, 44, 52, 24, 24, 20, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7282, 16, 44, 44, 36, 42, 20, 20, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7282, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7283, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7283, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7283, 17, 46, 46, 38, 45, 21, 21, 17, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7284, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7284, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7284, 24, 61, 61, 52, 61, 28, 28, 23, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7285, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7285, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7285, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7286, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7286, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7286, 42, 134, 134, 120, 129, 66, 74, 57, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7287, 48, 152, 152, 137, 147, 75, 84, 65, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7287, 48, 152, 152, 137, 147, 75, 84, 65, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7287, 48, 152, 152, 137, 147, 75, 84, 65, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7288, 18, 54, 54, 38, 42, 20, 20, 16, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7288, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7289, 19, 60, 60, 47, 33, 49, 44, 47, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7290, 27, 84, 84, 71, 71, 41, 36, 25, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7290, 28, 70, 70, 59, 71, 31, 31, 26, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7291, 44, 135, 135, 144, 78, 119, 78, 117, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7291, 44, 155, 155, 166, 73, 78, 64, 71, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7292, 55, 178, 178, 173, 167, 90, 112, 52, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7293, 56, 125, 125, 114, 81, 81, 103, 159, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7294, 20, 69, 69, 46, 50, 24, 24, 22, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7294, 15, 72, 72, 31, 23, 35, 25, 23, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7294, 16, 44, 44, 21, 20, 49, 33, 44, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7294, 16, 54, 54, 36, 26, 21, 21, 21, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7294, 15, 46, 46, 29, 38, 38, 23, 35, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7294, 18, 45, 45, 24, 22, 47, 24, 40, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7295, 15, 54, 54, 35, 33, 38, 34, 35, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7295, 20, 75, 75, 50, 46, 62, 38, 34, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7295, 20, 61, 61, 38, 36, 64, 42, 56, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7295, 15, 57, 57, 26, 32, 28, 32, 19, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7295, 20, 59, 59, 44, 36, 32, 40, 51, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7296, 51, 150, 150, 104, 74, 59, 59, 59, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7296, 53, 119, 119, 71, 193, 55, 71, 98, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7296, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7296, 51, 150, 150, 125, 140, 53, 89, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7296, 51, 160, 160, 110, 120, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7296, 53, 177, 177, 87, 87, 66, 66, 66, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7297, 51, 155, 155, 125, 135, 69, 79, 89, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7297, 51, 155, 155, 99, 79, 130, 110, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7297, 51, 140, 140, 140, 130, 89, 94, 104, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7297, 51, 140, 140, 69, 74, 115, 104, 94, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7297, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7297, 51, 130, 130, 130, 103, 59, 135, 100, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7298, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7298, 55, 183, 183, 156, 156, 90, 90, 79, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7298, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7298, 50, 113, 113, 63, 123, 113, 78, 58, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7298, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7298, 55, 167, 167, 118, 244, 85, 96, 57, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7299, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7299, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7299, 54, 186, 186, 105, 110, 132, 143, 56, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7299, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7299, 51, 181, 181, 74, 104, 84, 104, 74, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7299, 54, 153, 153, 132, 100, 110, 110, 137, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7300, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7300, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7300, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7300, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7300, 50, 142, 142, 101, 75, 101, 75, 104, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7302, 50, 128, 128, 58, 78, 48, 48, 38, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7302, 50, 123, 123, 48, 73, 48, 48, 58, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7302, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7302, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7302, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7302, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7304, 26, 60, 60, 29, 36, 29, 36, 50, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7304, 26, 81, 81, 55, 67, 55, 67, 35, 574); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7305, 58, 173, 173, 114, 112, 119, 141, 141, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7305, 59, 202, 202, 138, 126, 173, 102, 91, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7305, 58, 175, 175, 141, 153, 78, 89, 101, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7305, 59, 184, 184, 167, 179, 91, 102, 79, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7306, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7306, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7307, 42, 146, 146, 118, 87, 74, 78, 97, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7307, 42, 125, 125, 95, 112, 70, 83, 99, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7308, 21, 55, 55, 23, 37, 28, 33, 40, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7308, 21, 57, 57, 27, 33, 41, 33, 25, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7309, 25, 64, 64, 41, 63, 34, 53, 37, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7310, 33, 94, 94, 82, 75, 53, 62, 90, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7311, 41, 114, 114, 101, 92, 64, 76, 111, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7312, 67, 161, 161, 55, 96, 109, 189, 96, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7312, 67, 181, 181, 163, 148, 102, 121, 179, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7313, 40, 132, 132, 107, 91, 55, 91, 83, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7313, 40, 120, 120, 103, 103, 59, 51, 35, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7314, 67, 215, 215, 176, 149, 89, 149, 136, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7314, 67, 215, 215, 210, 203, 109, 136, 62, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7315, 67, 194, 194, 109, 112, 136, 139, 109, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7315, 67, 228, 228, 176, 156, 82, 156, 102, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7316, 26, 66, 66, 42, 65, 35, 55, 38, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7317, 34, 97, 97, 85, 77, 54, 64, 93, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7318, 48, 132, 132, 118, 107, 75, 88, 129, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7319, 63, 152, 152, 52, 90, 103, 178, 90, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7319, 63, 171, 171, 153, 139, 96, 114, 168, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7320, 42, 104, 104, 73, 51, 74, 66, 99, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7320, 42, 121, 121, 89, 68, 99, 91, 108, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7320, 42, 104, 104, 73, 51, 74, 66, 99, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7321, 25, 76, 76, 54, 46, 31, 46, 44, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7321, 25, 71, 71, 51, 56, 26, 26, 21, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7322, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7322, 33, 101, 101, 86, 86, 49, 43, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7323, 47, 153, 153, 125, 106, 64, 106, 97, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7323, 47, 139, 139, 120, 120, 68, 59, 40, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7324, 63, 202, 202, 166, 141, 84, 141, 128, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7324, 63, 202, 202, 197, 191, 103, 128, 59, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7325, 25, 71, 71, 45, 59, 39, 54, 35, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7325, 25, 76, 76, 54, 46, 31, 46, 44, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7326, 33, 104, 104, 84, 69, 63, 69, 77, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7326, 33, 97, 97, 69, 59, 39, 59, 56, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7327, 47, 144, 144, 118, 97, 87, 97, 108, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7327, 47, 153, 153, 125, 106, 64, 106, 97, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7328, 63, 183, 183, 103, 105, 128, 131, 103, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7328, 63, 215, 215, 166, 147, 78, 147, 96, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7329, 42, 104, 104, 83, 51, 78, 66, 89, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7329, 42, 121, 121, 99, 68, 104, 91, 98, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7329, 42, 104, 104, 83, 51, 78, 66, 89, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7330, 39, 109, 109, 77, 97, 61, 81, 58, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7330, 40, 104, 104, 87, 87, 63, 63, 59, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7330, 41, 114, 114, 93, 134, 60, 60, 52, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7331, 53, 135, 135, 91, 77, 71, 77, 67, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7331, 53, 108, 108, 61, 98, 124, 82, 71, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7331, 54, 164, 164, 65, 65, 84, 84, 96, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7332, 53, 140, 140, 124, 145, 71, 71, 61, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7332, 54, 159, 159, 115, 100, 94, 100, 79, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7333, 60, 175, 175, 110, 74, 98, 74, 98, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7333, 61, 213, 213, 109, 128, 114, 133, 89, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7333, 60, 179, 179, 164, 98, 98, 98, 134, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7334, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7334, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7334, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7335, 38, 95, 95, 69, 64, 45, 56, 66, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7335, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7335, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7336, 38, 95, 95, 69, 64, 45, 56, 66, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7336, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7336, 37, 92, 92, 77, 66, 55, 44, 44, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7337, 35, 92, 92, 52, 45, 38, 38, 52, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7337, 36, 87, 87, 46, 57, 46, 68, 57, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7337, 37, 97, 97, 65, 55, 51, 55, 48, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7338, 35, 99, 99, 45, 59, 45, 59, 42, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7338, 38, 149, 149, 52, 33, 52, 37, 33, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7338, 37, 104, 104, 77, 55, 55, 55, 47, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7338, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7339, 53, 145, 145, 66, 87, 66, 87, 61, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7339, 52, 200, 200, 70, 44, 70, 49, 44, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7339, 53, 135, 135, 114, 114, 82, 82, 77, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7339, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7340, 53, 145, 145, 66, 87, 66, 87, 61, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7340, 52, 200, 200, 70, 44, 70, 49, 44, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7340, 53, 135, 135, 114, 114, 82, 82, 77, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7340, 51, 171, 171, 145, 145, 84, 84, 74, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7341, 33, 77, 77, 59, 39, 59, 39, 59, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7341, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7342, 39, 90, 90, 69, 46, 69, 46, 69, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7342, 39, 82, 82, 46, 73, 93, 61, 54, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7343, 66, 165, 165, 140, 140, 101, 101, 94, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7343, 66, 178, 178, 140, 84, 140, 84, 148, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7343, 67, 235, 235, 149, 203, 89, 116, 102, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7344, 30, 80, 80, 44, 41, 43, 40, 51, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7344, 31, 83, 83, 62, 68, 28, 34, 40, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7345, 56, 153, 153, 81, 81, 92, 103, 81, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7345, 55, 156, 156, 129, 107, 85, 85, 118, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7345, 55, 123, 123, 95, 118, 106, 85, 60, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7346, 32, 77, 77, 35, 42, 35, 42, 54, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7346, 32, 77, 77, 35, 42, 35, 42, 54, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7346, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7347, 39, 92, 92, 42, 51, 42, 51, 65, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7347, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7347, 39, 123, 123, 73, 66, 58, 66, 97, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7348, 51, 140, 140, 64, 84, 64, 84, 59, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7348, 51, 125, 125, 74, 79, 99, 89, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7349, 62, 168, 168, 132, 101, 89, 89, 182, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7349, 63, 183, 183, 134, 115, 103, 115, 90, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7349, 62, 172, 172, 176, 132, 138, 95, 95, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7350, 38, 95, 95, 94, 52, 52, 52, 26, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7350, 36, 94, 94, 52, 48, 51, 47, 61, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7350, 38, 95, 95, 94, 52, 52, 52, 26, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7350, 36, 106, 106, 47, 73, 61, 80, 34, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7351, 31, 70, 70, 40, 59, 59, 31, 53, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7351, 32, 82, 82, 48, 51, 64, 58, 35, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7351, 32, 85, 85, 64, 70, 29, 35, 42, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7352, 38, 103, 103, 68, 90, 90, 52, 83, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7352, 39, 109, 109, 69, 73, 85, 77, 50, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7352, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7353, 31, 95, 95, 40, 47, 50, 47, 31, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7353, 32, 85, 85, 48, 48, 48, 48, 48, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7354, 39, 133, 133, 65, 73, 77, 73, 54, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7354, 40, 104, 104, 59, 59, 59, 59, 59, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7355, 32, 79, 79, 35, 35, 42, 48, 35, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7355, 33, 97, 97, 50, 32, 50, 32, 35, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7355, 32, 91, 91, 54, 54, 38, 38, 35, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7356, 37, 104, 104, 55, 55, 62, 70, 55, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7356, 38, 125, 125, 72, 51, 72, 51, 55, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7356, 38, 107, 107, 64, 64, 45, 45, 41, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7357, 36, 98, 98, 86, 100, 50, 50, 43, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7357, 37, 115, 115, 92, 99, 51, 59, 66, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7357, 37, 97, 97, 70, 55, 55, 55, 70, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7358, 35, 92, 92, 49, 49, 42, 42, 52, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7358, 34, 86, 86, 51, 54, 68, 61, 37, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7358, 35, 138, 138, 49, 31, 49, 35, 31, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7358, 35, 88, 88, 70, 42, 61, 40, 49, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7359, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7359, 31, 76, 76, 34, 34, 40, 47, 34, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7359, 32, 79, 79, 51, 67, 38, 54, 35, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7359, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7360, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7360, 38, 92, 92, 41, 41, 49, 56, 41, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7360, 37, 104, 104, 73, 92, 59, 77, 55, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7360, 37, 104, 104, 55, 55, 62, 70, 55, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7361, 36, 119, 119, 69, 48, 69, 48, 52, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7361, 38, 92, 92, 41, 41, 49, 56, 41, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7361, 39, 109, 109, 77, 97, 61, 81, 58, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7361, 37, 104, 104, 55, 55, 62, 70, 55, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7362, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7362, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7362, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7362, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7362, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7362, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7363, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7363, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7363, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7363, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7363, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7363, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7364, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7364, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7364, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7364, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7364, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7364, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7365, 100, 256, 256, 231, 151, 111, 191, 271, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7365, 100, 268, 268, 221, 131, 141, 141, 361, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7365, 100, 306, 306, 311, 301, 231, 221, 181, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7365, 100, 326, 326, 281, 191, 161, 161, 131, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7365, 100, 326, 326, 301, 191, 191, 191, 151, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7365, 100, 336, 336, 311, 201, 261, 201, 241, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7366, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7366, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7366, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7366, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7366, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7366, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7367, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7367, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7367, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7367, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7367, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7367, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7368, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7368, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7368, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7368, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7368, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7368, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7369, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7369, 50, 123, 123, 83, 63, 93, 73, 68, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7369, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7369, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7369, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7369, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7370, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7370, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7370, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7370, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7370, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7370, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7371, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7371, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7371, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7371, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7371, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7371, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7372, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7372, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7372, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7372, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7372, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7372, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7373, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7373, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7373, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7373, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7373, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7373, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7374, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7374, 100, 256, 256, 121, 211, 201, 251, 121, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7374, 100, 276, 276, 191, 251, 111, 171, 211, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7374, 100, 286, 286, 271, 161, 271, 161, 151, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7374, 100, 346, 346, 261, 221, 211, 221, 161, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7374, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7375, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7375, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7375, 50, 138, 138, 83, 83, 58, 58, 53, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7375, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7375, 50, 122, 122, 98, 58, 86, 56, 68, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7375, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7376, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7376, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7376, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7376, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7376, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7376, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7377, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7377, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7377, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7377, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7377, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7377, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7378, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7378, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7378, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7378, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7378, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7378, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7379, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7379, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7379, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7379, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7379, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7379, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7380, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7380, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7380, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7380, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7380, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7380, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7381, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7381, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7381, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7381, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7381, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7381, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7382, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7382, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7382, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7382, 50, 158, 158, 98, 173, 98, 173, 73, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7382, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7382, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7383, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7383, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7383, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7383, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7383, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7383, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7384, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7384, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7385, 12, 38, 38, 24, 24, 19, 20, 19, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7385, 14, 45, 45, 32, 24, 21, 21, 18, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7385, 14, 34, 34, 14, 15, 12, 25, 32, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7386, 50, 138, 138, 118, 103, 83, 103, 53, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7386, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7386, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7386, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7386, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7386, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7387, 30, 89, 89, 69, 39, 42, 63, 60, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7387, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7388, 20, 59, 59, 30, 30, 22, 22, 18, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7388, 20, 53, 53, 20, 24, 28, 44, 34, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7388, 20, 59, 59, 28, 28, 38, 30, 26, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7389, 35, 103, 103, 80, 101, 77, 66, 59, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7389, 35, 110, 110, 80, 115, 59, 59, 45, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7389, 36, 195, 195, 41, 59, 41, 59, 41, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7389, 37, 104, 104, 99, 70, 62, 62, 92, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7389, 34, 100, 100, 71, 112, 44, 64, 64, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7390, 34, 93, 93, 81, 54, 41, 68, 95, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7390, 33, 101, 101, 69, 59, 76, 59, 72, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7390, 33, 104, 104, 69, 63, 59, 66, 76, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7390, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7391, 42, 117, 117, 95, 66, 95, 87, 112, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7391, 42, 125, 125, 78, 53, 70, 53, 70, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7392, 20, 69, 69, 46, 50, 24, 24, 22, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7392, 20, 53, 53, 24, 24, 34, 24, 46, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7392, 20, 57, 57, 36, 30, 52, 44, 38, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7393, 17, 46, 46, 21, 25, 21, 25, 31, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7393, 17, 54, 54, 28, 18, 28, 18, 20, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7393, 17, 51, 51, 34, 29, 24, 29, 40, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7393, 17, 67, 67, 34, 34, 33, 33, 26, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7394, 23, 77, 77, 45, 41, 36, 41, 59, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7394, 23, 79, 79, 45, 33, 45, 33, 35, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7394, 23, 66, 66, 45, 38, 31, 38, 52, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7394, 17, 67, 67, 34, 34, 33, 33, 26, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7395, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7395, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7395, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7395, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7396, 20, 65, 65, 29, 33, 29, 33, 28, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7396, 20, 51, 51, 46, 30, 26, 26, 42, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7396, 20, 59, 59, 34, 46, 38, 46, 26, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7396, 20, 59, 59, 40, 34, 28, 34, 46, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7397, 50, 138, 138, 85, 73, 85, 83, 63, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7397, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7397, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7397, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7397, 50, 136, 136, 93, 68, 63, 68, 65, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7397, 50, 123, 123, 53, 73, 88, 73, 68, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7399, 15, 40, 40, 26, 22, 25, 25, 37, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7399, 15, 51, 51, 23, 24, 28, 29, 20, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7400, 6, 26, 26, 12, 12, 14, 14, 11, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7401, 21, 67, 67, 31, 32, 37, 39, 27, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7401, 21, 67, 67, 31, 32, 37, 39, 27, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7402, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7402, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7402, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7403, 43, 128, 128, 59, 61, 72, 76, 50, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7403, 43, 128, 128, 59, 61, 72, 76, 50, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7403, 43, 128, 128, 59, 61, 72, 76, 50, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7403, 43, 128, 128, 59, 61, 72, 76, 50, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7404, 48, 142, 142, 65, 68, 79, 84, 55, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7404, 48, 142, 142, 65, 68, 79, 84, 55, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7404, 48, 142, 142, 65, 68, 79, 84, 55, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7404, 48, 142, 142, 65, 68, 79, 84, 55, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7404, 48, 142, 142, 65, 68, 79, 84, 55, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7405, 53, 156, 156, 71, 74, 87, 92, 61, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7405, 53, 156, 156, 71, 74, 87, 92, 61, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7405, 53, 156, 156, 71, 74, 87, 92, 61, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7405, 53, 156, 156, 71, 74, 87, 92, 61, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7405, 53, 156, 156, 71, 74, 87, 92, 61, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7405, 53, 156, 156, 71, 74, 87, 92, 61, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7406, 23, 64, 64, 37, 35, 37, 35, 42, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7406, 23, 64, 64, 37, 35, 37, 35, 42, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7406, 23, 64, 64, 37, 35, 37, 35, 42, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7407, 31, 83, 83, 49, 45, 49, 45, 55, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7407, 31, 83, 83, 49, 45, 49, 45, 55, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7407, 31, 83, 83, 49, 45, 49, 45, 55, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7408, 39, 121, 121, 95, 68, 95, 68, 97, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7408, 39, 121, 121, 95, 68, 95, 68, 97, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7408, 39, 121, 121, 95, 68, 95, 68, 97, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7409, 66, 198, 198, 158, 111, 158, 111, 162, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7409, 66, 198, 198, 158, 111, 158, 111, 162, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7409, 66, 198, 198, 158, 111, 158, 111, 162, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7410, 40, 104, 104, 77, 47, 47, 47, 71, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7410, 40, 128, 128, 111, 83, 71, 63, 93, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7411, 67, 208, 208, 183, 136, 116, 102, 153, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7411, 67, 228, 228, 185, 136, 116, 122, 152, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7412, 67, 168, 168, 96, 156, 82, 96, 76, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7412, 67, 188, 188, 196, 163, 109, 122, 122, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7413, 24, 66, 66, 39, 36, 39, 36, 44, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7413, 24, 66, 66, 39, 36, 39, 36, 44, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7413, 24, 66, 66, 39, 36, 39, 36, 44, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7414, 32, 85, 85, 50, 47, 50, 47, 57, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7414, 32, 85, 85, 50, 47, 50, 47, 57, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7414, 32, 85, 85, 50, 47, 50, 47, 57, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7415, 46, 141, 141, 111, 79, 111, 79, 114, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7415, 46, 141, 141, 111, 79, 111, 79, 114, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7415, 46, 141, 141, 111, 79, 111, 79, 114, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7416, 62, 187, 187, 148, 105, 148, 105, 152, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7416, 62, 187, 187, 148, 105, 148, 105, 152, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7416, 62, 187, 187, 148, 105, 148, 105, 152, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7417, 25, 75, 75, 52, 45, 39, 35, 46, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7417, 25, 69, 69, 50, 31, 31, 31, 46, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7418, 33, 87, 87, 64, 39, 39, 39, 59, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7418, 33, 107, 107, 92, 69, 59, 53, 78, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7419, 47, 130, 130, 99, 64, 64, 64, 91, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7419, 47, 149, 149, 130, 97, 83, 73, 109, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7420, 63, 196, 196, 172, 128, 109, 96, 144, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7420, 63, 215, 215, 175, 128, 109, 115, 143, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7421, 26, 84, 84, 55, 42, 27, 32, 32, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7422, 34, 114, 114, 88, 75, 44, 51, 44, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7423, 47, 153, 153, 120, 101, 59, 68, 59, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7423, 47, 116, 116, 101, 87, 59, 59, 78, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7424, 63, 158, 158, 90, 147, 78, 90, 71, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7424, 63, 177, 177, 185, 153, 103, 115, 115, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7425, 19, 45, 45, 25, 38, 47, 32, 28, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7425, 19, 60, 60, 31, 20, 31, 20, 22, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7426, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7426, 27, 92, 92, 53, 37, 53, 37, 40, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7427, 30, 80, 80, 51, 72, 87, 57, 57, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7427, 30, 101, 101, 58, 41, 58, 41, 44, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7428, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7428, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7429, 36, 94, 94, 61, 86, 104, 68, 68, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7429, 36, 119, 119, 69, 48, 69, 48, 52, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7430, 39, 102, 102, 65, 93, 112, 73, 73, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7430, 39, 144, 144, 90, 68, 90, 75, 72, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7431, 17, 41, 41, 23, 34, 43, 29, 26, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7431, 17, 54, 54, 28, 18, 28, 18, 20, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7432, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7432, 27, 92, 92, 53, 37, 53, 37, 40, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7433, 30, 80, 80, 51, 72, 87, 57, 57, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7433, 30, 101, 101, 58, 41, 58, 41, 44, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7434, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7434, 33, 110, 110, 63, 45, 63, 45, 48, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7435, 36, 94, 94, 61, 86, 104, 68, 68, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7435, 36, 119, 119, 69, 48, 69, 48, 52, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7436, 39, 102, 102, 65, 93, 112, 73, 73, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7436, 39, 144, 144, 90, 68, 90, 75, 72, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7437, 17, 51, 51, 26, 26, 19, 19, 16, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7437, 17, 56, 56, 17, 28, 17, 28, 24, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7438, 6, 21, 21, 11, 15, 18, 13, 12, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7438, 6, 21, 21, 10, 10, 12, 11, 11, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7439, 23, 52, 52, 29, 45, 56, 38, 33, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7439, 23, 54, 54, 24, 24, 33, 29, 31, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7440, 35, 75, 75, 42, 66, 84, 56, 49, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7440, 35, 84, 84, 42, 42, 63, 56, 52, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7441, 47, 120, 120, 78, 111, 134, 87, 87, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7441, 47, 137, 137, 83, 83, 139, 130, 97, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7442, 53, 156, 156, 98, 145, 161, 119, 87, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7442, 53, 154, 154, 92, 92, 156, 145, 108, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7443, 59, 172, 172, 108, 161, 179, 132, 97, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7443, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7444, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7444, 20, 62, 62, 32, 21, 32, 21, 23, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7445, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7445, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7446, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7446, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7447, 41, 106, 106, 68, 97, 118, 77, 77, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7447, 41, 134, 134, 77, 55, 77, 55, 59, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7448, 45, 116, 116, 75, 106, 129, 84, 84, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7448, 45, 164, 164, 103, 77, 103, 86, 82, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7449, 51, 150, 150, 94, 140, 155, 115, 84, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7449, 51, 185, 185, 116, 87, 116, 97, 92, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7450, 64, 148, 148, 111, 149, 104, 85, 72, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7450, 64, 180, 180, 143, 181, 136, 117, 104, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7451, 20, 57, 57, 32, 37, 28, 37, 38, 609); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7451, 20, 59, 59, 32, 28, 28, 28, 42, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7452, 31, 95, 95, 28, 47, 28, 47, 40, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7452, 31, 98, 98, 75, 53, 56, 53, 87, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7453, 61, 141, 141, 106, 142, 100, 81, 69, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7453, 61, 172, 172, 136, 173, 130, 112, 100, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7454, 16, 46, 46, 29, 25, 18, 25, 28, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7454, 16, 47, 47, 26, 30, 23, 30, 31, 609); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7455, 6, 23, 23, 14, 12, 10, 12, 13, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7455, 6, 24, 24, 11, 11, 14, 12, 11, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7456, 26, 71, 71, 40, 46, 35, 46, 48, 609); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7456, 27, 73, 73, 41, 48, 36, 48, 49, 609); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7457, 27, 103, 103, 71, 55, 49, 68, 41, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7458, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7458, 50, 228, 228, 103, 67, 113, 77, 103, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7458, 50, 158, 158, 143, 102, 118, 102, 93, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7458, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7458, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7459, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7459, 50, 143, 143, 88, 83, 133, 118, 153, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7459, 50, 143, 143, 83, 133, 153, 118, 88, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7459, 50, 143, 143, 133, 153, 83, 88, 118, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7459, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7459, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7461, 19, 58, 58, 44, 30, 34, 30, 34, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7461, 21, 61, 61, 44, 33, 29, 29, 46, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7461, 20, 57, 57, 46, 34, 38, 38, 48, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7462, 36, 102, 102, 79, 53, 61, 53, 61, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7462, 36, 98, 98, 71, 53, 46, 46, 75, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7462, 39, 113, 113, 97, 73, 81, 81, 100, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7463, 56, 153, 153, 120, 80, 92, 80, 92, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7463, 57, 184, 184, 162, 105, 82, 93, 139, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7463, 58, 164, 164, 141, 107, 118, 118, 147, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7464, 19, 56, 56, 40, 30, 27, 27, 42, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7465, 19, 58, 58, 44, 30, 34, 30, 34, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7466, 23, 66, 66, 47, 36, 31, 31, 50, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7467, 21, 59, 59, 48, 35, 39, 39, 50, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7468, 22, 66, 66, 50, 34, 39, 34, 39, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7468, 24, 71, 71, 54, 37, 42, 37, 42, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7469, 44, 122, 122, 95, 63, 73, 63, 73, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7469, 44, 122, 122, 95, 63, 73, 63, 73, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7470, 59, 184, 184, 167, 119, 138, 119, 108, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7470, 59, 184, 184, 167, 119, 138, 119, 108, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7471, 23, 66, 66, 47, 36, 31, 31, 50, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7472, 23, 68, 68, 52, 35, 40, 35, 40, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7473, 25, 71, 71, 51, 39, 34, 34, 54, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7474, 24, 59, 59, 40, 32, 37, 37, 56, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7475, 29, 72, 72, 35, 32, 85, 56, 76, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7476, 38, 126, 126, 74, 71, 74, 106, 69, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7477, 34, 97, 97, 49, 47, 46, 78, 45, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7477, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7478, 31, 89, 89, 45, 44, 42, 71, 42, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7478, 31, 89, 89, 45, 44, 42, 71, 42, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7478, 31, 89, 89, 45, 44, 42, 71, 42, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7478, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7479, 34, 97, 97, 49, 47, 46, 78, 45, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7479, 34, 114, 114, 66, 64, 66, 95, 62, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7480, 41, 114, 114, 59, 56, 55, 93, 54, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7480, 41, 135, 135, 79, 77, 79, 114, 74, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7480, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7480, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7482, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7482, 29, 87, 87, 70, 48, 73, 64, 69, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7483, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7483, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7483, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7483, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7484, 2, 14, 14, 6, 7, 7, 7, 9, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7484, 6, 22, 22, 10, 13, 13, 13, 19, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7484, 10, 31, 31, 14, 18, 19, 19, 28, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7484, 14, 40, 40, 18, 24, 25, 25, 38, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7485, 6, 22, 22, 10, 13, 13, 13, 19, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7485, 10, 31, 31, 14, 18, 19, 19, 28, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7485, 14, 40, 40, 18, 24, 25, 25, 38, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7485, 18, 48, 48, 22, 29, 31, 31, 47, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7486, 18, 48, 48, 22, 29, 31, 31, 47, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7486, 22, 57, 57, 26, 34, 37, 37, 56, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7486, 26, 66, 66, 29, 40, 42, 42, 66, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7486, 30, 86, 86, 45, 57, 63, 63, 99, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7487, 29, 72, 72, 35, 32, 85, 56, 76, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7488, 46, 109, 109, 49, 67, 72, 72, 113, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7488, 46, 109, 109, 49, 67, 72, 72, 113, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7488, 47, 130, 130, 68, 87, 97, 97, 153, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7490, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7490, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7491, 38, 126, 126, 74, 71, 74, 106, 69, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7492, 31, 89, 89, 45, 44, 42, 71, 42, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7492, 31, 89, 89, 45, 44, 42, 71, 42, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7492, 31, 89, 89, 45, 44, 42, 71, 42, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7492, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7493, 47, 111, 111, 50, 68, 73, 73, 115, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7493, 47, 111, 111, 50, 68, 73, 73, 115, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7493, 47, 120, 120, 83, 106, 54, 54, 36, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7493, 47, 120, 120, 83, 106, 54, 54, 36, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7494, 52, 143, 143, 75, 96, 106, 106, 169, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7494, 52, 143, 143, 75, 96, 106, 106, 169, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7494, 52, 132, 132, 91, 117, 60, 60, 39, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7494, 52, 132, 132, 91, 117, 60, 60, 39, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7495, 34, 97, 97, 49, 47, 46, 78, 45, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7495, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7496, 41, 114, 114, 59, 56, 55, 93, 54, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7496, 41, 135, 135, 79, 77, 79, 114, 74, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7496, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7496, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7497, 34, 97, 97, 49, 47, 46, 78, 45, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7497, 34, 114, 114, 66, 64, 66, 95, 62, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7498, 37, 119, 119, 92, 70, 55, 62, 51, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7498, 37, 108, 108, 88, 60, 92, 81, 87, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7499, 43, 120, 120, 63, 80, 89, 89, 140, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7499, 43, 120, 120, 63, 80, 89, 89, 140, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7499, 43, 120, 120, 63, 80, 89, 89, 140, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7500, 2, 14, 14, 6, 7, 7, 7, 9, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7500, 6, 22, 22, 10, 13, 13, 13, 19, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7500, 10, 31, 31, 14, 18, 19, 19, 28, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7500, 14, 40, 40, 18, 24, 25, 25, 38, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7501, 22, 57, 57, 26, 34, 37, 37, 56, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7501, 26, 66, 66, 29, 40, 42, 42, 66, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7501, 28, 70, 70, 31, 43, 45, 45, 71, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7501, 34, 83, 83, 37, 51, 54, 54, 85, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7502, 34, 83, 83, 37, 51, 54, 54, 85, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7502, 36, 87, 87, 39, 53, 57, 57, 89, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7502, 38, 92, 92, 41, 56, 60, 60, 94, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7502, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7503, 40, 96, 96, 43, 59, 63, 63, 99, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7503, 40, 96, 96, 43, 59, 63, 63, 99, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7503, 46, 127, 127, 67, 85, 95, 95, 150, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7503, 51, 140, 140, 74, 94, 104, 104, 166, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7504, 50, 138, 138, 71, 68, 66, 113, 65, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7504, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7504, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7504, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7504, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7504, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7505, 52, 132, 132, 148, 78, 60, 138, 114, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7505, 52, 132, 132, 132, 105, 60, 138, 102, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7505, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7505, 51, 145, 145, 89, 89, 74, 74, 115, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7505, 52, 106, 106, 44, 39, 132, 80, 117, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7505, 51, 109, 109, 59, 53, 125, 59, 104, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7506, 51, 140, 140, 72, 69, 67, 115, 66, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7506, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7506, 51, 145, 145, 89, 89, 74, 74, 115, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7506, 51, 130, 130, 145, 77, 59, 135, 112, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7506, 51, 176, 176, 94, 97, 120, 115, 84, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7506, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7507, 53, 113, 113, 61, 55, 130, 61, 108, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7507, 51, 125, 125, 74, 69, 140, 79, 120, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7507, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7507, 52, 143, 143, 73, 70, 68, 117, 67, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7507, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7507, 52, 148, 148, 75, 60, 143, 122, 122, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7508, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7508, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7508, 54, 153, 153, 137, 89, 89, 100, 127, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7508, 54, 169, 169, 154, 164, 83, 94, 73, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7508, 51, 334, 334, 28, 28, 59, 130, 74, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7509, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7509, 51, 334, 334, 28, 28, 59, 130, 74, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7509, 51, 171, 171, 155, 104, 89, 110, 79, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7509, 53, 150, 150, 135, 87, 87, 98, 124, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7509, 52, 163, 163, 148, 158, 80, 91, 70, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7509, 52, 174, 174, 122, 122, 96, 117, 96, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7510, 51, 166, 166, 97, 94, 97, 140, 91, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7510, 51, 140, 140, 89, 84, 155, 99, 135, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7510, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7510, 54, 180, 180, 164, 110, 94, 116, 83, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7510, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7510, 53, 251, 251, 140, 92, 92, 140, 55, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7511, 51, 135, 135, 74, 69, 161, 120, 145, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7511, 53, 124, 124, 61, 55, 151, 98, 135, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7511, 51, 145, 145, 108, 81, 120, 110, 130, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7511, 51, 145, 145, 120, 81, 125, 110, 118, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7511, 51, 176, 176, 94, 97, 120, 115, 84, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7512, 50, 138, 138, 71, 68, 66, 113, 65, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7512, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7512, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7512, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7512, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7513, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7513, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7513, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7513, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7513, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7514, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7514, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7514, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7514, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7514, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7514, 55, 194, 194, 172, 145, 129, 134, 91, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7515, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7515, 50, 178, 178, 83, 93, 108, 128, 83, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7515, 50, 186, 186, 153, 118, 103, 108, 125, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7515, 50, 138, 138, 78, 113, 168, 113, 103, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7515, 50, 168, 168, 115, 98, 115, 108, 83, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7515, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7516, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7516, 21, 67, 67, 46, 33, 27, 27, 27, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7517, 23, 59, 59, 31, 31, 45, 31, 22, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7517, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7518, 23, 59, 59, 31, 31, 45, 31, 22, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7518, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7519, 19, 51, 51, 27, 27, 38, 27, 19, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7519, 19, 51, 51, 23, 23, 32, 23, 44, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7520, 26, 66, 66, 35, 35, 50, 35, 24, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7520, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7521, 29, 72, 72, 38, 38, 56, 38, 27, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7521, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7522, 32, 79, 79, 42, 42, 61, 42, 29, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7522, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7523, 35, 92, 92, 52, 101, 73, 73, 38, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7523, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7524, 22, 57, 57, 30, 30, 43, 30, 21, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7524, 22, 57, 57, 30, 30, 43, 30, 21, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7524, 22, 66, 66, 39, 30, 41, 32, 28, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7525, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7526, 18, 48, 48, 25, 25, 36, 25, 18, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7526, 18, 48, 48, 22, 22, 31, 22, 42, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7527, 26, 66, 66, 35, 35, 50, 35, 24, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7527, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7528, 29, 72, 72, 38, 38, 56, 38, 27, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7528, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7529, 32, 79, 79, 42, 42, 61, 42, 29, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7529, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7530, 35, 92, 92, 52, 101, 73, 73, 38, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7530, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7531, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7531, 18, 48, 48, 25, 25, 36, 25, 18, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7532, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7533, 25, 64, 64, 34, 34, 49, 34, 24, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7533, 25, 74, 74, 44, 34, 46, 36, 31, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7534, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7535, 23, 59, 59, 31, 31, 45, 31, 22, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7536, 22, 57, 57, 30, 30, 43, 30, 21, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7536, 22, 57, 57, 30, 30, 43, 30, 21, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7537, 23, 59, 59, 31, 31, 45, 31, 22, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7538, 25, 74, 74, 44, 34, 46, 36, 31, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7539, 25, 64, 64, 34, 34, 49, 34, 24, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7540, 20, 53, 53, 28, 28, 40, 28, 20, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7540, 22, 57, 57, 26, 26, 37, 26, 50, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7541, 24, 61, 61, 32, 32, 47, 32, 23, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7541, 26, 76, 76, 40, 66, 58, 50, 48, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7542, 31, 76, 76, 40, 40, 59, 40, 28, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7542, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7543, 38, 99, 99, 56, 109, 79, 79, 41, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7543, 40, 112, 112, 59, 99, 87, 75, 71, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7544, 48, 123, 123, 70, 137, 99, 99, 51, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7544, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7545, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7545, 23, 59, 59, 31, 31, 45, 31, 22, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7546, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7546, 50, 173, 173, 132, 128, 98, 108, 79, 188); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7546, 50, 138, 138, 75, 191, 70, 161, 53, 605); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7546, 50, 145, 145, 112, 139, 102, 139, 56, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7546, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7546, 50, 158, 158, 143, 102, 118, 102, 93, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7547, 50, 188, 188, 183, 133, 103, 133, 123, 613); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7547, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7547, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7547, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7547, 50, 178, 178, 123, 123, 123, 123, 123, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7547, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7549, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7550, 41, 131, 131, 95, 73, 73, 85, 75, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7551, 7, 24, 24, 11, 13, 11, 13, 15, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7552, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7553, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7554, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7555, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7556, 40, 128, 128, 93, 71, 71, 83, 73, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7557, 7, 24, 24, 11, 13, 11, 13, 15, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7558, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7559, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7560, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7561, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7562, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7562, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7563, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7564, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7564, 8, 26, 26, 12, 14, 12, 14, 17, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7565, 100, 276, 276, 231, 191, 151, 151, 211, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7566, 47, 125, 125, 59, 59, 83, 64, 54, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7566, 48, 128, 128, 60, 60, 84, 65, 55, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7566, 49, 145, 145, 76, 76, 101, 81, 66, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7567, 48, 108, 108, 55, 60, 55, 75, 70, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7567, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7568, 49, 140, 140, 91, 81, 86, 86, 135, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7568, 49, 140, 140, 91, 81, 86, 86, 135, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7569, 21, 59, 59, 46, 52, 16, 31, 16, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7569, 21, 46, 46, 29, 18, 27, 27, 37, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7570, 19, 56, 56, 36, 28, 28, 33, 44, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7571, 31, 86, 86, 57, 43, 43, 50, 68, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7572, 40, 116, 116, 80, 86, 62, 96, 103, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7573, 60, 169, 169, 117, 127, 91, 141, 152, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7574, 35, 236, 236, 24, 24, 70, 112, 56, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7575, 24, 66, 66, 25, 27, 35, 40, 20, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7575, 26, 81, 81, 37, 39, 45, 48, 32, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7576, 27, 71, 71, 33, 39, 48, 43, 33, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7577, 35, 106, 106, 59, 66, 78, 72, 77, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7578, 45, 134, 134, 75, 84, 99, 91, 97, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7579, 58, 129, 129, 66, 72, 66, 89, 83, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7579, 58, 170, 170, 95, 107, 126, 116, 124, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7579, 58, 175, 175, 118, 136, 130, 141, 83, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7580, 25, 71, 71, 51, 44, 51, 44, 65, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7581, 63, 146, 146, 84, 71, 78, 78, 141, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7581, 63, 143, 143, 79, 78, 90, 109, 109, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7581, 63, 164, 164, 96, 90, 84, 109, 96, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7582, 36, 120, 120, 97, 82, 50, 82, 75, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7583, 34, 107, 107, 71, 75, 92, 78, 51, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7583, 34, 107, 107, 71, 81, 78, 85, 51, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7584, 24, 69, 69, 49, 42, 49, 42, 63, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7584, 24, 69, 69, 49, 42, 49, 42, 63, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7585, 64, 180, 180, 88, 98, 121, 124, 136, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7586, 16, 44, 44, 26, 22, 26, 22, 31, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7586, 16, 49, 49, 28, 26, 25, 31, 28, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7587, 60, 139, 139, 80, 68, 74, 74, 134, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7587, 60, 137, 137, 75, 74, 86, 104, 104, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7587, 60, 157, 157, 92, 86, 80, 104, 92, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7588, 24, 76, 76, 40, 40, 52, 42, 35, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7589, 22, 68, 68, 51, 34, 51, 34, 59, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7590, 62, 174, 174, 85, 95, 117, 120, 132, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7591, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7592, 41, 94, 94, 72, 89, 80, 64, 46, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7592, 41, 110, 110, 64, 89, 73, 89, 48, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7593, 10, 31, 31, 14, 16, 14, 16, 20, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7594, 13, 37, 37, 17, 20, 17, 20, 25, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7595, 17, 46, 46, 21, 25, 21, 25, 31, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7596, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7597, 49, 153, 153, 91, 82, 71, 82, 120, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7597, 49, 160, 160, 89, 93, 129, 87, 126, 590); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7598, 55, 166, 166, 134, 104, 123, 104, 75, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7598, 55, 150, 150, 90, 90, 140, 140, 140, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7599, 17, 50, 50, 17, 24, 17, 24, 17, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7599, 16, 42, 42, 25, 21, 21, 25, 17, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7600, 40, 100, 100, 79, 67, 51, 43, 59, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7600, 40, 100, 100, 51, 67, 51, 79, 59, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7601, 49, 213, 213, 91, 66, 105, 71, 66, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7601, 49, 150, 150, 96, 76, 125, 105, 52, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7601, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7601, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7602, 22, 70, 70, 21, 34, 21, 34, 30, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7602, 23, 94, 94, 33, 22, 33, 24, 22, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7603, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7603, 27, 89, 89, 60, 66, 30, 30, 28, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7604, 44, 118, 118, 69, 95, 78, 95, 51, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7604, 43, 124, 124, 83, 67, 60, 84, 93, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7604, 44, 127, 127, 62, 69, 85, 86, 95, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7604, 44, 113, 113, 73, 60, 108, 91, 78, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7605, 60, 175, 175, 110, 110, 110, 110, 110, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7605, 60, 181, 181, 116, 92, 152, 128, 62, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7605, 60, 181, 181, 122, 128, 158, 134, 86, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7605, 60, 181, 181, 122, 140, 134, 146, 86, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7606, 40, 92, 92, 71, 47, 71, 47, 71, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7606, 40, 104, 104, 55, 55, 47, 47, 59, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7607, 55, 167, 167, 112, 129, 123, 134, 79, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7607, 56, 147, 147, 119, 142, 152, 109, 83, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7607, 56, 192, 192, 114, 142, 69, 103, 137, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7607, 57, 190, 190, 111, 122, 156, 128, 88, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7608, 38, 107, 107, 56, 56, 64, 71, 56, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7608, 38, 94, 94, 41, 60, 49, 68, 92, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7608, 39, 94, 94, 50, 46, 58, 97, 73, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7608, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7609, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7609, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7609, 50, 118, 118, 53, 53, 78, 53, 108, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7609, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7609, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7609, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7610, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7610, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7610, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7610, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7610, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7610, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7611, 50, 98, 98, 63, 38, 58, 58, 83, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7611, 50, 168, 168, 53, 38, 63, 43, 38, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7611, 50, 128, 128, 43, 63, 43, 63, 43, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7611, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7611, 50, 133, 133, 68, 68, 48, 48, 38, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7611, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7612, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7612, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7612, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7612, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7612, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7612, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7613, 50, 128, 128, 58, 78, 48, 48, 38, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7613, 50, 128, 128, 58, 78, 48, 48, 38, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7613, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7613, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7613, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7613, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7614, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7614, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7614, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7614, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7614, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7614, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7615, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7615, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7615, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7615, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7615, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7615, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7616, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7616, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7616, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7616, 50, 118, 118, 63, 78, 63, 93, 78, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7616, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7616, 50, 108, 108, 53, 53, 53, 53, 53, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7617, 50, 123, 123, 98, 83, 63, 53, 73, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7617, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7617, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7617, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7617, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7617, 50, 128, 128, 87, 73, 68, 73, 64, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7618, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7618, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7618, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7618, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7618, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7618, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7619, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7619, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7619, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7619, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7619, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7619, 50, 128, 128, 68, 68, 58, 58, 73, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7620, 43, 105, 105, 46, 67, 54, 76, 103, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7620, 43, 107, 107, 78, 72, 50, 63, 74, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7620, 44, 107, 107, 47, 69, 56, 78, 106, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7620, 44, 109, 109, 79, 73, 51, 64, 76, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7621, 31, 73, 73, 28, 56, 40, 56, 28, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7621, 30, 86, 86, 51, 51, 36, 36, 33, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7622, 47, 167, 167, 68, 97, 78, 97, 68, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7622, 48, 142, 142, 99, 84, 108, 84, 103, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7622, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7622, 45, 138, 138, 93, 106, 102, 111, 66, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7623, 36, 130, 130, 53, 53, 72, 87, 68, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7623, 37, 118, 118, 70, 63, 55, 63, 92, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7624, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7624, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7624, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7624, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7624, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7624, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7625, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7625, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7625, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7625, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7625, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7625, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7626, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7626, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7626, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7626, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7626, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7626, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7627, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7627, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7627, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7627, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7627, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7627, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7628, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7628, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7628, 50, 142, 142, 74, 46, 74, 46, 51, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7628, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7628, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7628, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7629, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7629, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7629, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7629, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7629, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7629, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7631, 9, 29, 29, 16, 15, 14, 14, 18, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7631, 9, 29, 29, 16, 15, 14, 14, 18, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7632, 10, 29, 29, 19, 15, 13, 15, 23, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7633, 14, 61, 61, 22, 15, 22, 17, 15, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7634, 14, 48, 48, 22, 23, 26, 28, 19, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7635, 11, 34, 34, 19, 21, 25, 23, 15, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7635, 11, 35, 35, 25, 16, 24, 15, 17, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7636, 14, 40, 40, 22, 21, 19, 19, 25, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7637, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7639, 13, 39, 39, 22, 23, 29, 26, 17, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7639, 13, 38, 38, 21, 20, 18, 18, 24, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7639, 13, 39, 39, 22, 23, 29, 26, 17, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7640, 18, 48, 48, 27, 25, 24, 24, 31, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7641, 18, 45, 45, 31, 24, 20, 24, 37, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7641, 18, 47, 47, 31, 25, 29, 29, 43, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7642, 20, 83, 83, 30, 20, 30, 22, 20, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7643, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7643, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7644, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7644, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7644, 19, 51, 51, 28, 25, 27, 27, 46, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7644, 19, 49, 49, 32, 27, 30, 30, 46, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7645, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7645, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7645, 19, 51, 51, 28, 25, 27, 27, 46, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7645, 19, 56, 56, 29, 31, 27, 27, 27, 615); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7645, 19, 53, 53, 33, 27, 27, 27, 30, 615); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7646, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7646, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7646, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7647, 23, 73, 73, 41, 44, 38, 38, 39, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7648, 23, 64, 64, 47, 29, 45, 27, 31, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7648, 23, 71, 71, 54, 36, 52, 33, 38, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7649, 23, 61, 61, 36, 38, 47, 43, 27, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7649, 23, 68, 68, 43, 45, 52, 47, 31, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7650, 31, 73, 73, 59, 50, 44, 50, 31, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7650, 31, 73, 73, 59, 50, 44, 50, 31, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7650, 31, 89, 89, 75, 65, 53, 65, 34, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7651, 30, 86, 86, 54, 57, 66, 60, 39, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7651, 34, 97, 97, 75, 64, 61, 70, 71, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7651, 30, 86, 86, 54, 57, 66, 60, 39, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7652, 15, 64, 64, 23, 16, 23, 17, 16, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7652, 15, 64, 64, 23, 16, 23, 17, 16, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7652, 15, 64, 64, 23, 16, 23, 17, 16, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7653, 18, 56, 56, 40, 29, 25, 25, 22, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7654, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7655, 18, 59, 59, 31, 31, 40, 33, 27, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7655, 18, 52, 52, 30, 28, 34, 29, 31, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7656, 21, 67, 67, 35, 35, 46, 37, 31, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7656, 21, 59, 59, 34, 32, 39, 33, 35, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7657, 29, 101, 101, 58, 64, 82, 67, 47, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7657, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7658, 32, 111, 111, 64, 70, 90, 74, 51, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7658, 32, 85, 85, 49, 47, 58, 48, 51, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7659, 36, 123, 123, 71, 79, 100, 82, 57, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7659, 36, 116, 116, 77, 74, 86, 75, 79, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7660, 30, 134, 134, 57, 42, 66, 45, 42, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7660, 34, 117, 117, 98, 68, 58, 58, 47, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7661, 12, 37, 37, 21, 22, 27, 24, 16, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7661, 15, 45, 45, 25, 38, 22, 25, 20, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7662, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7662, 31, 91, 91, 53, 50, 47, 47, 60, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7662, 31, 98, 98, 65, 75, 71, 78, 47, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7663, 30, 77, 77, 45, 45, 54, 54, 42, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7663, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7663, 34, 110, 110, 73, 73, 85, 85, 71, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7664, 32, 88, 88, 45, 48, 45, 58, 67, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7664, 33, 77, 77, 39, 43, 39, 53, 49, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7664, 34, 107, 107, 54, 64, 54, 81, 92, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7665, 29, 69, 69, 56, 47, 41, 47, 29, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7665, 29, 69, 69, 56, 47, 41, 47, 29, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7665, 32, 91, 91, 77, 67, 54, 67, 35, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7666, 41, 101, 101, 44, 64, 52, 73, 99, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7667, 40, 168, 168, 75, 47, 75, 47, 67, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7667, 40, 168, 168, 75, 47, 75, 47, 67, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7668, 7, 25, 25, 11, 11, 13, 14, 11, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7668, 7, 27, 27, 13, 15, 13, 15, 12, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7669, 26, 76, 76, 40, 40, 45, 50, 40, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7669, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7670, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7670, 29, 84, 84, 90, 61, 50, 50, 56, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7671, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7671, 32, 91, 91, 99, 67, 54, 54, 61, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7672, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7672, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7672, 34, 97, 97, 51, 51, 58, 64, 51, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7673, 10, 37, 37, 12, 18, 12, 18, 16, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7674, 14, 43, 43, 22, 22, 19, 19, 24, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7674, 14, 48, 48, 15, 24, 15, 24, 21, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7674, 14, 45, 45, 21, 26, 21, 26, 19, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7675, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7676, 4, 18, 18, 8, 9, 8, 9, 11, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7676, 4, 18, 18, 8, 9, 8, 9, 11, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7677, 40, 98, 98, 43, 63, 51, 71, 97, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7678, 39, 98, 98, 71, 65, 46, 58, 68, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7678, 39, 164, 164, 73, 46, 73, 46, 65, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7679, 6, 22, 22, 10, 10, 11, 13, 10, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7679, 6, 25, 25, 11, 14, 11, 14, 11, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7680, 26, 76, 76, 40, 40, 45, 50, 40, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7680, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7681, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7681, 29, 84, 84, 90, 61, 50, 50, 56, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7682, 32, 91, 91, 48, 48, 54, 61, 48, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7682, 32, 91, 91, 99, 67, 54, 54, 61, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7683, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7683, 34, 97, 97, 51, 51, 58, 64, 51, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7683, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7684, 9, 34, 34, 11, 17, 11, 17, 15, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7685, 14, 43, 43, 22, 22, 19, 19, 24, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7685, 14, 45, 45, 21, 26, 21, 26, 19, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7685, 14, 48, 48, 15, 24, 15, 24, 21, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7686, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7687, 4, 18, 18, 8, 9, 8, 9, 11, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7687, 4, 20, 20, 9, 11, 9, 11, 9, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7688, 12, 35, 35, 20, 18, 17, 17, 22, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7688, 12, 37, 37, 21, 22, 27, 24, 16, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7688, 12, 38, 38, 27, 17, 26, 16, 18, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7689, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7689, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7689, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7690, 18, 48, 48, 27, 25, 24, 24, 31, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7691, 31, 73, 73, 59, 50, 44, 50, 31, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7691, 31, 73, 73, 59, 50, 44, 50, 31, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7691, 31, 89, 89, 75, 65, 53, 65, 34, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7692, 46, 104, 104, 53, 58, 53, 72, 67, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7692, 47, 106, 106, 54, 59, 54, 73, 68, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7692, 47, 125, 125, 64, 68, 64, 83, 97, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7692, 48, 128, 128, 65, 70, 65, 84, 99, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7693, 18, 45, 45, 31, 24, 20, 24, 37, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7693, 18, 47, 47, 31, 25, 29, 29, 43, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7694, 13, 39, 39, 22, 23, 29, 26, 17, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7694, 13, 39, 39, 22, 23, 29, 26, 17, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7694, 13, 38, 38, 21, 20, 18, 18, 24, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7695, 14, 48, 48, 22, 23, 26, 28, 19, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7696, 9, 29, 29, 16, 15, 14, 14, 18, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7696, 9, 29, 29, 16, 15, 14, 14, 18, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7697, 20, 62, 62, 36, 34, 32, 32, 40, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7697, 20, 62, 62, 36, 34, 32, 32, 40, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7698, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7698, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7699, 49, 135, 135, 101, 71, 61, 61, 52, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7700, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7700, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7701, 23, 64, 64, 47, 29, 45, 27, 31, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7701, 23, 71, 71, 54, 36, 52, 33, 38, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7702, 23, 61, 61, 36, 38, 47, 43, 27, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7702, 23, 68, 68, 43, 45, 52, 47, 31, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7703, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7703, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7703, 19, 51, 51, 28, 25, 27, 27, 46, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7703, 19, 49, 49, 32, 27, 30, 30, 46, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7704, 22, 67, 67, 39, 37, 34, 34, 44, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7704, 22, 64, 64, 48, 39, 34, 43, 55, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7704, 21, 55, 55, 31, 27, 29, 29, 50, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7704, 22, 55, 55, 37, 30, 34, 34, 52, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7705, 46, 148, 148, 95, 90, 85, 85, 114, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7705, 47, 125, 125, 98, 78, 68, 87, 113, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7705, 47, 131, 131, 89, 75, 73, 73, 83, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7705, 47, 135, 135, 87, 78, 83, 83, 130, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7705, 48, 132, 132, 108, 75, 108, 99, 127, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7706, 100, 286, 286, 165, 175, 151, 151, 153, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7707, 11, 34, 34, 19, 21, 25, 23, 15, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7707, 11, 35, 35, 25, 16, 24, 15, 17, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7708, 23, 73, 73, 41, 44, 38, 38, 39, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7710, 20, 53, 53, 30, 28, 26, 26, 34, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7711, 28, 83, 83, 48, 45, 43, 43, 54, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7711, 28, 87, 87, 49, 52, 45, 45, 46, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7712, 14, 61, 61, 22, 15, 22, 17, 15, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7713, 10, 29, 29, 19, 15, 13, 15, 23, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7714, 21, 63, 63, 31, 29, 27, 29, 25, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7714, 21, 63, 63, 31, 29, 27, 29, 25, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7715, 14, 45, 45, 22, 29, 22, 35, 36, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7716, 15, 43, 43, 20, 23, 29, 26, 20, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7716, 15, 45, 45, 28, 23, 40, 34, 29, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7717, 17, 51, 51, 33, 26, 26, 30, 40, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7718, 4, 20, 20, 10, 9, 9, 9, 8, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7718, 4, 18, 18, 10, 8, 8, 8, 11, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7718, 4, 18, 18, 8, 9, 10, 12, 10, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7719, 5, 20, 20, 12, 9, 9, 9, 12, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7719, 5, 22, 22, 11, 10, 10, 10, 9, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7720, 17, 46, 46, 29, 21, 21, 21, 31, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7720, 17, 53, 53, 26, 24, 23, 24, 21, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7721, 29, 81, 81, 58, 44, 38, 38, 61, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7721, 29, 95, 95, 64, 50, 47, 50, 56, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7722, 38, 126, 126, 109, 71, 56, 64, 94, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7722, 38, 121, 121, 83, 64, 60, 64, 72, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7723, 30, 86, 86, 51, 51, 66, 66, 66, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7724, 3, 17, 17, 8, 8, 8, 8, 7, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7724, 3, 17, 17, 8, 8, 8, 8, 7, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7725, 7, 25, 25, 11, 12, 14, 17, 15, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7726, 19, 51, 51, 23, 25, 30, 38, 32, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7727, 31, 83, 83, 53, 44, 78, 65, 56, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7728, 55, 139, 139, 90, 74, 134, 112, 96, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7729, 7, 27, 27, 13, 13, 12, 13, 11, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7730, 25, 66, 66, 29, 39, 46, 39, 36, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7730, 25, 71, 71, 47, 36, 36, 42, 56, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7731, 16, 50, 50, 25, 33, 25, 39, 41, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7732, 17, 48, 48, 23, 26, 32, 29, 23, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7732, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7733, 22, 64, 64, 41, 32, 32, 37, 50, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7734, 4, 20, 20, 10, 9, 9, 9, 8, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7734, 4, 18, 18, 8, 9, 10, 12, 10, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7734, 4, 18, 18, 10, 8, 8, 8, 11, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7734, 4, 17, 17, 8, 7, 14, 10, 13, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7735, 8, 28, 28, 16, 15, 18, 15, 16, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7736, 22, 61, 61, 35, 34, 41, 34, 37, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7736, 22, 64, 64, 41, 32, 32, 37, 50, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7737, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7737, 33, 91, 91, 60, 45, 45, 53, 72, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7738, 43, 137, 137, 91, 87, 102, 89, 93, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7738, 43, 124, 124, 85, 92, 66, 103, 110, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7739, 23, 68, 68, 40, 40, 52, 52, 52, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7740, 5, 22, 22, 11, 10, 10, 10, 9, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7741, 7, 25, 25, 11, 12, 14, 17, 15, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7742, 24, 61, 61, 28, 30, 37, 47, 40, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7743, 33, 94, 94, 63, 49, 82, 49, 59, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7743, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7744, 51, 109, 109, 53, 66, 53, 66, 94, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7744, 51, 140, 140, 94, 74, 125, 74, 89, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7744, 51, 130, 130, 84, 69, 125, 104, 89, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7745, 7, 25, 25, 16, 12, 13, 12, 13, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7746, 41, 114, 114, 73, 77, 89, 81, 52, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7746, 45, 125, 125, 97, 83, 79, 92, 93, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7746, 41, 127, 127, 85, 89, 109, 93, 60, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7747, 17, 53, 53, 38, 28, 24, 24, 21, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7748, 15, 64, 64, 23, 16, 23, 17, 16, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7748, 15, 64, 64, 23, 16, 23, 17, 16, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7748, 15, 64, 64, 23, 16, 23, 17, 16, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7749, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7750, 19, 62, 62, 32, 32, 42, 34, 28, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7750, 19, 54, 54, 31, 30, 36, 30, 32, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7751, 32, 98, 98, 51, 51, 67, 54, 45, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7751, 31, 83, 83, 48, 45, 56, 47, 50, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7752, 36, 116, 116, 77, 74, 86, 75, 79, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7752, 38, 130, 130, 75, 83, 106, 87, 60, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7753, 51, 160, 160, 107, 102, 120, 104, 110, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7753, 54, 180, 180, 105, 116, 148, 121, 83, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7754, 40, 176, 176, 75, 55, 87, 59, 55, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7754, 44, 149, 149, 126, 86, 73, 73, 60, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7755, 14, 41, 41, 24, 25, 31, 28, 18, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7755, 17, 50, 50, 28, 43, 24, 28, 23, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7756, 21, 57, 57, 33, 35, 44, 39, 25, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7756, 31, 83, 83, 47, 75, 40, 47, 37, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7757, 32, 91, 91, 58, 61, 70, 64, 42, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7757, 38, 107, 107, 79, 102, 56, 79, 52, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7758, 53, 161, 161, 108, 114, 140, 119, 77, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7758, 54, 148, 148, 110, 143, 78, 110, 73, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7759, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7759, 41, 127, 127, 85, 97, 93, 101, 60, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7759, 41, 117, 117, 68, 64, 60, 60, 77, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7760, 41, 102, 102, 59, 59, 73, 73, 56, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7760, 43, 120, 120, 73, 74, 89, 89, 72, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7760, 45, 143, 143, 95, 95, 111, 111, 93, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7761, 44, 118, 118, 60, 64, 60, 78, 91, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7761, 45, 102, 102, 52, 57, 52, 70, 66, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7761, 46, 141, 141, 72, 85, 72, 108, 122, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7762, 38, 88, 88, 71, 60, 52, 60, 37, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7762, 38, 88, 88, 71, 60, 52, 60, 37, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7762, 42, 117, 117, 99, 87, 70, 87, 45, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7763, 63, 171, 171, 103, 103, 134, 134, 134, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7763, 63, 171, 171, 84, 115, 84, 141, 147, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7763, 63, 183, 183, 109, 109, 96, 96, 115, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7764, 65, 176, 176, 115, 138, 128, 125, 179, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7765, 65, 189, 189, 106, 125, 171, 125, 145, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7766, 8, 27, 27, 15, 13, 15, 13, 18, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7766, 8, 27, 27, 15, 13, 15, 13, 18, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7767, 15, 46, 46, 23, 23, 26, 23, 32, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7767, 15, 46, 46, 23, 23, 26, 23, 32, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7767, 15, 46, 46, 23, 23, 26, 23, 32, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7768, 63, 164, 164, 110, 83, 83, 98, 134, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7768, 63, 171, 171, 128, 90, 78, 78, 65, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7768, 63, 171, 171, 78, 103, 78, 103, 71, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7769, 30, 86, 86, 51, 45, 39, 45, 60, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7769, 30, 77, 77, 33, 45, 48, 54, 42, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7770, 63, 133, 133, 78, 115, 115, 59, 103, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7770, 63, 133, 133, 65, 65, 65, 65, 65, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7770, 63, 158, 158, 134, 96, 109, 109, 141, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7771, 63, 146, 146, 64, 84, 64, 84, 73, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7771, 63, 177, 177, 96, 172, 153, 78, 103, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7771, 63, 196, 196, 153, 115, 103, 115, 147, 243); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7772, 7, 25, 25, 14, 12, 14, 12, 16, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7773, 25, 66, 66, 29, 39, 41, 46, 36, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7774, 30, 101, 101, 45, 72, 87, 84, 63, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7775, 64, 154, 154, 66, 92, 111, 92, 85, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7776, 60, 163, 163, 98, 98, 128, 128, 128, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7776, 60, 163, 163, 80, 110, 80, 134, 140, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7776, 60, 175, 175, 104, 104, 92, 92, 110, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7777, 13, 41, 41, 21, 20, 23, 20, 28, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7778, 65, 241, 241, 203, 106, 93, 112, 142, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7779, 65, 238, 238, 174, 181, 116, 122, 89, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7779, 63, 202, 202, 166, 141, 84, 141, 128, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7779, 63, 190, 190, 153, 166, 84, 96, 109, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7780, 33, 95, 95, 45, 49, 45, 49, 53, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7780, 33, 107, 107, 92, 69, 59, 53, 78, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7780, 33, 95, 95, 45, 49, 45, 49, 53, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7781, 60, 199, 199, 137, 131, 116, 128, 117, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7782, 61, 166, 166, 81, 87, 136, 124, 112, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7782, 61, 166, 166, 112, 87, 148, 87, 106, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7782, 61, 172, 172, 84, 94, 116, 118, 130, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7782, 61, 184, 184, 152, 124, 112, 124, 139, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7783, 4, 18, 18, 10, 9, 10, 9, 11, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7784, 39, 109, 109, 65, 58, 50, 58, 77, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7784, 39, 119, 119, 108, 65, 65, 65, 89, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7785, 60, 151, 151, 74, 128, 74, 104, 56, 617); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7785, 60, 139, 139, 74, 74, 110, 74, 50, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7785, 60, 224, 224, 126, 108, 137, 125, 73, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7786, 61, 141, 141, 81, 75, 69, 69, 95, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7786, 61, 166, 166, 63, 63, 70, 95, 87, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7786, 61, 141, 141, 94, 63, 63, 63, 130, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7786, 61, 141, 141, 94, 63, 63, 63, 100, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7786, 61, 190, 190, 167, 124, 106, 94, 140, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7787, 6, 23, 23, 13, 11, 13, 11, 15, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7787, 6, 24, 24, 13, 12, 14, 13, 13, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7788, 24, 73, 73, 55, 37, 55, 37, 64, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7789, 62, 141, 141, 78, 76, 89, 107, 107, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7789, 62, 174, 174, 188, 101, 145, 163, 107, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7790, 9, 30, 30, 19, 16, 12, 16, 18, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7790, 9, 30, 30, 18, 15, 14, 15, 15, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7791, 5, 20, 20, 12, 10, 11, 11, 15, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7792, 7, 25, 25, 11, 14, 11, 11, 12, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7792, 9, 27, 27, 13, 15, 13, 15, 20, 453); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7793, 6, 23, 23, 15, 14, 11, 13, 14, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7793, 6, 26, 26, 9, 13, 9, 13, 11, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7795, 2, 14, 14, 7, 6, 6, 6, 7, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7795, 4, 18, 18, 9, 9, 9, 9, 11, 509); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7796, 48, 161, 161, 137, 94, 79, 79, 65, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7796, 48, 139, 139, 77, 77, 100, 86, 119, 594); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7797, 42, 134, 134, 78, 78, 95, 104, 78, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7798, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7798, 41, 110, 110, 73, 97, 97, 56, 89, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7799, 6, 22, 22, 10, 10, 11, 13, 10, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7799, 8, 30, 30, 14, 17, 14, 17, 13, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7800, 9, 29, 29, 13, 13, 15, 17, 13, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7800, 11, 38, 38, 17, 22, 17, 22, 16, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7801, 14, 45, 45, 24, 24, 26, 29, 24, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7801, 15, 48, 48, 22, 28, 22, 28, 20, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7802, 23, 68, 68, 36, 36, 40, 45, 36, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7802, 25, 74, 74, 79, 54, 44, 44, 49, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7803, 47, 130, 130, 84, 101, 94, 92, 130, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7803, 47, 130, 130, 144, 97, 78, 78, 87, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7803, 47, 149, 149, 87, 87, 106, 115, 87, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7804, 10, 37, 37, 12, 18, 12, 18, 16, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7805, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7805, 18, 50, 50, 35, 33, 24, 29, 34, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7806, 16, 54, 54, 24, 27, 24, 27, 23, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7807, 55, 167, 167, 119, 98, 141, 98, 90, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7807, 55, 227, 227, 96, 90, 145, 129, 96, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7808, 5, 20, 20, 9, 10, 9, 10, 12, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7809, 3, 16, 16, 7, 8, 7, 7, 8, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7810, 28, 70, 70, 40, 37, 34, 34, 46, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7811, 9, 33, 33, 19, 19, 23, 23, 23, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7812, 6, 22, 22, 10, 10, 13, 10, 17, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7813, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7814, 33, 91, 91, 79, 53, 39, 66, 92, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7815, 13, 39, 39, 18, 22, 27, 22, 17, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7816, 55, 161, 161, 90, 107, 145, 107, 123, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7817, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7817, 15, 57, 57, 43, 34, 40, 34, 38, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7817, 20, 69, 69, 40, 38, 44, 60, 52, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7817, 15, 57, 57, 31, 34, 31, 38, 31, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7817, 15, 42, 42, 23, 20, 22, 22, 37, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7818, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7818, 15, 45, 45, 38, 64, 35, 23, 31, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7818, 20, 73, 73, 56, 44, 52, 44, 50, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7818, 15, 61, 61, 49, 46, 23, 23, 22, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7818, 15, 49, 49, 25, 20, 44, 38, 38, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7818, 15, 58, 58, 31, 32, 38, 37, 28, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7819, 30, 68, 68, 63, 69, 48, 42, 48, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7819, 25, 61, 61, 41, 34, 39, 39, 59, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7819, 25, 63, 63, 34, 34, 39, 46, 46, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7819, 25, 79, 79, 36, 38, 44, 46, 31, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7819, 25, 101, 101, 36, 24, 36, 26, 24, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7819, 30, 83, 83, 48, 45, 42, 54, 48, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7820, 30, 68, 68, 63, 69, 48, 42, 48, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7820, 25, 61, 61, 41, 34, 39, 39, 59, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7820, 25, 63, 63, 34, 34, 39, 46, 46, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7820, 25, 49, 49, 41, 26, 31, 36, 61, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7820, 25, 64, 64, 36, 31, 34, 34, 59, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7820, 30, 83, 83, 48, 45, 42, 54, 48, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7821, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7821, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7821, 50, 133, 133, 78, 73, 68, 88, 78, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7821, 50, 128, 128, 73, 118, 63, 73, 58, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7821, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7821, 50, 108, 108, 79, 58, 48, 58, 95, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7822, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7822, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7822, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7822, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7822, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7823, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7823, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7823, 50, 118, 118, 68, 58, 63, 63, 113, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7823, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7823, 50, 118, 118, 73, 63, 63, 63, 113, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7823, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7824, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7824, 50, 143, 143, 83, 93, 108, 98, 63, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7824, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7824, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7824, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7824, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7825, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7825, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7825, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7825, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7825, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7825, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7826, 55, 189, 189, 162, 111, 90, 134, 113, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7826, 55, 167, 167, 112, 129, 123, 134, 79, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7826, 55, 172, 172, 115, 134, 116, 134, 112, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7826, 55, 167, 167, 107, 85, 140, 118, 57, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7826, 55, 156, 156, 85, 151, 134, 68, 90, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7826, 55, 139, 139, 79, 156, 112, 112, 57, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7827, 100, 296, 296, 201, 231, 221, 241, 141, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7827, 100, 346, 346, 141, 201, 161, 201, 141, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7827, 100, 326, 326, 191, 211, 271, 221, 151, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7827, 100, 316, 316, 193, 169, 131, 151, 221, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7827, 100, 426, 426, 181, 131, 211, 141, 131, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7827, 100, 256, 256, 121, 211, 201, 251, 121, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7828, 100, 296, 296, 201, 231, 221, 241, 141, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7828, 100, 656, 656, 61, 61, 191, 311, 151, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7828, 100, 326, 326, 281, 281, 161, 161, 141, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7828, 100, 296, 296, 211, 441, 151, 171, 101, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7828, 100, 296, 296, 151, 181, 151, 231, 261, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7828, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7829, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7829, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7829, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7829, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7829, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7829, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7830, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7830, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7830, 50, 128, 128, 58, 78, 48, 48, 38, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7830, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7830, 50, 139, 139, 95, 80, 78, 78, 88, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7831, 50, 135, 135, 47, 109, 47, 109, 46, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7831, 50, 126, 126, 95, 71, 95, 71, 71, 583); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7831, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7831, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7831, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7831, 50, 155, 155, 108, 74, 78, 74, 88, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7832, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7832, 50, 133, 133, 98, 73, 63, 63, 103, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7832, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7832, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7832, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7832, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7834, 40, 124, 124, 119, 79, 43, 79, 87, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7834, 40, 160, 160, 99, 87, 43, 87, 55, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7835, 66, 198, 198, 193, 127, 68, 127, 140, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7835, 66, 258, 258, 160, 140, 68, 140, 88, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7835, 66, 289, 289, 187, 107, 81, 107, 94, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7836, 24, 76, 76, 56, 35, 20, 35, 37, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7836, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7837, 32, 98, 98, 74, 45, 26, 45, 48, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7837, 32, 107, 107, 83, 70, 42, 48, 42, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7838, 40, 132, 132, 103, 87, 51, 59, 51, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7839, 66, 218, 218, 101, 127, 107, 127, 68, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7839, 66, 238, 238, 213, 154, 101, 114, 88, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7840, 68, 204, 204, 151, 219, 111, 111, 83, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7841, 25, 81, 81, 54, 41, 26, 31, 31, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7841, 25, 81, 81, 54, 41, 26, 31, 31, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7842, 33, 110, 110, 86, 72, 43, 49, 43, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7842, 33, 110, 110, 86, 72, 43, 49, 43, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7843, 47, 153, 153, 120, 101, 59, 68, 59, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7843, 47, 153, 153, 120, 101, 59, 68, 59, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7844, 62, 187, 187, 182, 120, 64, 120, 132, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7844, 62, 243, 243, 151, 132, 64, 132, 83, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7844, 62, 272, 272, 176, 101, 76, 101, 89, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7845, 25, 79, 79, 59, 36, 21, 36, 39, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7845, 25, 81, 81, 54, 41, 26, 31, 31, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7846, 33, 101, 101, 76, 46, 26, 46, 49, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7846, 33, 110, 110, 86, 72, 43, 49, 43, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7847, 47, 153, 153, 120, 101, 59, 68, 59, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7848, 62, 205, 205, 95, 120, 101, 120, 64, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7848, 62, 224, 224, 200, 145, 95, 107, 83, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7849, 26, 71, 71, 48, 58, 32, 32, 42, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7850, 34, 90, 90, 61, 75, 41, 41, 54, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7851, 48, 142, 142, 113, 142, 84, 94, 65, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7852, 64, 193, 193, 143, 207, 104, 104, 79, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7853, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7853, 50, 133, 133, 98, 73, 63, 63, 103, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7853, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7853, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7853, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7853, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7854, 50, 147, 147, 92, 99, 92, 109, 114, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7854, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7854, 50, 123, 123, 53, 73, 88, 73, 68, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7854, 50, 143, 143, 99, 107, 77, 119, 128, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7854, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7854, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7856, 56, 192, 192, 164, 112, 102, 104, 90, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7856, 56, 192, 192, 148, 131, 69, 131, 86, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7857, 60, 205, 205, 175, 120, 109, 111, 96, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7857, 60, 205, 205, 158, 140, 74, 140, 92, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7858, 56, 172, 172, 159, 125, 92, 125, 78, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7858, 56, 192, 192, 156, 114, 97, 103, 128, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7859, 59, 181, 181, 167, 132, 97, 132, 82, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7859, 61, 208, 208, 169, 124, 106, 112, 139, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7860, 58, 216, 216, 101, 147, 89, 136, 118, 292); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7861, 62, 230, 230, 107, 157, 95, 145, 126, 292); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7862, 22, 68, 68, 46, 49, 36, 55, 59, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7862, 20, 56, 56, 34, 29, 29, 27, 46, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7863, 19, 54, 54, 34, 28, 49, 42, 36, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7864, 40, 104, 104, 67, 55, 99, 83, 71, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7865, 60, 151, 151, 98, 80, 146, 122, 104, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7866, 27, 85, 85, 59, 49, 49, 46, 75, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7867, 27, 73, 73, 47, 39, 68, 57, 49, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7868, 45, 116, 116, 75, 61, 111, 93, 79, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7869, 61, 153, 153, 100, 81, 148, 124, 106, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7870, 64, 178, 178, 140, 92, 140, 92, 163, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7870, 64, 173, 173, 136, 116, 111, 129, 130, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7871, 64, 161, 161, 124, 124, 111, 111, 92, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7871, 64, 178, 178, 140, 92, 140, 92, 163, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7872, 40, 140, 140, 127, 83, 107, 83, 99, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7873, 64, 144, 144, 60, 80, 60, 80, 60, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7873, 64, 180, 180, 92, 117, 149, 130, 111, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7874, 17, 47, 47, 28, 23, 28, 23, 33, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7875, 61, 171, 171, 134, 87, 134, 87, 156, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7875, 61, 166, 166, 130, 111, 106, 123, 124, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7876, 61, 153, 153, 118, 118, 106, 106, 87, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7876, 61, 171, 171, 134, 87, 134, 87, 156, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7877, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7878, 39, 113, 113, 78, 84, 61, 93, 100, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7879, 15, 45, 45, 25, 55, 25, 55, 25, 310); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7880, 13, 39, 39, 23, 21, 26, 21, 29, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7881, 55, 134, 134, 85, 74, 96, 74, 107, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7883, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7883, 20, 51, 51, 34, 26, 24, 24, 26, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7883, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7884, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7884, 32, 98, 98, 74, 61, 54, 54, 61, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7884, 32, 98, 98, 80, 61, 83, 64, 42, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7885, 28, 81, 81, 48, 37, 51, 40, 34, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7885, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7886, 38, 114, 114, 94, 71, 98, 75, 49, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7886, 38, 114, 114, 87, 71, 64, 64, 71, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7887, 18, 56, 56, 33, 25, 34, 27, 24, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7887, 20, 51, 51, 34, 26, 24, 24, 26, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7887, 22, 66, 66, 39, 30, 41, 32, 28, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7887, 22, 57, 57, 32, 28, 26, 30, 37, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7888, 26, 76, 76, 45, 35, 48, 37, 32, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7888, 28, 87, 87, 65, 54, 48, 48, 54, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7888, 30, 74, 74, 42, 36, 33, 39, 48, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7888, 33, 101, 101, 82, 63, 86, 66, 43, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7889, 36, 109, 109, 89, 68, 93, 71, 46, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7889, 38, 114, 114, 87, 71, 64, 64, 71, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7889, 40, 124, 124, 83, 75, 71, 79, 91, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7890, 23, 73, 73, 54, 45, 40, 40, 45, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7890, 23, 68, 68, 40, 31, 43, 33, 29, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7891, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7891, 24, 71, 71, 42, 32, 44, 35, 30, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7892, 32, 98, 98, 80, 61, 83, 64, 42, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7893, 31, 95, 95, 78, 59, 81, 62, 40, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7894, 38, 114, 114, 94, 71, 98, 75, 49, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7895, 39, 117, 117, 97, 73, 100, 77, 50, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7896, 53, 156, 156, 130, 98, 135, 103, 66, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7897, 55, 161, 161, 134, 101, 140, 107, 68, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7898, 25, 79, 79, 36, 38, 44, 46, 31, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7899, 27, 84, 84, 39, 40, 47, 49, 33, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7900, 29, 90, 90, 41, 43, 50, 53, 35, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7901, 31, 95, 95, 44, 45, 53, 56, 37, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7902, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7903, 64, 167, 167, 117, 85, 117, 92, 104, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7903, 64, 193, 193, 149, 104, 111, 104, 175, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7904, 65, 169, 169, 125, 106, 125, 106, 162, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7905, 61, 160, 160, 112, 81, 112, 87, 100, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7905, 61, 184, 184, 142, 100, 106, 100, 167, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7906, 66, 185, 185, 134, 213, 81, 121, 121, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7906, 66, 198, 198, 140, 292, 101, 114, 68, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7906, 66, 197, 197, 152, 201, 100, 181, 55, 299); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7906, 66, 205, 205, 206, 200, 154, 147, 121, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7906, 66, 192, 192, 206, 167, 107, 167, 55, 619); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7906, 66, 185, 185, 193, 160, 107, 121, 121, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7907, 17, 48, 48, 32, 23, 33, 29, 43, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7908, 61, 160, 160, 118, 100, 118, 100, 152, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7908, 61, 166, 166, 136, 94, 136, 124, 161, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7909, 35, 110, 110, 66, 80, 66, 91, 73, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7909, 35, 124, 124, 63, 63, 94, 108, 59, 325); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7910, 35, 103, 103, 94, 108, 59, 63, 84, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7910, 35, 124, 124, 99, 146, 48, 49, 37, 620); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7911, 35, 176, 176, 80, 49, 80, 49, 59, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7911, 35, 131, 131, 84, 73, 45, 73, 80, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7912, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7912, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7913, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7913, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7914, 40, 126, 126, 93, 79, 78, 69, 113, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7914, 40, 136, 136, 123, 83, 71, 87, 63, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7915, 50, 156, 156, 115, 98, 97, 86, 141, 528); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7915, 50, 148, 148, 133, 93, 138, 93, 113, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7916, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7916, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7917, 40, 122, 122, 65, 83, 101, 83, 97, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7918, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7919, 40, 104, 104, 87, 87, 63, 63, 59, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7919, 40, 140, 140, 71, 71, 107, 123, 67, 325); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7920, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7920, 50, 173, 173, 88, 88, 133, 153, 83, 325); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7921, 40, 120, 120, 67, 69, 83, 85, 67, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7921, 40, 128, 128, 61, 59, 91, 59, 90, 621); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7922, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7922, 50, 158, 158, 75, 73, 113, 73, 112, 621); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7923, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7923, 35, 129, 129, 59, 77, 59, 77, 52, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7924, 35, 113, 113, 66, 45, 87, 59, 119, 265); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7924, 35, 113, 113, 91, 63, 59, 70, 108, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7925, 35, 108, 108, 58, 73, 89, 73, 85, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7925, 35, 103, 103, 59, 94, 108, 84, 63, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7926, 40, 104, 104, 67, 95, 115, 75, 75, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7926, 40, 114, 114, 63, 61, 106, 94, 106, 622); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7927, 50, 148, 148, 93, 138, 153, 113, 83, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7927, 50, 140, 140, 78, 75, 132, 117, 132, 622); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7928, 40, 162, 162, 81, 77, 98, 93, 65, 623); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7928, 40, 130, 130, 116, 114, 74, 66, 76, 624); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7929, 50, 201, 201, 100, 95, 122, 115, 81, 623); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7929, 50, 160, 160, 144, 142, 92, 82, 94, 624); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7930, 35, 117, 117, 70, 77, 98, 56, 84, 625); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7930, 35, 124, 124, 104, 72, 65, 67, 58, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7931, 40, 124, 124, 63, 75, 63, 95, 107, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7931, 40, 162, 162, 99, 69, 97, 84, 73, 455); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7932, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7932, 50, 201, 201, 123, 85, 120, 104, 91, 455); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7933, 40, 120, 120, 59, 43, 95, 127, 103, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7933, 40, 140, 140, 113, 166, 54, 56, 41, 620); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7934, 50, 168, 168, 115, 98, 115, 108, 83, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7934, 50, 173, 173, 140, 207, 67, 69, 51, 620); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7935, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7935, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7935, 50, 155, 155, 108, 74, 78, 74, 88, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7935, 50, 148, 148, 117, 73, 117, 73, 89, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7935, 50, 148, 148, 103, 125, 103, 125, 63, 574); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7936, 50, 168, 168, 108, 123, 118, 148, 108, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7936, 50, 168, 168, 115, 98, 115, 108, 83, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7936, 50, 188, 188, 153, 103, 93, 83, 103, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7936, 50, 148, 148, 103, 93, 103, 93, 133, 317); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7936, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7936, 50, 178, 178, 123, 123, 123, 123, 123, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7937, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7937, 50, 152, 152, 123, 95, 113, 95, 69, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7937, 50, 138, 138, 93, 88, 148, 128, 113, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7937, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7937, 50, 143, 143, 99, 107, 77, 119, 128, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7937, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7938, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7938, 50, 161, 161, 129, 88, 109, 88, 108, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7938, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7938, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7938, 50, 138, 138, 75, 191, 70, 161, 53, 605); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7938, 50, 148, 148, 143, 88, 68, 108, 148, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7939, 50, 146, 146, 148, 88, 88, 138, 103, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7939, 50, 148, 148, 93, 138, 153, 113, 83, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7939, 50, 153, 153, 118, 90, 148, 118, 106, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7939, 50, 188, 188, 108, 118, 103, 118, 73, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7939, 50, 163, 163, 103, 93, 158, 98, 113, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7939, 50, 178, 178, 123, 148, 133, 73, 73, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7940, 50, 148, 148, 113, 133, 83, 98, 118, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7940, 50, 157, 157, 108, 83, 78, 83, 94, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7940, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7940, 50, 153, 153, 123, 89, 83, 89, 138, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7940, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7940, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7941, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7941, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7941, 50, 163, 163, 128, 78, 108, 73, 138, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7941, 50, 163, 163, 143, 93, 73, 83, 123, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7941, 50, 145, 145, 112, 139, 102, 139, 56, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7941, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7942, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7942, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7942, 50, 143, 143, 99, 107, 77, 119, 128, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7942, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7942, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7942, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7943, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7943, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7943, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7943, 50, 148, 148, 88, 83, 113, 98, 113, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7943, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7943, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7944, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7944, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7944, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7944, 50, 138, 138, 93, 88, 148, 128, 113, 213); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7944, 50, 149, 149, 105, 87, 87, 82, 135, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7944, 50, 128, 128, 115, 131, 115, 131, 58, 626); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7945, 50, 228, 228, 103, 67, 113, 77, 103, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7945, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7945, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7945, 50, 138, 138, 83, 83, 128, 128, 128, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7945, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7945, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7946, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7946, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7946, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7946, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7946, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7946, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7947, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7947, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7947, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7947, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7947, 50, 169, 169, 157, 118, 123, 123, 103, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7947, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7948, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7948, 50, 186, 186, 153, 118, 103, 108, 125, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7948, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7948, 50, 153, 153, 118, 148, 68, 98, 118, 204); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7948, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7948, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7949, 50, 193, 193, 163, 153, 78, 78, 63, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7949, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7949, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7949, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7949, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7949, 50, 163, 163, 73, 118, 143, 138, 103, 561); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7950, 50, 164, 164, 99, 109, 139, 79, 118, 625); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7950, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7950, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7950, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7950, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7950, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7952, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7952, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7952, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7952, 50, 183, 183, 163, 118, 78, 88, 68, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7952, 50, 170, 170, 128, 113, 148, 113, 121, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7953, 30, 65, 65, 27, 24, 78, 48, 69, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7953, 31, 73, 73, 55, 68, 62, 50, 36, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7954, 19, 43, 43, 27, 46, 23, 46, 21, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7954, 20, 48, 48, 22, 22, 30, 26, 28, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7955, 26, 65, 65, 32, 32, 48, 42, 40, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7955, 25, 63, 63, 31, 31, 46, 41, 39, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7956, 20, 75, 75, 21, 31, 21, 31, 21, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7956, 20, 45, 45, 28, 18, 26, 26, 36, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7957, 45, 125, 125, 97, 59, 97, 59, 103, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7957, 48, 132, 132, 79, 79, 103, 103, 103, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7957, 48, 136, 136, 132, 84, 101, 82, 84, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7957, 48, 123, 123, 94, 94, 84, 84, 70, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7958, 52, 153, 153, 112, 169, 112, 96, 44, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7958, 51, 171, 171, 125, 84, 115, 84, 104, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7958, 52, 184, 184, 75, 75, 102, 123, 96, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7958, 54, 191, 191, 121, 164, 73, 94, 83, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7959, 41, 90, 90, 52, 77, 77, 40, 68, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7959, 41, 114, 114, 85, 60, 52, 52, 44, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7960, 59, 178, 178, 120, 108, 102, 114, 132, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7960, 59, 208, 208, 112, 124, 112, 124, 91, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7960, 60, 217, 217, 152, 116, 104, 146, 86, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7960, 60, 187, 187, 110, 104, 122, 170, 146, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7961, 38, 92, 92, 45, 41, 109, 71, 98, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7961, 37, 89, 89, 55, 51, 70, 51, 70, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7961, 38, 107, 107, 64, 75, 64, 75, 79, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7962, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7962, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7962, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7962, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7962, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7962, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7963, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7963, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7963, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7963, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7963, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7963, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7964, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7964, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7964, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7964, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7964, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7964, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7965, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7965, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7965, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7965, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7965, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7965, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7966, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7966, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7966, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7966, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7966, 50, 144, 144, 64, 100, 84, 110, 46, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7966, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7967, 50, 122, 122, 98, 58, 86, 56, 68, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7967, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7967, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7967, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7967, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7967, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7968, 50, 123, 123, 98, 83, 63, 53, 73, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7968, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7968, 50, 123, 123, 113, 43, 88, 43, 88, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7968, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7968, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7968, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7969, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7969, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7969, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7969, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7969, 50, 143, 143, 88, 83, 153, 118, 133, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7969, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7970, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7970, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7970, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7970, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7970, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7970, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7971, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7971, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7971, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7971, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7971, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7971, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7972, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7972, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7972, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7972, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7972, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7972, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7973, 30, 98, 98, 66, 72, 33, 33, 30, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7973, 30, 86, 86, 54, 57, 66, 60, 39, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7974, 7, 24, 24, 15, 12, 11, 11, 12, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7974, 7, 23, 23, 13, 20, 11, 11, 13, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7975, 16, 42, 42, 28, 21, 20, 20, 21, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7975, 17, 43, 43, 26, 41, 21, 21, 24, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7976, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7976, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7976, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7977, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7977, 43, 128, 128, 67, 67, 89, 72, 59, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7977, 44, 113, 113, 82, 64, 64, 64, 82, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7978, 11, 31, 31, 15, 15, 15, 15, 15, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7978, 11, 32, 32, 21, 16, 15, 15, 16, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7979, 24, 71, 71, 37, 32, 54, 49, 59, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7979, 24, 71, 71, 32, 37, 49, 54, 59, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7979, 24, 73, 73, 76, 42, 49, 42, 49, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7980, 8, 28, 28, 21, 14, 21, 14, 13, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7980, 8, 27, 27, 14, 14, 19, 14, 11, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7981, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7981, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7981, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7981, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7981, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7981, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7982, 30, 83, 83, 48, 66, 54, 66, 36, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7982, 29, 72, 72, 47, 61, 35, 50, 32, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7982, 29, 87, 87, 70, 58, 47, 47, 64, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7983, 40, 179, 179, 115, 67, 51, 67, 59, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7983, 40, 112, 112, 67, 67, 87, 87, 87, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7983, 40, 104, 104, 95, 95, 47, 107, 75, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7983, 40, 112, 112, 123, 83, 67, 67, 75, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7984, 5, 20, 20, 12, 10, 11, 11, 15, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7984, 5, 20, 20, 11, 10, 10, 10, 15, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7985, 58, 181, 181, 121, 116, 136, 118, 124, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7985, 58, 193, 193, 112, 124, 159, 130, 89, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7985, 59, 155, 155, 125, 150, 160, 114, 87, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7985, 60, 151, 151, 98, 140, 170, 110, 110, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7986, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7986, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7986, 50, 138, 138, 85, 73, 85, 83, 63, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7986, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7986, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7986, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7987, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7987, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7987, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7987, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7987, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7987, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7989, 34, 117, 117, 61, 61, 44, 44, 27, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7989, 36, 127, 127, 71, 97, 89, 75, 39, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7990, 20, 55, 55, 32, 30, 58, 34, 50, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7990, 20, 55, 55, 32, 30, 58, 34, 50, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7991, 18, 45, 45, 24, 22, 47, 24, 40, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7991, 20, 55, 55, 32, 30, 58, 34, 50, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7991, 20, 49, 49, 26, 24, 52, 26, 44, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7992, 35, 99, 99, 51, 49, 47, 80, 47, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7992, 35, 117, 117, 68, 66, 68, 98, 64, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7993, 44, 149, 149, 78, 78, 56, 56, 34, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7993, 46, 159, 159, 90, 122, 113, 95, 49, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7994, 22, 59, 59, 34, 32, 63, 37, 54, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7995, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7995, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7995, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7995, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7995, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7996, 20, 55, 55, 32, 30, 58, 34, 50, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7996, 20, 55, 55, 32, 30, 58, 34, 50, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7997, 18, 45, 45, 24, 22, 47, 24, 40, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7997, 20, 55, 55, 32, 30, 58, 34, 50, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7997, 20, 49, 49, 26, 24, 52, 26, 44, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7998, 45, 122, 122, 42, 98, 42, 98, 41, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7998, 45, 147, 147, 86, 84, 86, 124, 81, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7999, 50, 128, 128, 98, 58, 93, 53, 63, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7999, 50, 138, 138, 53, 53, 59, 79, 73, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7999, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7999, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7999, 50, 148, 148, 85, 90, 78, 78, 79, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (7999, 50, 126, 126, 95, 71, 95, 71, 71, 583); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8000, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8000, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8000, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8000, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8000, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8000, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8001, 32, 88, 88, 61, 51, 42, 51, 70, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8001, 33, 97, 97, 59, 46, 66, 46, 79, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8001, 31, 104, 104, 63, 55, 44, 50, 71, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8001, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8002, 52, 137, 137, 96, 80, 65, 80, 112, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8002, 53, 150, 150, 92, 71, 103, 71, 124, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8002, 51, 166, 166, 100, 88, 69, 79, 115, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8002, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8003, 52, 137, 137, 96, 80, 65, 80, 112, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8003, 53, 150, 150, 92, 71, 103, 71, 124, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8003, 51, 166, 166, 100, 88, 69, 79, 115, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8003, 53, 156, 156, 151, 66, 124, 66, 124, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8004, 26, 78, 78, 40, 26, 40, 26, 28, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8004, 25, 64, 64, 29, 29, 34, 39, 29, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8005, 53, 192, 192, 120, 90, 120, 101, 96, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8005, 55, 172, 172, 101, 101, 123, 134, 101, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8006, 32, 81, 81, 35, 51, 42, 58, 78, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8006, 33, 81, 81, 56, 43, 43, 43, 36, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8006, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8007, 53, 127, 127, 55, 82, 66, 92, 126, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8007, 53, 156, 156, 119, 98, 87, 87, 66, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8007, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8008, 53, 127, 127, 55, 82, 66, 92, 126, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8008, 53, 156, 156, 119, 98, 87, 87, 66, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8008, 54, 169, 169, 123, 94, 94, 110, 97, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8009, 25, 54, 54, 34, 59, 29, 59, 26, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8009, 25, 64, 64, 44, 34, 34, 34, 29, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8009, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8010, 54, 126, 126, 100, 164, 89, 164, 51, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8010, 53, 156, 156, 119, 98, 87, 87, 66, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8010, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8011, 54, 126, 126, 100, 164, 89, 164, 51, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8011, 53, 156, 156, 119, 98, 87, 87, 66, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8011, 53, 166, 166, 130, 98, 77, 87, 71, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8012, 15, 43, 43, 35, 31, 22, 22, 28, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8012, 13, 45, 45, 23, 29, 21, 26, 25, 627); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8013, 34, 124, 124, 102, 52, 88, 52, 65, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8013, 34, 100, 100, 78, 95, 47, 95, 56, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8014, 20, 69, 69, 62, 42, 28, 50, 46, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8015, 20, 67, 67, 62, 42, 24, 42, 46, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8016, 40, 120, 120, 127, 103, 67, 103, 35, 619); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8017, 99, 283, 283, 278, 169, 129, 208, 288, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8017, 99, 293, 293, 218, 139, 258, 199, 228, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8017, 99, 326, 326, 248, 218, 288, 218, 234, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8017, 99, 273, 273, 288, 238, 159, 179, 179, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8017, 99, 283, 283, 278, 119, 228, 119, 228, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8017, 99, 263, 263, 248, 159, 278, 159, 248, 628); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8018, 15, 46, 46, 23, 23, 26, 23, 32, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8018, 20, 64, 64, 35, 34, 43, 34, 57, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8020, 60, 163, 163, 110, 152, 110, 170, 116, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8020, 60, 169, 169, 176, 146, 92, 110, 128, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8020, 60, 193, 193, 134, 122, 110, 122, 182, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8020, 60, 169, 169, 116, 152, 68, 104, 128, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8020, 60, 187, 187, 146, 122, 122, 122, 146, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8020, 60, 205, 205, 176, 121, 98, 146, 123, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8021, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8021, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8021, 50, 178, 178, 123, 113, 173, 163, 113, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8021, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8021, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8021, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8022, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8022, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8022, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8022, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8022, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8022, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8023, 70, 161, 161, 128, 212, 114, 212, 65, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8023, 70, 217, 217, 142, 156, 184, 212, 184, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8023, 70, 217, 217, 156, 142, 212, 184, 184, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8023, 70, 315, 315, 254, 170, 163, 121, 170, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8023, 70, 238, 238, 219, 142, 184, 142, 170, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8023, 70, 217, 217, 219, 212, 163, 156, 128, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8024, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8024, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8024, 50, 146, 146, 113, 88, 73, 78, 105, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8024, 50, 146, 146, 95, 101, 61, 65, 55, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8024, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8026, 64, 194, 194, 111, 85, 145, 81, 144, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8026, 64, 276, 276, 117, 85, 136, 92, 85, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8027, 22, 59, 59, 39, 27, 34, 27, 46, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8027, 22, 59, 59, 39, 27, 34, 27, 46, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8028, 61, 185, 185, 106, 81, 139, 78, 137, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8028, 61, 263, 263, 112, 81, 130, 87, 81, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8029, 25, 81, 81, 57, 47, 67, 47, 44, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8030, 40, 108, 108, 59, 55, 127, 95, 115, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8030, 40, 118, 118, 71, 71, 119, 111, 83, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8031, 40, 184, 184, 83, 54, 91, 62, 83, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8031, 40, 107, 107, 55, 57, 79, 97, 61, 595); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8032, 36, 109, 109, 75, 64, 82, 64, 79, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8032, 35, 92, 92, 77, 77, 56, 56, 52, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8033, 29, 75, 75, 32, 44, 53, 44, 41, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8033, 28, 69, 69, 34, 34, 51, 45, 43, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8034, 41, 119, 119, 60, 77, 97, 85, 73, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8034, 40, 118, 118, 71, 71, 119, 111, 83, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8035, 45, 129, 129, 66, 84, 106, 93, 79, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8035, 44, 129, 129, 78, 78, 130, 122, 91, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8036, 51, 145, 145, 74, 94, 120, 104, 89, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8036, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8037, 23, 68, 68, 35, 33, 33, 54, 32, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8037, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8037, 25, 74, 74, 39, 49, 54, 54, 84, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8038, 25, 74, 74, 38, 36, 35, 59, 35, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8038, 25, 66, 66, 39, 36, 71, 41, 61, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8038, 27, 79, 79, 41, 52, 57, 57, 90, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8039, 15, 49, 49, 32, 41, 20, 29, 35, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8039, 25, 89, 89, 39, 31, 44, 36, 49, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8041, 44, 118, 118, 64, 60, 139, 104, 126, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8042, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8043, 100, 346, 346, 241, 221, 341, 321, 221, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8043, 100, 446, 446, 361, 241, 231, 171, 241, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8043, 100, 306, 306, 201, 221, 261, 301, 261, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8043, 100, 306, 306, 221, 201, 301, 261, 261, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8043, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8043, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8044, 100, 306, 306, 201, 221, 261, 301, 261, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8044, 100, 306, 306, 221, 201, 301, 261, 261, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8044, 100, 346, 346, 241, 221, 341, 321, 221, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8044, 100, 336, 336, 311, 201, 261, 201, 241, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8044, 100, 346, 346, 341, 321, 241, 221, 221, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8044, 100, 446, 446, 361, 241, 231, 171, 241, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8045, 12, 34, 34, 22, 18, 21, 21, 30, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8046, 45, 89, 89, 57, 34, 52, 52, 75, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8046, 45, 89, 89, 57, 34, 52, 52, 75, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8046, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8046, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8046, 55, 150, 150, 123, 85, 123, 112, 145, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8046, 55, 150, 150, 123, 85, 123, 112, 145, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8047, 33, 96, 96, 96, 72, 76, 53, 53, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8047, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8047, 33, 97, 97, 43, 63, 69, 109, 63, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8047, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8047, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8048, 6, 22, 22, 10, 10, 13, 10, 17, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8048, 6, 22, 22, 10, 10, 11, 13, 10, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8049, 40, 108, 108, 86, 103, 110, 79, 61, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8049, 40, 120, 120, 115, 51, 95, 51, 95, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8049, 40, 116, 116, 71, 55, 79, 55, 95, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8049, 40, 114, 114, 115, 87, 91, 63, 63, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8049, 40, 94, 94, 47, 47, 71, 63, 59, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8050, 42, 113, 113, 57, 62, 57, 74, 87, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8050, 42, 109, 109, 99, 99, 49, 112, 78, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8050, 42, 176, 176, 78, 49, 78, 49, 70, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8050, 42, 113, 113, 49, 62, 66, 112, 91, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8051, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8051, 28, 78, 78, 37, 62, 59, 73, 37, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8052, 30, 87, 87, 66, 54, 57, 57, 57, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8052, 30, 104, 104, 48, 60, 51, 60, 33, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8053, 100, 326, 326, 221, 211, 291, 221, 241, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8053, 100, 306, 306, 281, 181, 261, 181, 201, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8054, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8054, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8054, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8054, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8054, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8054, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8055, 11, 38, 38, 15, 15, 16, 21, 19, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8056, 60, 211, 211, 187, 158, 140, 146, 99, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8057, 60, 211, 211, 187, 158, 140, 146, 99, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8057, 58, 204, 204, 181, 153, 136, 141, 96, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8058, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8058, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8058, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8058, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8058, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8058, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8059, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8059, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8059, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8059, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8059, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8059, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8060, 40, 120, 120, 87, 131, 87, 75, 35, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8060, 40, 120, 120, 75, 51, 67, 51, 67, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8060, 40, 108, 108, 55, 59, 55, 71, 83, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8060, 40, 143, 143, 73, 85, 77, 89, 60, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8061, 30, 89, 89, 54, 42, 60, 42, 72, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8061, 29, 84, 84, 53, 56, 64, 58, 38, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8061, 30, 92, 92, 69, 57, 51, 51, 39, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8062, 58, 179, 179, 107, 96, 83, 96, 141, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8062, 59, 190, 190, 115, 101, 79, 91, 132, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8062, 60, 187, 187, 122, 122, 92, 92, 134, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8062, 60, 169, 169, 126, 95, 140, 128, 152, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8063, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8063, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8064, 5, 22, 22, 13, 11, 13, 11, 12, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8064, 5, 41, 41, 7, 7, 10, 17, 11, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8065, 68, 185, 185, 151, 90, 97, 97, 247, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8065, 68, 177, 177, 83, 145, 138, 172, 83, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8065, 68, 204, 204, 199, 165, 124, 138, 90, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8065, 68, 184, 184, 206, 138, 111, 111, 124, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8065, 68, 224, 224, 206, 131, 131, 131, 104, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8065, 68, 231, 231, 138, 172, 83, 124, 165, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8066, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8066, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8067, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8067, 29, 84, 84, 67, 41, 44, 44, 108, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8068, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8068, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8068, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8068, 19, 51, 51, 36, 47, 34, 28, 25, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8069, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8069, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8069, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8069, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8070, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8070, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8070, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8070, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8071, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8071, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8071, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8071, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8072, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8072, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8072, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8072, 35, 103, 103, 80, 101, 77, 66, 59, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8073, 19, 47, 47, 28, 46, 23, 23, 27, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8073, 19, 59, 59, 46, 28, 30, 30, 72, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8074, 25, 59, 59, 36, 59, 29, 29, 34, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8074, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8074, 25, 74, 74, 59, 36, 39, 39, 94, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8075, 28, 65, 65, 40, 65, 31, 31, 37, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8075, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8075, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8076, 27, 79, 79, 63, 39, 41, 41, 101, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8077, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8077, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8078, 26, 77, 77, 61, 37, 40, 40, 97, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8078, 26, 81, 81, 36, 41, 36, 41, 35, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8079, 31, 76, 76, 56, 75, 53, 44, 37, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8080, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8080, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8081, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8081, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8081, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8082, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8082, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8082, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8082, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8083, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8083, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8083, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8083, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8084, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8084, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8084, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8084, 32, 79, 79, 58, 77, 54, 45, 38, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8085, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8085, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8085, 33, 81, 81, 59, 79, 56, 46, 39, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8085, 35, 103, 103, 80, 101, 77, 66, 59, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8086, 18, 48, 48, 34, 45, 33, 27, 24, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8086, 18, 56, 56, 43, 27, 29, 29, 69, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8087, 28, 65, 65, 40, 65, 31, 31, 37, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8087, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8088, 25, 74, 74, 59, 36, 39, 39, 94, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8088, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8089, 26, 77, 77, 61, 37, 40, 40, 97, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8090, 33, 81, 81, 46, 39, 36, 43, 53, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8090, 33, 104, 104, 69, 63, 59, 66, 76, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8090, 34, 83, 83, 47, 41, 37, 44, 54, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8090, 36, 93, 93, 61, 46, 61, 46, 53, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8091, 25, 64, 64, 36, 31, 29, 34, 41, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8091, 25, 64, 64, 39, 59, 29, 41, 46, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8092, 27, 80, 80, 48, 40, 36, 36, 54, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8093, 27, 79, 79, 41, 52, 41, 63, 49, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8094, 35, 85, 85, 52, 80, 38, 56, 63, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8094, 35, 110, 110, 73, 66, 63, 70, 80, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8095, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8095, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8095, 23, 59, 59, 50, 59, 27, 27, 22, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8096, 23, 59, 59, 33, 29, 27, 31, 38, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8096, 25, 64, 64, 39, 59, 29, 41, 46, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8096, 23, 59, 59, 33, 29, 27, 31, 38, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8096, 25, 81, 81, 54, 49, 46, 51, 59, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8097, 25, 68, 68, 44, 34, 44, 34, 39, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8097, 25, 81, 81, 54, 49, 46, 51, 59, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8098, 27, 68, 68, 41, 63, 30, 44, 49, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8098, 27, 87, 87, 57, 52, 49, 55, 63, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8099, 13, 38, 38, 21, 18, 17, 20, 23, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8099, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8099, 15, 42, 42, 23, 20, 19, 22, 26, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8100, 26, 66, 66, 37, 32, 29, 35, 42, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8100, 29, 92, 92, 61, 56, 53, 58, 67, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8100, 29, 92, 92, 61, 56, 53, 58, 67, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8101, 36, 112, 112, 75, 68, 64, 71, 82, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8101, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8101, 38, 118, 118, 79, 71, 68, 75, 87, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8102, 51, 155, 155, 104, 94, 89, 99, 115, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8102, 52, 169, 169, 117, 106, 96, 106, 158, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8102, 53, 172, 172, 119, 108, 98, 108, 161, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8103, 30, 74, 74, 42, 36, 33, 39, 48, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8103, 32, 79, 79, 48, 74, 35, 51, 58, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8104, 33, 96, 96, 58, 47, 43, 43, 65, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8105, 33, 101, 101, 78, 49, 78, 49, 60, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8106, 37, 89, 89, 55, 84, 40, 59, 66, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8106, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8107, 31, 81, 81, 53, 40, 53, 40, 47, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8107, 31, 81, 81, 53, 40, 53, 40, 47, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8108, 29, 72, 72, 41, 35, 32, 38, 47, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8108, 29, 72, 72, 44, 67, 32, 47, 53, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8108, 29, 72, 72, 41, 35, 32, 38, 47, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8108, 29, 85, 85, 51, 42, 39, 39, 58, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8109, 39, 121, 121, 81, 73, 69, 77, 89, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8110, 31, 91, 91, 55, 45, 41, 41, 62, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8110, 31, 98, 98, 65, 59, 56, 62, 71, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8111, 32, 79, 79, 48, 74, 35, 51, 58, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8111, 30, 79, 79, 52, 39, 52, 39, 45, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8112, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8112, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8112, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8113, 32, 79, 79, 45, 38, 35, 42, 51, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8113, 32, 101, 101, 67, 61, 58, 64, 74, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8113, 32, 101, 101, 67, 61, 58, 64, 74, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8114, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8114, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8114, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8115, 51, 155, 155, 104, 94, 89, 99, 115, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8115, 51, 166, 166, 115, 104, 94, 104, 155, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8115, 51, 166, 166, 115, 104, 94, 104, 155, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8116, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8116, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8117, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8118, 32, 92, 92, 74, 45, 48, 48, 118, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8118, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8119, 16, 44, 44, 31, 41, 29, 25, 21, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8119, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8119, 18, 48, 48, 34, 45, 33, 27, 24, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8120, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8120, 23, 59, 59, 43, 56, 40, 33, 29, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8120, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8121, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8121, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8121, 31, 76, 76, 56, 75, 53, 44, 37, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8122, 40, 116, 116, 91, 115, 87, 75, 67, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8122, 41, 119, 119, 93, 118, 89, 77, 68, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8122, 42, 121, 121, 95, 120, 91, 78, 70, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8123, 46, 132, 132, 104, 131, 99, 85, 76, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8123, 47, 135, 135, 106, 134, 101, 87, 78, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8123, 48, 137, 137, 108, 137, 103, 89, 79, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8124, 18, 45, 45, 27, 43, 22, 22, 25, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8124, 20, 61, 61, 48, 30, 32, 32, 76, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8125, 24, 61, 61, 44, 59, 42, 35, 30, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8126, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8127, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8127, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8127, 31, 76, 76, 56, 75, 53, 44, 37, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8128, 27, 79, 79, 63, 39, 41, 41, 101, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8129, 65, 232, 232, 106, 140, 106, 140, 93, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8130, 31, 80, 80, 34, 47, 50, 56, 44, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8130, 31, 154, 154, 62, 65, 40, 44, 56, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8131, 15, 53, 53, 17, 23, 30, 26, 17, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8132, 62, 410, 410, 39, 39, 120, 194, 95, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8133, 35, 110, 110, 89, 73, 66, 73, 82, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8134, 62, 404, 404, 33, 33, 70, 157, 89, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8135, 22, 61, 61, 23, 25, 32, 37, 19, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8136, 10, 32, 32, 20, 17, 13, 17, 19, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8136, 10, 38, 38, 13, 17, 22, 19, 13, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8137, 65, 176, 176, 99, 145, 216, 145, 132, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8137, 65, 195, 195, 151, 106, 112, 106, 177, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8137, 65, 190, 190, 151, 138, 171, 151, 131, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8138, 64, 186, 186, 85, 89, 104, 111, 72, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8138, 64, 218, 218, 117, 121, 149, 143, 104, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8139, 40, 136, 136, 99, 67, 91, 67, 83, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8140, 61, 233, 233, 81, 51, 81, 57, 51, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8140, 61, 179, 179, 127, 105, 105, 98, 163, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8140, 61, 202, 202, 94, 118, 100, 118, 63, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8141, 61, 166, 166, 75, 124, 100, 81, 75, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8141, 61, 208, 208, 124, 155, 75, 112, 148, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8142, 34, 90, 90, 34, 36, 47, 54, 27, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8142, 34, 107, 107, 81, 58, 61, 58, 95, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8143, 62, 174, 174, 121, 131, 94, 146, 157, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8143, 62, 212, 212, 163, 145, 76, 145, 95, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8143, 62, 224, 224, 145, 126, 76, 126, 138, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8143, 62, 212, 212, 126, 157, 76, 114, 151, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8144, 24, 69, 69, 43, 56, 37, 52, 33, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8145, 11, 46, 46, 24, 24, 23, 23, 18, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8146, 61, 178, 178, 81, 85, 100, 106, 69, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8146, 61, 208, 208, 112, 116, 142, 136, 100, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8147, 61, 397, 397, 33, 33, 69, 155, 87, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8147, 61, 184, 184, 152, 124, 112, 124, 139, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8148, 18, 50, 50, 24, 29, 36, 29, 22, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8148, 18, 48, 48, 21, 33, 24, 29, 35, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8149, 64, 186, 186, 143, 117, 104, 104, 79, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8149, 64, 205, 205, 162, 98, 136, 92, 175, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8150, 19, 64, 64, 42, 32, 21, 25, 25, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8151, 40, 128, 128, 115, 82, 95, 82, 75, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8152, 65, 182, 182, 119, 106, 112, 112, 177, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8152, 65, 228, 228, 190, 96, 164, 96, 120, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8153, 19, 60, 60, 42, 36, 25, 36, 34, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8154, 20, 59, 59, 30, 29, 34, 29, 41, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8155, 27, 73, 73, 53, 33, 33, 33, 49, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8155, 27, 87, 87, 49, 44, 49, 44, 51, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8155, 27, 73, 73, 53, 33, 33, 33, 49, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8156, 29, 84, 84, 64, 38, 32, 41, 54, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8157, 62, 200, 200, 121, 133, 171, 96, 145, 625); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8157, 62, 162, 162, 70, 89, 95, 163, 132, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8157, 62, 189, 189, 132, 90, 95, 90, 107, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8157, 62, 181, 181, 188, 151, 95, 126, 107, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8157, 62, 168, 168, 151, 137, 95, 112, 166, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8158, 40, 128, 128, 103, 71, 99, 75, 75, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8159, 25, 71, 71, 39, 34, 34, 34, 51, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8160, 19, 54, 54, 31, 30, 31, 30, 36, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8160, 19, 54, 54, 31, 30, 31, 30, 36, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8160, 19, 54, 54, 31, 30, 31, 30, 36, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8161, 17, 56, 56, 42, 33, 38, 29, 44, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8161, 17, 56, 56, 42, 33, 38, 29, 44, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8161, 17, 56, 56, 42, 33, 38, 29, 44, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8162, 63, 152, 152, 71, 84, 105, 94, 71, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8162, 63, 190, 190, 122, 96, 159, 134, 65, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8162, 63, 183, 183, 103, 115, 137, 125, 134, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8163, 24, 72, 72, 50, 43, 37, 33, 44, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8164, 16, 44, 44, 20, 21, 26, 33, 28, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8165, 16, 41, 41, 25, 29, 20, 23, 29, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8165, 16, 47, 47, 27, 26, 31, 26, 28, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8166, 61, 178, 178, 136, 112, 100, 100, 75, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8166, 61, 196, 196, 155, 94, 130, 87, 167, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8167, 16, 49, 49, 33, 25, 33, 26, 29, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8168, 62, 174, 174, 114, 101, 107, 107, 169, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8168, 62, 218, 218, 182, 91, 157, 91, 115, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8169, 17, 50, 50, 29, 28, 23, 21, 25, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8170, 64, 186, 186, 181, 111, 85, 136, 188, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8170, 64, 237, 237, 194, 130, 117, 104, 130, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8170, 64, 187, 187, 149, 136, 168, 149, 129, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8170, 64, 263, 263, 136, 130, 136, 149, 104, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8170, 64, 186, 186, 92, 66, 149, 200, 162, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8171, 58, 188, 188, 114, 125, 160, 90, 136, 625); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8171, 58, 152, 152, 66, 83, 89, 153, 124, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8171, 58, 178, 178, 124, 85, 89, 85, 101, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8171, 58, 170, 170, 176, 141, 89, 118, 101, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8171, 58, 158, 158, 141, 129, 89, 105, 155, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8172, 24, 69, 69, 37, 32, 32, 32, 49, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8173, 16, 54, 54, 17, 26, 17, 26, 23, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8174, 60, 145, 145, 68, 80, 101, 90, 68, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8174, 60, 181, 181, 116, 92, 152, 128, 62, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8174, 60, 175, 175, 98, 110, 131, 120, 128, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8175, 13, 34, 34, 18, 27, 34, 23, 21, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8176, 55, 161, 161, 101, 151, 167, 123, 90, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8177, 9, 24, 24, 18, 12, 14, 16, 25, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8178, 28, 87, 87, 40, 41, 48, 51, 34, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8179, 13, 40, 40, 22, 48, 22, 48, 22, 310); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8180, 55, 139, 139, 79, 189, 79, 189, 79, 310); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8181, 33, 101, 101, 72, 109, 72, 63, 30, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8181, 33, 107, 107, 77, 59, 59, 69, 61, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8181, 34, 100, 100, 92, 105, 58, 61, 81, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8182, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8182, 30, 89, 89, 69, 54, 52, 52, 75, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8183, 40, 112, 112, 67, 79, 67, 79, 83, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8183, 40, 179, 179, 115, 67, 51, 67, 59, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8184, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8184, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8185, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8185, 46, 205, 205, 131, 76, 58, 76, 67, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8186, 49, 135, 135, 81, 96, 81, 96, 101, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8186, 49, 217, 217, 140, 81, 61, 81, 71, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8187, 52, 143, 143, 86, 101, 86, 101, 106, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8187, 52, 230, 230, 148, 86, 65, 86, 75, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8188, 39, 109, 109, 65, 77, 65, 77, 81, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8188, 39, 175, 175, 112, 65, 50, 65, 58, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8189, 43, 120, 120, 72, 84, 72, 84, 89, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8189, 43, 192, 192, 123, 72, 54, 72, 63, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8190, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8190, 46, 205, 205, 131, 76, 58, 76, 67, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8191, 49, 135, 135, 81, 96, 81, 96, 101, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8191, 49, 217, 217, 140, 81, 61, 81, 71, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8192, 52, 143, 143, 86, 101, 86, 101, 106, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8192, 52, 230, 230, 148, 86, 65, 86, 75, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8193, 47, 130, 130, 78, 92, 78, 92, 97, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8193, 47, 209, 209, 134, 78, 59, 78, 68, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8194, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8194, 58, 255, 255, 165, 95, 72, 95, 83, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8195, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8195, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8195, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8195, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8195, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8195, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8197, 63, 177, 177, 147, 122, 96, 96, 134, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8197, 63, 192, 192, 178, 141, 103, 141, 88, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8197, 63, 188, 188, 146, 192, 95, 173, 52, 299); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8198, 63, 225, 225, 103, 136, 103, 136, 90, 560); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8198, 63, 303, 303, 122, 128, 78, 84, 109, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8198, 63, 239, 239, 134, 115, 134, 128, 65, 629); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8199, 65, 221, 221, 125, 132, 158, 171, 67, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8199, 65, 185, 185, 144, 179, 131, 179, 71, 303); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8199, 65, 173, 173, 93, 216, 151, 164, 67, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8200, 30, 101, 101, 49, 62, 45, 62, 62, 607); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8201, 31, 97, 97, 87, 53, 53, 53, 71, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8201, 31, 97, 97, 87, 53, 53, 53, 71, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8201, 31, 97, 97, 87, 53, 53, 53, 71, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8202, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8203, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8204, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8205, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8206, 54, 142, 142, 46, 62, 46, 73, 105, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8207, 30, 92, 92, 57, 57, 57, 57, 57, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8208, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8208, 29, 124, 124, 56, 35, 56, 35, 50, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8209, 20, 61, 61, 36, 28, 38, 30, 26, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8210, 27, 79, 79, 47, 36, 49, 39, 33, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8211, 30, 86, 86, 51, 39, 54, 42, 36, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8212, 32, 85, 85, 54, 45, 80, 67, 58, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8212, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8213, 35, 92, 92, 59, 49, 87, 73, 63, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8213, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8214, 30, 92, 92, 57, 57, 57, 57, 57, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8215, 28, 76, 76, 48, 40, 71, 59, 51, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8215, 28, 120, 120, 54, 34, 54, 34, 48, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8216, 31, 95, 95, 59, 59, 59, 59, 59, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8217, 19, 58, 58, 34, 27, 36, 28, 25, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8218, 29, 84, 84, 50, 38, 53, 41, 35, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8219, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8220, 34, 90, 90, 58, 47, 85, 71, 61, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8220, 34, 97, 97, 58, 44, 61, 47, 41, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8221, 37, 97, 97, 62, 51, 92, 77, 66, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8221, 37, 112, 112, 92, 70, 96, 73, 47, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8222, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8223, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8223, 19, 56, 56, 36, 25, 34, 23, 44, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8224, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8224, 30, 83, 83, 54, 36, 51, 33, 66, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8225, 38, 122, 122, 88, 68, 68, 79, 70, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8225, 38, 103, 103, 68, 45, 64, 41, 83, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8226, 53, 166, 166, 121, 92, 92, 108, 96, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8226, 53, 172, 172, 135, 82, 114, 77, 145, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8227, 21, 59, 59, 34, 32, 39, 33, 35, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8228, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8228, 27, 89, 89, 60, 47, 44, 47, 53, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8229, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8229, 33, 107, 107, 72, 56, 53, 56, 63, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8230, 42, 157, 157, 114, 119, 77, 80, 59, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8230, 42, 134, 134, 97, 74, 74, 87, 77, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8230, 42, 133, 133, 91, 70, 66, 70, 79, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8231, 50, 186, 186, 135, 141, 91, 95, 70, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8231, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8231, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8231, 50, 157, 157, 108, 83, 78, 83, 94, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8232, 26, 73, 73, 37, 37, 27, 27, 22, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8232, 28, 101, 101, 62, 62, 51, 51, 34, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8233, 18, 52, 52, 29, 25, 29, 25, 34, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8233, 18, 52, 52, 29, 25, 29, 25, 34, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8234, 65, 189, 189, 119, 119, 119, 119, 119, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8235, 63, 146, 146, 65, 68, 90, 93, 109, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8235, 63, 152, 152, 112, 103, 71, 90, 107, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8235, 63, 196, 196, 143, 109, 109, 128, 113, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8236, 35, 173, 173, 70, 73, 45, 49, 63, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8237, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8237, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8238, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8238, 34, 98, 98, 47, 51, 47, 51, 54, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8239, 24, 66, 66, 37, 32, 37, 32, 44, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8239, 24, 66, 66, 37, 32, 37, 32, 44, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8239, 24, 66, 66, 37, 32, 37, 32, 44, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8239, 24, 66, 66, 37, 32, 37, 32, 44, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8240, 26, 64, 64, 40, 40, 48, 45, 37, 501); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8240, 26, 73, 73, 35, 40, 48, 58, 35, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8241, 60, 175, 175, 110, 110, 110, 110, 110, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8241, 60, 175, 175, 110, 110, 110, 110, 110, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8241, 60, 175, 175, 110, 110, 110, 110, 110, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8242, 40, 120, 120, 75, 75, 75, 75, 75, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8243, 28, 87, 87, 54, 54, 54, 54, 54, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8244, 28, 87, 87, 54, 54, 54, 54, 54, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8245, 60, 187, 187, 110, 110, 134, 146, 110, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8245, 60, 169, 169, 104, 98, 158, 140, 182, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8245, 60, 175, 175, 110, 110, 110, 110, 110, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8246, 34, 103, 103, 64, 64, 64, 64, 64, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8247, 31, 80, 80, 57, 53, 37, 47, 55, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8247, 33, 107, 107, 77, 59, 59, 69, 61, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8248, 22, 66, 66, 39, 30, 41, 32, 28, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8249, 27, 79, 79, 47, 36, 49, 39, 33, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8250, 31, 70, 70, 44, 50, 59, 50, 68, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8250, 31, 95, 95, 40, 47, 50, 47, 31, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8250, 31, 89, 89, 53, 40, 56, 44, 37, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8251, 42, 117, 117, 83, 91, 104, 91, 116, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8251, 42, 142, 142, 70, 78, 83, 78, 57, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8251, 42, 125, 125, 104, 78, 108, 83, 53, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8252, 48, 132, 132, 94, 103, 118, 103, 132, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8252, 48, 180, 180, 99, 108, 113, 108, 84, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8252, 48, 142, 142, 118, 89, 123, 94, 60, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8253, 50, 122, 122, 81, 67, 81, 67, 84, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8253, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8253, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8253, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8253, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8254, 50, 122, 122, 81, 67, 81, 67, 84, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8254, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8254, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8254, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8254, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8254, 50, 123, 123, 53, 73, 88, 73, 68, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8255, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8255, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8255, 50, 133, 133, 98, 73, 63, 63, 103, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8255, 50, 122, 122, 81, 67, 81, 67, 84, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8255, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8255, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8256, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8256, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8256, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8256, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8256, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8256, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8258, 18, 48, 48, 29, 25, 25, 25, 43, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8258, 18, 45, 45, 25, 36, 36, 20, 33, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8259, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8259, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8260, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8260, 18, 48, 48, 26, 25, 29, 34, 34, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8261, 18, 48, 48, 22, 29, 31, 31, 47, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8261, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8262, 24, 69, 69, 47, 35, 47, 37, 42, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8262, 24, 60, 60, 33, 32, 37, 44, 44, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8263, 22, 57, 57, 34, 30, 30, 30, 52, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8263, 22, 57, 57, 34, 30, 30, 30, 52, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8263, 22, 68, 68, 41, 41, 34, 34, 52, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8264, 18, 54, 54, 36, 27, 36, 29, 33, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8264, 18, 48, 48, 26, 25, 29, 34, 34, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8265, 29, 81, 81, 56, 41, 56, 44, 50, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8265, 29, 71, 71, 39, 38, 44, 53, 53, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8266, 18, 48, 48, 22, 29, 31, 31, 47, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8266, 18, 43, 43, 24, 36, 45, 31, 27, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8267, 18, 48, 48, 29, 25, 25, 25, 43, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8267, 18, 45, 45, 25, 36, 36, 20, 33, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8268, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8268, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8269, 24, 69, 69, 47, 35, 47, 37, 42, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8269, 24, 60, 60, 33, 32, 37, 44, 44, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8270, 30, 83, 83, 57, 42, 57, 45, 51, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8270, 30, 73, 73, 40, 39, 45, 54, 54, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8271, 22, 57, 57, 34, 30, 30, 30, 52, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8271, 22, 57, 57, 34, 30, 30, 30, 52, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8271, 22, 68, 68, 41, 41, 34, 34, 52, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8272, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8272, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8272, 23, 61, 61, 44, 40, 29, 36, 42, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8273, 36, 91, 91, 66, 61, 43, 53, 63, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8273, 37, 119, 119, 86, 66, 66, 77, 68, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8273, 38, 122, 122, 88, 68, 68, 79, 70, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8274, 56, 175, 175, 128, 97, 97, 114, 101, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8274, 57, 178, 178, 130, 99, 99, 116, 103, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8274, 58, 141, 141, 103, 95, 66, 83, 98, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8275, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8275, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8276, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8277, 48, 152, 152, 110, 84, 84, 99, 87, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8278, 64, 199, 199, 145, 111, 111, 130, 115, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8279, 31, 101, 101, 68, 75, 34, 34, 31, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8280, 100, 226, 226, 201, 241, 101, 101, 81, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8280, 100, 276, 276, 231, 155, 241, 211, 227, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8280, 100, 276, 276, 131, 151, 131, 181, 131, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8280, 100, 236, 236, 175, 161, 111, 141, 167, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8280, 100, 206, 206, 251, 221, 91, 91, 141, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8281, 100, 226, 226, 201, 241, 101, 101, 81, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8281, 100, 276, 276, 231, 155, 241, 211, 227, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8281, 100, 286, 286, 131, 137, 161, 171, 111, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8281, 100, 196, 196, 81, 71, 251, 151, 221, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8281, 100, 266, 266, 137, 131, 127, 221, 125, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8282, 100, 256, 256, 231, 271, 131, 131, 111, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8282, 100, 286, 286, 131, 137, 161, 171, 111, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8282, 100, 246, 246, 211, 151, 171, 171, 221, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8282, 100, 306, 306, 225, 171, 171, 201, 177, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8282, 100, 256, 256, 301, 271, 141, 141, 191, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8282, 100, 268, 268, 185, 155, 151, 151, 171, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8283, 100, 326, 326, 151, 191, 161, 191, 101, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8283, 100, 256, 256, 301, 271, 141, 141, 191, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8283, 100, 166, 166, 151, 91, 111, 131, 231, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8283, 100, 306, 306, 225, 171, 171, 201, 177, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8283, 100, 276, 276, 171, 171, 141, 141, 221, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8283, 100, 286, 286, 165, 175, 151, 151, 153, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8284, 100, 306, 306, 281, 301, 151, 171, 131, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8284, 100, 336, 336, 181, 187, 231, 221, 161, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8284, 100, 326, 326, 181, 201, 181, 231, 181, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8284, 100, 276, 276, 241, 181, 201, 201, 251, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8284, 100, 276, 276, 291, 241, 151, 181, 211, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8284, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8285, 100, 226, 226, 111, 101, 281, 181, 251, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8285, 100, 206, 206, 131, 151, 181, 151, 211, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8285, 100, 326, 326, 171, 171, 121, 121, 71, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8285, 100, 316, 316, 187, 181, 187, 271, 175, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8285, 100, 426, 426, 181, 131, 211, 141, 131, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8285, 100, 266, 266, 121, 201, 161, 131, 121, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8286, 100, 296, 296, 241, 231, 121, 181, 261, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8286, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8286, 100, 216, 216, 201, 141, 141, 181, 281, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8286, 100, 304, 304, 207, 241, 211, 251, 197, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8286, 100, 266, 266, 211, 179, 171, 199, 201, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8286, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8287, 100, 296, 296, 241, 231, 121, 181, 261, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8287, 100, 276, 276, 241, 181, 201, 201, 251, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8287, 100, 216, 216, 201, 141, 141, 181, 281, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8287, 100, 328, 328, 309, 231, 241, 241, 201, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8287, 100, 266, 266, 211, 179, 171, 199, 201, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8287, 100, 326, 326, 225, 215, 191, 211, 193, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8288, 50, 123, 123, 53, 73, 88, 73, 68, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8288, 50, 133, 133, 98, 73, 63, 63, 103, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8288, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8288, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8288, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8288, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8290, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8291, 16, 41, 41, 28, 21, 18, 21, 33, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8291, 16, 42, 42, 28, 23, 26, 26, 39, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8292, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8292, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8292, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8293, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8293, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8293, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8293, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8294, 23, 59, 59, 33, 29, 31, 31, 54, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8295, 20, 51, 51, 34, 28, 32, 32, 48, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8295, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8296, 24, 64, 64, 37, 37, 44, 44, 35, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8296, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8297, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8297, 28, 70, 70, 43, 37, 37, 37, 65, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8297, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8298, 24, 61, 61, 35, 32, 30, 30, 40, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8298, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8298, 24, 57, 57, 40, 30, 25, 30, 48, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8298, 24, 59, 59, 40, 32, 37, 37, 56, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8298, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8299, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8299, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8300, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8300, 27, 68, 68, 39, 33, 36, 36, 63, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8300, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8300, 27, 80, 80, 47, 44, 41, 41, 53, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8301, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8302, 29, 69, 69, 47, 38, 44, 44, 67, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8302, 29, 84, 84, 67, 47, 67, 61, 79, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8303, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8303, 28, 73, 73, 43, 45, 57, 51, 31, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8303, 28, 73, 73, 43, 45, 57, 51, 31, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8304, 29, 78, 78, 58, 35, 56, 32, 38, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8304, 29, 75, 75, 44, 47, 58, 53, 32, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8304, 29, 87, 87, 47, 82, 73, 38, 50, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8305, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8305, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8305, 30, 89, 89, 42, 48, 42, 57, 42, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8306, 31, 80, 80, 57, 53, 37, 47, 55, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8306, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8307, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8308, 20, 57, 57, 32, 50, 28, 32, 26, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8309, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8309, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8309, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8310, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8310, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8310, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8310, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8311, 23, 59, 59, 33, 29, 31, 31, 54, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8312, 20, 51, 51, 34, 28, 32, 32, 48, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8312, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8313, 24, 64, 64, 37, 37, 44, 44, 35, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8313, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8314, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8314, 28, 70, 70, 43, 37, 37, 37, 65, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8314, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8315, 24, 61, 61, 35, 32, 30, 30, 40, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8315, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8315, 24, 57, 57, 40, 30, 25, 30, 48, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8315, 24, 61, 61, 35, 32, 30, 30, 40, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8315, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8316, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8316, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8317, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8317, 27, 68, 68, 39, 33, 36, 36, 63, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8317, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8317, 27, 80, 80, 47, 44, 41, 41, 53, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8318, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8319, 29, 72, 72, 41, 38, 35, 35, 47, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8319, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8320, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8320, 28, 73, 73, 43, 45, 57, 51, 31, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8320, 28, 73, 73, 43, 45, 57, 51, 31, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8321, 29, 78, 78, 58, 35, 56, 32, 38, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8321, 29, 75, 75, 44, 47, 58, 53, 32, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8321, 29, 87, 87, 47, 82, 73, 38, 50, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8322, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8322, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8322, 30, 89, 89, 42, 48, 42, 57, 42, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8323, 31, 80, 80, 57, 53, 37, 47, 55, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8323, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8324, 16, 42, 42, 28, 23, 26, 26, 39, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8325, 36, 123, 123, 84, 80, 71, 79, 72, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8326, 33, 107, 107, 77, 59, 59, 69, 61, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8327, 30, 92, 92, 53, 56, 48, 48, 49, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8327, 34, 97, 97, 78, 54, 78, 71, 92, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8328, 16, 47, 47, 37, 28, 31, 31, 39, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8328, 16, 47, 47, 37, 28, 31, 31, 39, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8329, 32, 85, 85, 70, 51, 58, 58, 74, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8329, 32, 85, 85, 70, 51, 58, 58, 74, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8330, 36, 94, 94, 79, 57, 64, 64, 82, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8330, 34, 97, 97, 78, 54, 78, 71, 92, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8330, 36, 94, 94, 79, 57, 64, 64, 82, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8331, 9, 28, 28, 14, 15, 14, 18, 17, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8331, 9, 28, 28, 14, 15, 14, 18, 17, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8331, 12, 37, 37, 21, 21, 24, 24, 20, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8332, 14, 38, 38, 19, 21, 19, 25, 24, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8332, 14, 38, 38, 19, 21, 19, 25, 24, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8332, 17, 53, 53, 32, 32, 38, 38, 31, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8333, 26, 73, 73, 37, 40, 37, 48, 55, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8333, 26, 73, 73, 37, 40, 37, 48, 55, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8333, 29, 84, 84, 51, 51, 61, 61, 50, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8334, 30, 83, 83, 42, 45, 42, 54, 63, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8334, 30, 83, 83, 42, 45, 42, 54, 63, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8334, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8335, 33, 104, 104, 53, 63, 53, 79, 89, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8335, 33, 104, 104, 53, 63, 53, 79, 89, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8335, 38, 122, 122, 81, 81, 94, 94, 79, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8336, 32, 88, 88, 45, 48, 45, 58, 67, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8336, 32, 88, 88, 45, 48, 45, 58, 67, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8337, 34, 103, 103, 54, 54, 71, 58, 47, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8338, 15, 41, 41, 22, 22, 25, 29, 29, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8340, 15, 49, 49, 37, 25, 35, 23, 26, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8340, 15, 51, 51, 29, 30, 26, 26, 27, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8341, 19, 60, 60, 46, 30, 44, 28, 32, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8341, 19, 59, 59, 39, 33, 32, 32, 36, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8341, 21, 76, 76, 51, 49, 44, 48, 44, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8342, 24, 73, 73, 56, 37, 54, 35, 40, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8342, 24, 71, 71, 48, 41, 40, 40, 44, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8342, 26, 92, 92, 62, 59, 53, 58, 53, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8343, 30, 89, 89, 69, 45, 66, 42, 48, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8343, 32, 105, 105, 81, 65, 70, 64, 70, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8343, 32, 111, 111, 75, 72, 64, 70, 65, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8344, 31, 104, 104, 63, 55, 44, 50, 71, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8344, 33, 97, 97, 82, 63, 69, 69, 86, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8345, 37, 130, 130, 88, 81, 110, 66, 59, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8346, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8347, 31, 95, 95, 44, 45, 53, 56, 37, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8348, 37, 112, 112, 51, 53, 62, 66, 44, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8349, 43, 128, 128, 59, 61, 72, 76, 50, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8350, 24, 66, 66, 49, 54, 23, 28, 32, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8351, 18, 48, 48, 31, 22, 22, 22, 42, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8351, 18, 56, 56, 29, 29, 33, 36, 29, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8352, 20, 61, 61, 28, 36, 28, 36, 26, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8352, 20, 55, 55, 32, 34, 42, 38, 24, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8352, 20, 55, 55, 28, 36, 28, 42, 32, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8353, 25, 74, 74, 34, 44, 34, 44, 31, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8353, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8353, 25, 66, 66, 34, 44, 34, 51, 39, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8354, 28, 81, 81, 87, 59, 48, 48, 54, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8354, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8354, 28, 73, 73, 37, 48, 37, 57, 43, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8355, 31, 89, 89, 96, 65, 53, 53, 59, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8355, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8355, 31, 80, 80, 40, 53, 40, 62, 47, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8356, 40, 112, 112, 123, 83, 67, 67, 75, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8356, 40, 124, 124, 83, 87, 107, 91, 59, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8356, 40, 124, 124, 75, 91, 75, 103, 83, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8357, 23, 64, 64, 47, 52, 22, 27, 31, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8357, 23, 59, 59, 31, 38, 31, 45, 38, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8358, 18, 56, 56, 25, 33, 25, 33, 24, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8358, 18, 59, 59, 18, 29, 18, 29, 25, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8359, 30, 77, 77, 39, 51, 39, 60, 45, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8360, 23, 64, 64, 33, 33, 29, 29, 36, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8360, 23, 61, 61, 31, 40, 31, 47, 36, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8361, 19, 62, 62, 19, 30, 19, 30, 27, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8361, 19, 58, 58, 30, 30, 34, 38, 30, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8362, 18, 56, 56, 29, 29, 33, 36, 29, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8362, 18, 59, 59, 18, 29, 18, 29, 25, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8363, 27, 71, 71, 36, 47, 36, 55, 41, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8363, 27, 71, 71, 36, 47, 36, 55, 41, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8363, 27, 71, 71, 36, 47, 36, 55, 41, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8364, 21, 63, 63, 29, 37, 29, 37, 27, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8365, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8365, 22, 70, 70, 21, 34, 21, 34, 30, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8366, 18, 56, 56, 25, 33, 25, 33, 24, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8367, 17, 46, 46, 29, 21, 21, 21, 40, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8367, 17, 53, 53, 28, 28, 31, 34, 28, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8368, 22, 70, 70, 21, 34, 21, 34, 30, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8368, 22, 66, 66, 34, 34, 39, 43, 34, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8369, 19, 62, 62, 38, 27, 34, 27, 34, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8370, 22, 61, 61, 45, 50, 21, 26, 30, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8370, 22, 57, 57, 30, 37, 30, 43, 37, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8371, 19, 58, 58, 27, 34, 27, 34, 25, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8371, 19, 52, 52, 30, 32, 40, 36, 23, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8371, 19, 52, 52, 27, 34, 27, 40, 30, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8372, 25, 74, 74, 34, 44, 34, 44, 31, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8372, 25, 74, 74, 46, 49, 56, 51, 34, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8372, 25, 66, 66, 34, 44, 34, 51, 39, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8373, 28, 81, 81, 87, 59, 48, 48, 54, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8373, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8373, 28, 73, 73, 37, 48, 37, 57, 43, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8374, 31, 89, 89, 96, 65, 53, 53, 59, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8374, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8374, 31, 80, 80, 40, 53, 40, 62, 47, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8375, 40, 112, 112, 123, 83, 67, 67, 75, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8375, 40, 124, 124, 83, 87, 107, 91, 59, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8375, 40, 124, 124, 75, 91, 75, 103, 83, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8376, 17, 53, 53, 24, 31, 24, 31, 23, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8376, 17, 56, 56, 17, 28, 17, 28, 24, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8377, 23, 64, 64, 33, 33, 29, 29, 36, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8377, 23, 61, 61, 31, 40, 31, 47, 36, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8378, 18, 59, 59, 18, 29, 18, 29, 25, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8378, 18, 56, 56, 29, 29, 33, 36, 29, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8379, 17, 56, 56, 17, 28, 17, 28, 24, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8379, 19, 58, 58, 30, 30, 34, 38, 30, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8380, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8380, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8380, 18, 50, 50, 29, 31, 38, 34, 22, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8380, 18, 52, 52, 38, 24, 36, 22, 25, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8381, 25, 64, 64, 36, 31, 34, 34, 59, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8382, 30, 89, 89, 57, 51, 54, 54, 84, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8383, 55, 156, 156, 101, 90, 96, 96, 151, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8384, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8384, 28, 70, 70, 43, 37, 37, 37, 65, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8384, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8385, 19, 51, 51, 28, 27, 25, 25, 33, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8385, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8385, 19, 47, 47, 33, 25, 21, 25, 39, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8385, 19, 54, 54, 40, 25, 38, 23, 27, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8386, 29, 69, 69, 47, 38, 44, 44, 67, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8386, 29, 84, 84, 67, 47, 67, 61, 79, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8387, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8387, 32, 91, 91, 74, 51, 74, 67, 86, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8388, 49, 110, 110, 76, 61, 71, 71, 110, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8388, 49, 135, 135, 110, 76, 110, 101, 130, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8389, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8389, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8390, 23, 59, 59, 33, 29, 31, 31, 54, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8391, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8392, 21, 55, 55, 31, 29, 27, 27, 36, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8392, 21, 65, 65, 37, 35, 33, 33, 42, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8393, 33, 101, 101, 46, 48, 56, 59, 39, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8394, 35, 85, 85, 49, 42, 45, 45, 80, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8394, 35, 85, 85, 49, 42, 45, 45, 80, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8394, 35, 82, 82, 56, 45, 52, 52, 80, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8394, 35, 106, 106, 49, 51, 59, 63, 42, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8395, 20, 53, 53, 30, 26, 28, 28, 48, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8395, 20, 55, 55, 32, 34, 42, 38, 24, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8395, 20, 53, 53, 30, 28, 26, 26, 34, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8396, 19, 52, 52, 37, 34, 25, 30, 35, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8397, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8397, 27, 68, 68, 39, 33, 36, 36, 63, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8397, 27, 68, 68, 39, 36, 33, 33, 44, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8397, 27, 80, 80, 47, 44, 41, 41, 53, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8398, 20, 51, 51, 34, 28, 32, 32, 48, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8398, 20, 65, 65, 30, 31, 36, 38, 26, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8399, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8399, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8399, 30, 89, 89, 42, 48, 42, 57, 42, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8400, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8400, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8400, 16, 44, 44, 25, 23, 21, 21, 28, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8401, 21, 65, 65, 37, 35, 33, 33, 42, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8401, 21, 65, 65, 37, 35, 33, 33, 42, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8401, 18, 48, 48, 27, 25, 24, 24, 31, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8402, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8402, 29, 85, 85, 50, 47, 44, 44, 56, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8402, 26, 78, 78, 45, 42, 40, 40, 51, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8403, 47, 133, 133, 78, 73, 68, 68, 88, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8403, 47, 133, 133, 78, 73, 68, 68, 88, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8403, 50, 161, 161, 103, 98, 93, 93, 124, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8406, 29, 84, 84, 57, 48, 47, 47, 53, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8406, 29, 90, 90, 51, 54, 47, 47, 47, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8407, 49, 136, 136, 93, 78, 76, 76, 86, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8407, 49, 145, 145, 83, 88, 76, 76, 77, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8408, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8408, 28, 73, 73, 43, 45, 57, 51, 31, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8408, 28, 73, 73, 43, 45, 57, 51, 31, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8409, 22, 61, 61, 45, 28, 43, 26, 30, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8409, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8410, 48, 108, 108, 89, 75, 65, 75, 46, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8410, 48, 108, 108, 89, 75, 65, 75, 46, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8410, 49, 135, 135, 115, 101, 81, 101, 52, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8411, 22, 59, 59, 34, 37, 45, 41, 26, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8411, 22, 59, 59, 34, 34, 41, 41, 32, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8412, 31, 80, 80, 57, 53, 37, 47, 55, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8412, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8413, 49, 155, 155, 112, 86, 86, 101, 89, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8413, 49, 155, 155, 112, 86, 86, 101, 89, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8414, 54, 169, 169, 123, 94, 94, 110, 97, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8414, 54, 169, 169, 123, 94, 94, 110, 97, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8415, 16, 41, 41, 28, 21, 18, 21, 33, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8415, 16, 42, 42, 28, 23, 26, 26, 39, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8416, 21, 86, 86, 31, 20, 31, 23, 20, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8416, 21, 55, 55, 31, 29, 27, 27, 36, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8416, 21, 55, 55, 31, 27, 29, 29, 50, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8417, 24, 61, 61, 35, 32, 30, 30, 40, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8417, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8417, 24, 57, 57, 40, 30, 25, 30, 48, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8417, 24, 59, 59, 40, 32, 37, 37, 56, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8417, 24, 61, 61, 35, 30, 32, 32, 56, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8418, 27, 80, 80, 47, 44, 41, 41, 53, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8418, 27, 68, 68, 39, 33, 36, 36, 63, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8418, 27, 76, 76, 58, 47, 41, 52, 67, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8418, 27, 65, 65, 44, 36, 41, 41, 63, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8418, 27, 68, 68, 39, 33, 36, 36, 63, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8419, 47, 133, 133, 78, 73, 68, 68, 88, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8419, 47, 135, 135, 87, 78, 83, 83, 130, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8419, 47, 125, 125, 98, 78, 68, 87, 113, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8419, 47, 106, 106, 73, 59, 68, 68, 106, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8419, 47, 135, 135, 87, 78, 83, 83, 130, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8420, 52, 167, 167, 106, 101, 96, 96, 128, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8420, 52, 148, 148, 96, 86, 91, 91, 143, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8420, 52, 137, 137, 107, 86, 75, 96, 124, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8420, 52, 143, 143, 117, 80, 117, 106, 138, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8420, 52, 148, 148, 96, 86, 91, 91, 143, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8421, 24, 64, 64, 37, 37, 44, 44, 35, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8421, 24, 71, 71, 43, 43, 52, 52, 42, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8422, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8422, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8423, 29, 78, 78, 58, 35, 56, 32, 38, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8423, 29, 75, 75, 44, 47, 58, 53, 32, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8423, 29, 87, 87, 47, 82, 73, 38, 50, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8424, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8425, 28, 98, 98, 43, 34, 48, 39, 54, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8425, 28, 81, 81, 48, 48, 62, 62, 62, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8426, 5, 20, 20, 9, 10, 11, 13, 12, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8426, 5, 21, 21, 12, 11, 13, 11, 12, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8427, 14, 43, 43, 24, 24, 27, 25, 21, 631); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8428, 19, 55, 55, 31, 31, 35, 33, 27, 631); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8429, 31, 91, 91, 57, 58, 66, 63, 47, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8430, 55, 177, 177, 119, 121, 146, 135, 90, 632); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8431, 19, 58, 58, 28, 38, 28, 46, 47, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8432, 12, 37, 37, 24, 17, 18, 17, 20, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8432, 12, 40, 40, 20, 26, 20, 30, 32, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8433, 31, 86, 86, 62, 47, 40, 40, 65, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8433, 31, 95, 95, 53, 59, 70, 64, 68, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8434, 13, 40, 40, 18, 23, 16, 16, 13, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8434, 15, 48, 48, 31, 25, 40, 25, 29, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8435, 22, 66, 66, 26, 26, 28, 37, 34, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8436, 9, 32, 32, 16, 15, 14, 15, 13, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8437, 14, 43, 43, 24, 24, 27, 25, 21, 631); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8438, 24, 68, 68, 38, 39, 42, 40, 32, 631); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8439, 35, 102, 102, 63, 65, 74, 70, 52, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8440, 54, 174, 174, 117, 119, 144, 133, 89, 632); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8441, 22, 66, 66, 32, 43, 32, 52, 54, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8442, 12, 40, 40, 20, 18, 17, 18, 16, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8442, 12, 40, 40, 20, 26, 20, 30, 32, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8443, 37, 104, 104, 84, 59, 84, 77, 99, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8444, 22, 61, 61, 35, 34, 41, 34, 37, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8445, 44, 122, 122, 56, 73, 56, 73, 51, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8446, 16, 42, 42, 28, 23, 26, 26, 39, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8447, 45, 111, 111, 79, 51, 57, 51, 61, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8448, 48, 161, 161, 110, 105, 94, 103, 95, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8449, 41, 131, 131, 95, 73, 73, 85, 75, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8450, 41, 123, 123, 70, 74, 64, 64, 65, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8450, 45, 125, 125, 102, 70, 102, 93, 120, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8451, 16, 47, 47, 37, 28, 31, 31, 39, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8451, 14, 41, 41, 24, 25, 31, 28, 18, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8452, 32, 91, 91, 58, 61, 70, 64, 42, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8452, 41, 119, 119, 101, 77, 85, 85, 105, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8453, 46, 141, 141, 95, 108, 104, 113, 67, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8453, 39, 121, 121, 77, 61, 100, 85, 42, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8453, 48, 137, 137, 118, 89, 99, 99, 123, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8454, 42, 125, 125, 70, 78, 93, 85, 91, 185); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8454, 46, 141, 141, 90, 72, 118, 99, 49, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8454, 49, 150, 150, 101, 115, 110, 120, 71, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8454, 53, 150, 150, 130, 98, 108, 108, 135, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8455, 43, 115, 115, 59, 63, 59, 76, 89, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8455, 43, 115, 115, 59, 63, 59, 76, 89, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8456, 44, 131, 131, 69, 69, 91, 73, 60, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8457, 9, 28, 28, 14, 15, 14, 18, 17, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8457, 9, 28, 28, 14, 15, 14, 18, 17, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8457, 12, 37, 37, 21, 21, 24, 24, 20, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8458, 24, 59, 59, 30, 32, 30, 40, 37, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8458, 24, 59, 59, 30, 32, 30, 40, 37, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8458, 32, 91, 91, 56, 56, 67, 67, 54, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8459, 26, 73, 73, 37, 40, 37, 48, 55, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8459, 26, 73, 73, 37, 40, 37, 48, 55, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8459, 44, 122, 122, 75, 76, 91, 91, 73, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8460, 30, 83, 83, 42, 45, 42, 54, 63, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8460, 36, 112, 112, 57, 68, 57, 86, 97, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8460, 55, 172, 172, 115, 116, 134, 134, 112, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8461, 41, 118, 118, 61, 38, 61, 38, 42, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8462, 15, 41, 41, 22, 22, 25, 29, 29, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8464, 35, 103, 103, 80, 52, 77, 49, 56, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8464, 38, 114, 114, 65, 69, 60, 60, 61, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8465, 39, 113, 113, 89, 58, 85, 54, 61, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8465, 38, 108, 108, 73, 62, 60, 60, 68, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8465, 40, 136, 136, 93, 89, 79, 87, 80, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8466, 47, 149, 149, 120, 83, 115, 87, 87, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8466, 58, 182, 182, 144, 115, 124, 112, 124, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8466, 60, 199, 199, 137, 131, 116, 128, 117, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8467, 40, 112, 112, 39, 47, 75, 83, 67, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8468, 42, 104, 104, 49, 57, 72, 64, 49, 454); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8469, 41, 135, 135, 82, 72, 56, 64, 93, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8469, 43, 124, 124, 106, 80, 89, 89, 110, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8470, 49, 169, 169, 115, 105, 145, 86, 76, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8471, 21, 67, 67, 31, 32, 37, 39, 27, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8472, 34, 103, 103, 47, 49, 58, 61, 41, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8473, 41, 143, 143, 77, 79, 97, 93, 68, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8474, 61, 208, 208, 112, 116, 142, 136, 100, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8475, 26, 71, 71, 58, 35, 58, 35, 32, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8476, 19, 62, 62, 28, 31, 28, 31, 27, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8477, 22, 66, 66, 41, 43, 50, 45, 30, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8477, 22, 59, 59, 30, 39, 30, 45, 34, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8478, 26, 76, 76, 48, 50, 58, 53, 35, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8478, 26, 68, 68, 35, 45, 35, 53, 40, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8479, 31, 89, 89, 56, 59, 68, 62, 40, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8479, 31, 80, 80, 40, 53, 40, 62, 47, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8480, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8480, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8481, 48, 147, 147, 99, 103, 127, 108, 70, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8481, 48, 147, 147, 89, 108, 89, 123, 99, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8482, 26, 84, 84, 66, 71, 37, 42, 48, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8483, 16, 50, 50, 26, 23, 37, 34, 41, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8483, 18, 57, 57, 28, 31, 37, 38, 42, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8484, 31, 80, 80, 40, 53, 40, 62, 47, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8485, 33, 97, 97, 47, 53, 65, 66, 72, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8485, 33, 147, 147, 63, 46, 72, 49, 46, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8486, 26, 71, 71, 40, 63, 35, 40, 32, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8486, 27, 76, 76, 52, 39, 52, 41, 47, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8486, 27, 68, 68, 39, 33, 36, 36, 63, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8486, 26, 58, 58, 24, 22, 68, 42, 61, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8486, 26, 66, 66, 40, 35, 35, 35, 61, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8486, 27, 108, 108, 39, 25, 39, 28, 25, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8487, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8487, 27, 68, 68, 47, 30, 31, 31, 52, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8487, 27, 70, 70, 40, 49, 41, 49, 37, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8487, 26, 66, 66, 40, 35, 35, 35, 61, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8487, 27, 108, 108, 39, 25, 39, 28, 25, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8488, 50, 118, 118, 68, 63, 58, 58, 79, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8488, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8488, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8488, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8488, 50, 88, 88, 78, 48, 58, 68, 118, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8488, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8489, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8489, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8489, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8489, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8489, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8489, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8490, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8490, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8490, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8490, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8490, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8490, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8491, 5, 25, 25, 9, 8, 10, 8, 8, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8491, 5, 22, 22, 14, 11, 10, 10, 9, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8491, 5, 20, 20, 11, 10, 10, 10, 15, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8491, 5, 20, 20, 11, 10, 10, 10, 12, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8491, 5, 19, 19, 12, 10, 9, 10, 14, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8491, 5, 22, 22, 14, 11, 11, 11, 10, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8492, 5, 19, 19, 10, 13, 13, 9, 12, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8492, 5, 25, 25, 12, 12, 10, 10, 10, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8492, 5, 21, 21, 11, 11, 13, 13, 11, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8492, 5, 21, 21, 13, 12, 10, 11, 13, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8492, 5, 20, 20, 12, 9, 9, 9, 13, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8492, 5, 20, 20, 12, 11, 12, 11, 13, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8493, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8493, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8493, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8493, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8493, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8493, 50, 138, 138, 68, 93, 68, 113, 118, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8494, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8494, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8494, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8494, 50, 128, 128, 43, 78, 48, 48, 53, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8494, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8494, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8495, 30, 73, 73, 40, 39, 45, 54, 54, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8495, 30, 98, 98, 78, 54, 75, 57, 57, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8495, 30, 83, 83, 72, 84, 42, 42, 36, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8495, 30, 86, 86, 45, 39, 66, 60, 72, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8495, 30, 89, 89, 62, 47, 62, 47, 64, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8495, 30, 80, 80, 45, 62, 72, 62, 70, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8497, 33, 107, 107, 92, 69, 59, 53, 78, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8498, 65, 176, 176, 67, 67, 75, 101, 93, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8498, 63, 196, 196, 172, 128, 109, 96, 144, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8498, 65, 176, 176, 138, 106, 93, 93, 190, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8499, 32, 93, 93, 44, 48, 44, 48, 51, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8499, 32, 99, 99, 53, 67, 82, 67, 78, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8500, 36, 103, 103, 49, 53, 49, 53, 57, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8500, 36, 107, 107, 59, 57, 73, 57, 100, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8501, 36, 98, 98, 98, 50, 71, 50, 68, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8501, 36, 116, 116, 100, 75, 64, 57, 84, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8502, 37, 119, 119, 103, 77, 66, 59, 87, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8503, 37, 109, 109, 60, 59, 75, 59, 102, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8504, 60, 163, 163, 62, 62, 69, 93, 86, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8504, 60, 187, 187, 164, 122, 104, 92, 138, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8504, 60, 163, 163, 128, 98, 86, 86, 176, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8505, 37, 113, 113, 61, 77, 94, 77, 90, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8506, 50, 133, 133, 98, 73, 63, 63, 103, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8506, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8506, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8506, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8506, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8506, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8508, 29, 96, 96, 74, 60, 64, 58, 64, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8508, 29, 104, 104, 58, 61, 73, 79, 32, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8508, 58, 112, 112, 37, 89, 43, 49, 118, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8509, 29, 96, 96, 74, 60, 64, 58, 64, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8509, 29, 104, 104, 58, 61, 73, 79, 32, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8509, 29, 95, 95, 68, 53, 53, 61, 54, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8510, 35, 99, 99, 73, 52, 52, 52, 45, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8511, 14, 45, 45, 32, 24, 21, 21, 18, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8512, 18, 56, 56, 40, 29, 25, 25, 22, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8513, 30, 104, 104, 87, 60, 51, 51, 42, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8514, 13, 43, 43, 30, 22, 20, 20, 17, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8515, 29, 75, 75, 43, 43, 53, 53, 41, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8515, 29, 72, 72, 45, 40, 50, 44, 53, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8515, 29, 74, 74, 43, 53, 44, 52, 40, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8516, 32, 82, 82, 51, 45, 58, 45, 64, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8517, 17, 45, 45, 29, 24, 28, 28, 41, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8518, 19, 49, 49, 32, 27, 30, 30, 46, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8519, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8520, 23, 57, 57, 34, 28, 29, 33, 22, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8520, 23, 57, 57, 34, 28, 29, 33, 22, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8520, 23, 57, 57, 34, 28, 29, 33, 22, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8520, 28, 95, 95, 57, 50, 40, 45, 65, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8520, 23, 57, 57, 34, 28, 29, 33, 22, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8521, 16, 44, 44, 25, 21, 23, 23, 39, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8522, 28, 70, 70, 40, 34, 37, 37, 65, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8522, 28, 70, 70, 40, 34, 37, 37, 65, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8522, 28, 70, 70, 40, 34, 37, 37, 65, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8523, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8523, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8523, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8523, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8523, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8523, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8524, 35, 120, 120, 59, 59, 45, 45, 45, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8525, 33, 117, 117, 72, 72, 59, 59, 39, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8526, 17, 45, 45, 29, 24, 28, 28, 41, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8527, 33, 87, 87, 51, 48, 59, 49, 53, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8528, 14, 45, 45, 35, 25, 35, 32, 40, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8529, 22, 61, 61, 32, 32, 28, 28, 34, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8529, 12, 38, 38, 20, 20, 17, 17, 21, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8529, 30, 80, 80, 42, 42, 36, 36, 45, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8529, 36, 94, 94, 50, 50, 43, 43, 53, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8529, 40, 104, 104, 55, 55, 47, 47, 59, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8529, 42, 125, 125, 74, 74, 66, 66, 78, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8530, 15, 48, 48, 25, 22, 35, 32, 38, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8530, 15, 48, 48, 22, 25, 32, 35, 38, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8531, 26, 76, 76, 40, 35, 58, 53, 63, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8531, 26, 76, 76, 35, 40, 53, 58, 63, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8532, 29, 84, 84, 44, 38, 64, 58, 70, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8532, 29, 84, 84, 38, 44, 58, 64, 70, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8533, 32, 91, 91, 48, 42, 70, 64, 77, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8533, 32, 91, 91, 42, 48, 64, 70, 77, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8534, 35, 99, 99, 52, 45, 77, 70, 84, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8534, 35, 99, 99, 45, 52, 70, 77, 84, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8535, 36, 94, 94, 32, 46, 32, 46, 32, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8535, 38, 114, 114, 33, 56, 33, 56, 49, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8535, 40, 144, 144, 59, 83, 67, 83, 59, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8536, 16, 47, 47, 25, 25, 21, 21, 26, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8537, 27, 73, 73, 39, 39, 33, 33, 41, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8538, 30, 80, 80, 42, 42, 36, 36, 45, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8539, 33, 101, 101, 59, 59, 53, 53, 63, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8540, 36, 109, 109, 64, 64, 57, 57, 68, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8541, 31, 73, 73, 50, 40, 47, 47, 71, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8542, 39, 78, 78, 30, 34, 26, 61, 81, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8542, 39, 78, 78, 30, 34, 26, 61, 81, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8543, 35, 92, 92, 31, 45, 31, 45, 31, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8543, 37, 112, 112, 33, 55, 33, 55, 47, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8543, 39, 141, 141, 58, 81, 65, 81, 58, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8544, 22, 61, 61, 32, 32, 28, 28, 34, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8544, 36, 94, 94, 50, 50, 43, 43, 53, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8544, 40, 104, 104, 55, 55, 47, 47, 59, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8544, 12, 38, 38, 20, 20, 17, 17, 21, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8544, 30, 80, 80, 42, 42, 36, 36, 45, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8544, 42, 125, 125, 74, 74, 66, 66, 78, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8545, 14, 45, 45, 24, 21, 33, 31, 36, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8545, 14, 45, 45, 21, 24, 31, 33, 36, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8546, 26, 76, 76, 40, 35, 58, 53, 63, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8546, 26, 76, 76, 35, 40, 53, 58, 63, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8547, 29, 84, 84, 44, 38, 64, 58, 70, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8547, 29, 84, 84, 38, 44, 58, 64, 70, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8548, 32, 91, 91, 48, 42, 70, 64, 77, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8548, 32, 91, 91, 42, 48, 64, 70, 77, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8549, 35, 99, 99, 52, 45, 77, 70, 84, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8549, 35, 99, 99, 45, 52, 70, 77, 84, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8550, 14, 45, 45, 21, 24, 31, 33, 36, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8550, 14, 45, 45, 24, 21, 33, 31, 36, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8551, 15, 45, 45, 23, 23, 20, 20, 25, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8552, 29, 78, 78, 41, 41, 35, 35, 44, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8553, 32, 85, 85, 45, 45, 38, 38, 48, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8554, 35, 106, 106, 63, 63, 56, 56, 66, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8555, 38, 114, 114, 68, 68, 60, 60, 71, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8556, 30, 71, 71, 48, 39, 45, 45, 69, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8557, 15, 36, 36, 22, 14, 20, 20, 28, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8557, 15, 36, 36, 22, 14, 20, 20, 28, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8557, 18, 47, 47, 31, 25, 29, 29, 43, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8558, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8558, 21, 61, 61, 41, 35, 29, 35, 48, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8559, 19, 54, 54, 42, 47, 15, 28, 15, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8560, 19, 43, 43, 27, 17, 25, 25, 34, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8560, 22, 55, 55, 37, 30, 34, 34, 52, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8560, 19, 43, 43, 27, 17, 25, 25, 34, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8561, 26, 55, 55, 35, 22, 32, 32, 45, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8561, 26, 76, 76, 37, 50, 37, 61, 63, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8562, 23, 64, 64, 50, 56, 17, 33, 17, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8563, 29, 96, 96, 74, 60, 64, 58, 64, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8563, 29, 104, 104, 58, 61, 73, 79, 32, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8563, 65, 124, 124, 41, 99, 47, 54, 132, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8564, 16, 50, 50, 36, 26, 23, 23, 20, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8565, 31, 89, 89, 65, 47, 40, 40, 34, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8566, 43, 145, 145, 123, 84, 72, 72, 59, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8567, 53, 177, 177, 151, 103, 87, 87, 71, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8568, 43, 120, 120, 72, 72, 72, 72, 72, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8568, 41, 119, 119, 79, 64, 58, 81, 89, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8569, 13, 43, 43, 30, 22, 20, 20, 17, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8569, 13, 41, 41, 20, 20, 26, 21, 18, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8570, 38, 95, 95, 55, 55, 68, 68, 52, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8570, 38, 91, 91, 58, 51, 64, 56, 68, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8570, 38, 95, 95, 55, 68, 56, 67, 51, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8571, 40, 100, 100, 63, 55, 71, 55, 79, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8572, 18, 47, 47, 31, 25, 29, 29, 43, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8573, 24, 71, 71, 52, 37, 37, 37, 32, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8573, 30, 71, 71, 48, 39, 45, 45, 69, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8574, 13, 32, 32, 20, 13, 18, 18, 25, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8574, 15, 48, 48, 34, 25, 25, 25, 22, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8574, 29, 84, 84, 61, 44, 44, 44, 38, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8574, 37, 86, 86, 59, 47, 55, 55, 84, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8575, 18, 41, 41, 25, 16, 24, 24, 33, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8575, 22, 66, 66, 48, 34, 34, 34, 30, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8575, 47, 158, 158, 144, 92, 92, 92, 73, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8575, 39, 90, 90, 61, 50, 58, 58, 89, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8576, 43, 120, 120, 72, 72, 72, 72, 72, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8576, 41, 119, 119, 58, 64, 79, 81, 89, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8577, 31, 73, 73, 44, 37, 37, 44, 28, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8577, 31, 73, 73, 44, 37, 37, 44, 28, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8577, 31, 73, 73, 44, 37, 37, 44, 28, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8577, 36, 120, 120, 72, 64, 50, 57, 82, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8577, 31, 73, 73, 44, 37, 37, 44, 28, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8578, 36, 87, 87, 50, 43, 46, 46, 82, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8578, 28, 70, 70, 40, 34, 37, 37, 65, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8578, 28, 70, 70, 40, 34, 37, 37, 65, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8579, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8579, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8579, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8579, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8579, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8579, 32, 75, 75, 51, 42, 48, 48, 74, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8580, 43, 150, 150, 93, 93, 76, 76, 50, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8581, 17, 45, 45, 29, 24, 28, 28, 41, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8582, 42, 109, 109, 63, 60, 74, 62, 66, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8583, 16, 50, 50, 39, 28, 39, 36, 45, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8584, 64, 212, 212, 111, 111, 79, 79, 47, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8584, 64, 218, 218, 124, 168, 156, 130, 66, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8585, 61, 129, 129, 95, 69, 57, 69, 114, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8585, 61, 135, 135, 83, 68, 69, 81, 51, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8585, 61, 139, 139, 63, 76, 63, 76, 100, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8585, 61, 164, 164, 81, 75, 69, 75, 64, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8585, 61, 147, 147, 94, 74, 69, 74, 78, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8586, 62, 181, 181, 80, 93, 80, 93, 76, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8586, 62, 205, 205, 89, 69, 101, 81, 114, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8586, 62, 181, 181, 76, 89, 95, 89, 58, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8586, 62, 150, 150, 76, 101, 76, 120, 89, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8587, 31, 86, 86, 55, 71, 47, 65, 42, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8588, 30, 83, 83, 60, 51, 60, 51, 77, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8588, 30, 89, 89, 63, 54, 36, 54, 51, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8589, 61, 202, 202, 106, 106, 75, 75, 45, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8589, 61, 208, 208, 118, 161, 148, 124, 63, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8590, 58, 123, 123, 90, 66, 54, 66, 109, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8590, 58, 129, 129, 79, 65, 66, 78, 49, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8590, 58, 132, 132, 60, 73, 60, 73, 95, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8590, 58, 157, 157, 78, 72, 66, 72, 61, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8590, 58, 141, 141, 89, 71, 66, 71, 74, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8591, 60, 157, 157, 110, 80, 110, 86, 98, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8591, 60, 193, 193, 158, 134, 80, 134, 122, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8591, 60, 145, 145, 98, 62, 122, 86, 104, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8592, 35, 96, 96, 66, 45, 59, 45, 45, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8593, 35, 106, 106, 49, 51, 59, 63, 42, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8594, 60, 139, 139, 80, 68, 74, 74, 134, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8594, 60, 150, 150, 92, 77, 77, 71, 128, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8594, 60, 168, 168, 132, 86, 132, 86, 153, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8595, 21, 61, 61, 41, 31, 41, 33, 37, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8595, 21, 59, 59, 44, 48, 20, 25, 29, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8596, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8597, 34, 97, 97, 44, 51, 68, 75, 81, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8598, 7, 25, 25, 11, 13, 11, 13, 12, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8598, 7, 25, 25, 11, 13, 11, 13, 12, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8598, 7, 25, 25, 11, 13, 11, 13, 12, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8599, 54, 155, 155, 87, 86, 111, 96, 133, 594); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8600, 7, 22, 22, 13, 9, 12, 12, 15, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8600, 9, 28, 28, 18, 15, 17, 17, 24, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8601, 34, 97, 97, 51, 44, 75, 68, 81, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8602, 51, 140, 140, 104, 74, 64, 64, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8602, 53, 177, 177, 151, 103, 87, 87, 71, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8603, 34, 80, 80, 54, 44, 51, 51, 78, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8604, 48, 142, 142, 84, 84, 75, 75, 89, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8604, 48, 142, 142, 84, 84, 75, 75, 89, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8604, 48, 142, 142, 84, 84, 75, 75, 89, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8605, 15, 48, 48, 25, 22, 35, 32, 38, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8605, 15, 48, 48, 22, 25, 32, 35, 38, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8606, 25, 74, 74, 39, 34, 56, 51, 61, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8606, 25, 74, 74, 34, 39, 51, 56, 61, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8607, 27, 79, 79, 41, 36, 60, 55, 66, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8607, 27, 79, 79, 36, 41, 55, 60, 66, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8608, 32, 91, 91, 48, 42, 70, 64, 77, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8608, 32, 91, 91, 42, 48, 64, 70, 77, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8609, 49, 135, 135, 71, 61, 105, 96, 115, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8609, 49, 135, 135, 61, 71, 96, 105, 115, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8610, 43, 154, 154, 63, 89, 72, 89, 63, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8611, 17, 50, 50, 26, 26, 23, 23, 28, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8612, 27, 73, 73, 39, 39, 33, 33, 41, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8613, 29, 78, 78, 41, 41, 35, 35, 44, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8614, 34, 90, 90, 47, 47, 41, 41, 51, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8615, 51, 150, 150, 89, 89, 79, 79, 94, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8616, 35, 82, 82, 56, 45, 52, 52, 80, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8617, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8617, 53, 177, 177, 82, 103, 87, 103, 55, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8617, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8617, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8617, 53, 161, 161, 135, 103, 135, 103, 71, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8617, 51, 130, 130, 89, 115, 59, 59, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8618, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8618, 54, 153, 153, 67, 100, 110, 175, 100, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8618, 51, 130, 130, 84, 120, 145, 94, 94, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8618, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8618, 54, 126, 126, 62, 56, 154, 100, 137, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8618, 51, 140, 140, 140, 130, 89, 94, 104, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8619, 52, 169, 169, 132, 127, 105, 110, 104, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8619, 52, 161, 161, 111, 104, 137, 112, 127, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8619, 51, 160, 160, 107, 125, 108, 125, 104, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8619, 51, 171, 171, 145, 99, 84, 84, 69, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8619, 51, 339, 339, 33, 33, 99, 161, 79, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8619, 52, 132, 132, 122, 122, 60, 138, 96, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8620, 52, 148, 148, 127, 96, 106, 106, 132, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8620, 51, 181, 181, 99, 140, 115, 140, 110, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8620, 52, 137, 137, 75, 70, 164, 122, 148, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8620, 52, 163, 163, 132, 91, 86, 101, 158, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8620, 52, 143, 143, 106, 138, 75, 106, 70, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8620, 51, 140, 140, 74, 94, 104, 104, 166, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8621, 52, 117, 117, 80, 65, 75, 75, 117, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8621, 52, 122, 122, 70, 60, 65, 65, 117, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8621, 51, 150, 150, 69, 72, 84, 89, 59, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8621, 51, 99, 99, 33, 257, 33, 257, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8621, 51, 115, 115, 43, 89, 64, 89, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8622, 51, 155, 155, 99, 79, 130, 110, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8622, 51, 145, 145, 79, 140, 125, 64, 84, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8622, 51, 99, 99, 33, 257, 33, 257, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8622, 52, 148, 148, 122, 101, 80, 80, 112, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8622, 52, 184, 184, 75, 75, 102, 123, 96, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8622, 52, 158, 158, 132, 101, 132, 101, 70, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8623, 51, 155, 155, 104, 120, 115, 125, 74, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8623, 51, 181, 181, 74, 104, 84, 104, 74, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8623, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8623, 51, 176, 176, 94, 97, 120, 115, 84, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8623, 51, 135, 135, 64, 110, 104, 130, 64, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8623, 51, 140, 140, 115, 79, 115, 104, 135, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8624, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8624, 55, 178, 178, 105, 101, 105, 151, 98, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8624, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8624, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8624, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8624, 55, 189, 189, 101, 105, 129, 123, 90, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8625, 5, 20, 20, 10, 10, 10, 10, 10, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8625, 5, 20, 20, 13, 12, 11, 12, 9, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8625, 5, 20, 20, 14, 16, 9, 9, 8, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8625, 5, 20, 20, 12, 10, 10, 10, 9, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8625, 5, 20, 20, 11, 10, 9, 10, 12, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8625, 5, 21, 21, 14, 15, 8, 9, 10, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8626, 5, 20, 20, 8, 9, 10, 14, 12, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8626, 5, 19, 19, 10, 13, 16, 12, 11, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8626, 5, 19, 19, 10, 9, 16, 10, 14, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8626, 5, 21, 21, 12, 9, 14, 11, 13, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8626, 5, 20, 20, 12, 10, 10, 10, 9, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8626, 5, 23, 23, 11, 12, 11, 13, 11, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8627, 5, 18, 18, 10, 8, 10, 10, 12, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8627, 5, 19, 19, 10, 9, 16, 10, 14, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8627, 5, 21, 21, 14, 10, 13, 12, 15, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8627, 5, 41, 41, 7, 7, 10, 17, 11, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8627, 5, 20, 20, 11, 10, 10, 10, 15, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8627, 5, 19, 19, 8, 8, 17, 12, 15, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8628, 5, 21, 21, 13, 10, 13, 12, 16, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8628, 5, 23, 23, 12, 13, 15, 14, 10, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8628, 5, 20, 20, 11, 22, 9, 11, 13, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8628, 5, 25, 25, 13, 13, 10, 10, 8, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8628, 5, 23, 23, 17, 14, 12, 14, 17, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8628, 5, 41, 41, 7, 7, 10, 17, 11, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8629, 14, 50, 50, 32, 26, 28, 35, 38, 633); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8629, 14, 50, 50, 32, 26, 28, 35, 38, 633); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8630, 15, 40, 40, 26, 22, 25, 25, 37, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8630, 15, 40, 40, 26, 22, 25, 25, 37, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8631, 19, 49, 49, 32, 27, 30, 30, 46, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8632, 31, 73, 73, 50, 40, 47, 47, 71, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8633, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8634, 55, 123, 123, 85, 68, 79, 79, 123, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8635, 41, 94, 94, 64, 52, 60, 60, 93, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8635, 41, 94, 94, 64, 52, 60, 60, 93, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8636, 41, 94, 94, 64, 52, 60, 60, 93, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8636, 41, 94, 94, 64, 52, 60, 60, 93, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8636, 41, 94, 94, 64, 52, 60, 60, 93, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8636, 41, 94, 94, 64, 52, 60, 60, 93, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8637, 3, 15, 15, 8, 6, 8, 8, 9, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8637, 3, 15, 15, 8, 6, 8, 8, 9, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8637, 3, 15, 15, 8, 6, 8, 8, 9, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8638, 19, 43, 43, 27, 17, 25, 25, 34, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8638, 19, 49, 49, 32, 27, 30, 30, 46, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8638, 19, 49, 49, 32, 27, 30, 30, 46, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8639, 31, 64, 64, 40, 25, 37, 37, 53, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8639, 31, 73, 73, 50, 40, 47, 47, 71, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8639, 31, 73, 73, 50, 40, 47, 47, 71, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8640, 43, 85, 85, 54, 33, 50, 50, 72, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8640, 43, 98, 98, 67, 54, 63, 63, 97, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8640, 43, 98, 98, 67, 54, 63, 63, 97, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8641, 49, 96, 96, 61, 37, 56, 56, 81, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8641, 49, 110, 110, 76, 61, 71, 71, 110, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8641, 49, 135, 135, 110, 76, 110, 101, 130, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8642, 55, 106, 106, 68, 41, 63, 63, 90, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8642, 55, 123, 123, 85, 68, 79, 79, 123, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8642, 55, 150, 150, 123, 85, 123, 112, 145, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8643, 22, 48, 48, 30, 19, 28, 28, 39, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8644, 34, 80, 80, 54, 44, 51, 51, 78, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8645, 44, 100, 100, 69, 56, 64, 64, 100, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8646, 53, 145, 145, 119, 82, 119, 108, 140, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8647, 42, 96, 96, 66, 53, 62, 62, 95, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8647, 42, 96, 96, 66, 53, 62, 62, 95, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8648, 42, 96, 96, 66, 53, 62, 62, 95, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8648, 42, 96, 96, 66, 53, 62, 62, 95, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8648, 42, 96, 96, 66, 53, 62, 62, 95, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8648, 42, 96, 96, 66, 53, 62, 62, 95, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8649, 23, 64, 64, 36, 56, 31, 36, 29, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8649, 23, 82, 82, 43, 43, 31, 31, 20, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8650, 25, 89, 89, 46, 46, 34, 34, 21, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8651, 22, 57, 57, 35, 31, 39, 34, 41, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8651, 22, 61, 61, 34, 54, 30, 34, 28, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8652, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8652, 23, 82, 82, 43, 43, 31, 31, 20, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8652, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8653, 20, 57, 57, 32, 50, 28, 32, 26, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8653, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8654, 40, 110, 110, 70, 65, 83, 71, 83, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8654, 40, 168, 168, 87, 83, 87, 95, 67, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8654, 40, 136, 136, 63, 79, 67, 79, 43, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8655, 24, 71, 71, 52, 66, 37, 52, 35, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8655, 24, 71, 71, 52, 66, 37, 52, 35, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8656, 19, 71, 71, 40, 53, 49, 42, 23, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8657, 19, 70, 70, 32, 40, 34, 40, 23, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8658, 25, 96, 96, 61, 54, 34, 54, 59, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8659, 36, 105, 105, 61, 68, 79, 71, 46, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8660, 41, 270, 270, 23, 23, 48, 105, 60, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8661, 26, 99, 99, 63, 55, 35, 55, 61, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8662, 10, 41, 41, 21, 21, 16, 16, 11, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8662, 10, 41, 41, 21, 21, 16, 16, 11, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8663, 12, 47, 47, 22, 27, 23, 27, 16, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8664, 10, 41, 41, 21, 21, 16, 16, 11, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8665, 17, 60, 60, 45, 37, 40, 36, 40, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8665, 17, 63, 63, 42, 40, 36, 40, 36, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8666, 19, 66, 66, 50, 41, 44, 40, 44, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8667, 14, 48, 48, 27, 28, 25, 25, 25, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8667, 16, 51, 51, 33, 29, 28, 28, 31, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8668, 27, 89, 89, 60, 66, 30, 30, 28, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8669, 32, 91, 91, 74, 106, 48, 48, 42, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8670, 20, 57, 57, 40, 52, 28, 28, 24, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8671, 27, 79, 79, 63, 90, 41, 41, 36, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8672, 29, 84, 84, 67, 96, 44, 44, 38, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8672, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8673, 32, 91, 91, 74, 106, 48, 48, 42, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8673, 32, 104, 104, 70, 77, 35, 35, 32, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8674, 35, 106, 106, 94, 143, 59, 59, 52, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8674, 35, 131, 131, 108, 101, 49, 49, 45, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8675, 31, 101, 101, 68, 75, 34, 34, 31, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8676, 19, 54, 54, 38, 49, 27, 27, 23, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8677, 27, 79, 79, 63, 90, 41, 41, 36, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8678, 29, 84, 84, 67, 96, 44, 44, 38, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8678, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8679, 32, 91, 91, 74, 106, 48, 48, 42, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8679, 32, 104, 104, 70, 77, 35, 35, 32, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8680, 35, 106, 106, 94, 143, 59, 59, 52, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8680, 35, 131, 131, 108, 101, 49, 49, 45, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8681, 18, 52, 52, 36, 47, 25, 25, 22, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8681, 18, 52, 52, 36, 47, 25, 25, 22, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8682, 23, 64, 64, 36, 56, 31, 36, 29, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8682, 23, 82, 82, 43, 43, 31, 31, 20, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8683, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8683, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8683, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8684, 40, 110, 110, 70, 65, 83, 71, 83, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8684, 40, 168, 168, 87, 83, 87, 95, 67, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8684, 40, 136, 136, 63, 79, 67, 79, 43, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8685, 49, 155, 155, 105, 115, 52, 52, 47, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8685, 49, 179, 179, 115, 101, 61, 101, 110, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8686, 55, 200, 200, 167, 156, 74, 74, 68, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8686, 55, 200, 200, 129, 112, 68, 112, 123, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8687, 20, 57, 57, 32, 50, 28, 32, 26, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8687, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8688, 29, 84, 84, 61, 79, 44, 61, 41, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8688, 29, 104, 104, 58, 79, 73, 61, 32, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8689, 54, 148, 148, 110, 143, 78, 110, 73, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8689, 54, 186, 186, 105, 143, 132, 110, 56, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8690, 29, 95, 95, 64, 70, 32, 32, 29, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8690, 29, 101, 101, 47, 58, 50, 58, 32, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8691, 33, 107, 107, 72, 79, 36, 36, 33, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8691, 33, 114, 114, 53, 66, 56, 66, 36, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8692, 54, 196, 196, 164, 154, 73, 73, 67, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8692, 54, 180, 180, 83, 105, 89, 105, 56, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8693, 22, 57, 57, 35, 31, 39, 34, 41, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8693, 22, 61, 61, 34, 54, 30, 34, 28, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8694, 25, 89, 89, 46, 46, 34, 34, 21, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8695, 24, 71, 71, 52, 66, 37, 52, 35, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8695, 24, 71, 71, 52, 66, 37, 52, 35, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8696, 20, 75, 75, 42, 56, 52, 44, 24, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8697, 20, 65, 65, 37, 39, 34, 34, 34, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8697, 24, 71, 71, 48, 41, 40, 40, 44, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8698, 32, 98, 98, 56, 59, 51, 51, 52, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8698, 34, 97, 97, 66, 56, 54, 54, 61, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8698, 32, 114, 114, 96, 67, 54, 80, 68, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8699, 41, 143, 143, 122, 84, 68, 101, 86, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8699, 38, 130, 130, 60, 75, 64, 75, 41, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8699, 38, 114, 114, 65, 69, 60, 60, 61, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8699, 43, 120, 120, 82, 69, 67, 67, 76, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8700, 48, 166, 166, 142, 98, 79, 118, 100, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8700, 40, 136, 136, 63, 79, 67, 79, 43, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8700, 58, 193, 193, 132, 126, 112, 124, 114, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8700, 58, 182, 182, 144, 115, 124, 112, 124, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8701, 26, 99, 99, 63, 55, 35, 55, 61, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8702, 11, 44, 44, 23, 23, 17, 17, 12, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8702, 11, 44, 44, 23, 23, 17, 17, 12, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8703, 17, 60, 60, 45, 37, 40, 36, 40, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8703, 17, 63, 63, 42, 40, 36, 40, 36, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8704, 12, 47, 47, 22, 27, 23, 27, 16, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8705, 11, 44, 44, 23, 23, 17, 17, 12, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8706, 20, 69, 69, 53, 43, 46, 42, 46, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8707, 17, 56, 56, 32, 33, 29, 29, 30, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8707, 17, 53, 53, 35, 30, 29, 29, 33, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8708, 30, 98, 98, 66, 72, 33, 33, 30, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8709, 36, 102, 102, 82, 118, 53, 53, 46, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8710, 23, 64, 64, 45, 59, 31, 31, 27, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8711, 32, 91, 91, 74, 106, 48, 48, 42, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8711, 32, 104, 104, 70, 77, 35, 35, 32, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8712, 39, 125, 125, 85, 93, 42, 42, 38, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8712, 39, 109, 109, 89, 128, 58, 58, 50, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8713, 43, 158, 158, 132, 123, 59, 59, 54, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8713, 43, 128, 128, 115, 175, 72, 72, 63, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8714, 47, 158, 158, 92, 101, 130, 106, 73, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8714, 47, 163, 163, 92, 125, 115, 97, 50, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8714, 47, 139, 139, 125, 191, 78, 78, 68, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8714, 47, 182, 182, 153, 144, 73, 73, 59, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8715, 30, 75, 75, 54, 42, 45, 45, 45, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8715, 25, 69, 69, 51, 56, 24, 29, 34, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8715, 25, 69, 69, 40, 38, 46, 39, 41, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8715, 30, 71, 71, 39, 75, 69, 48, 36, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8716, 30, 71, 71, 39, 75, 69, 48, 36, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8716, 30, 75, 75, 54, 42, 45, 45, 45, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8716, 25, 69, 69, 51, 56, 24, 29, 34, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8716, 25, 69, 69, 40, 38, 46, 39, 41, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8716, 25, 64, 64, 29, 39, 41, 41, 64, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8717, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8717, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8717, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8717, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8717, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8717, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8718, 52, 137, 137, 91, 122, 122, 70, 112, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8718, 51, 150, 150, 109, 94, 89, 94, 75, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8718, 51, 161, 161, 127, 101, 110, 99, 110, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8718, 52, 137, 137, 107, 86, 75, 96, 124, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8718, 52, 184, 184, 75, 75, 102, 123, 96, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8718, 51, 145, 145, 79, 140, 125, 64, 84, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8719, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8719, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8719, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8719, 55, 189, 189, 129, 118, 162, 96, 85, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8719, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8719, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8720, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8720, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8720, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8720, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8720, 55, 194, 194, 172, 145, 129, 134, 91, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8720, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8721, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8721, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8721, 55, 260, 260, 145, 96, 96, 145, 57, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8721, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8721, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8721, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8722, 29, 72, 72, 38, 44, 32, 32, 32, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8722, 29, 90, 90, 56, 38, 50, 38, 50, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8722, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8723, 27, 79, 79, 49, 52, 60, 55, 36, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8723, 27, 73, 73, 47, 39, 68, 57, 49, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8724, 30, 86, 86, 54, 57, 66, 60, 39, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8724, 30, 80, 80, 51, 42, 75, 63, 54, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8725, 33, 94, 94, 59, 63, 72, 66, 43, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8725, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8726, 36, 102, 102, 64, 68, 79, 71, 46, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8726, 36, 94, 94, 61, 50, 89, 75, 64, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8727, 39, 121, 121, 81, 93, 89, 97, 58, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8727, 39, 102, 102, 65, 54, 97, 81, 69, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8728, 28, 81, 81, 87, 59, 48, 48, 54, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8729, 31, 89, 89, 96, 65, 53, 53, 59, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8730, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8731, 37, 104, 104, 114, 77, 62, 62, 70, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8732, 39, 109, 109, 89, 73, 65, 112, 50, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8732, 39, 109, 109, 120, 81, 65, 65, 73, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8733, 29, 72, 72, 32, 32, 38, 44, 32, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8733, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8733, 29, 90, 90, 56, 38, 50, 38, 50, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8734, 39, 117, 117, 108, 65, 108, 65, 61, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8735, 38, 95, 95, 49, 64, 49, 75, 56, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8735, 38, 99, 99, 64, 52, 94, 79, 68, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8736, 26, 76, 76, 48, 50, 58, 53, 35, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8736, 26, 71, 71, 45, 37, 66, 55, 48, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8737, 30, 86, 86, 54, 57, 66, 60, 39, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8737, 30, 80, 80, 51, 42, 75, 63, 54, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8738, 33, 94, 94, 59, 63, 72, 66, 43, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8738, 33, 87, 87, 56, 46, 82, 69, 59, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8739, 36, 102, 102, 64, 68, 79, 71, 46, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8739, 36, 94, 94, 61, 50, 89, 75, 64, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8740, 39, 121, 121, 81, 93, 89, 97, 58, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8740, 39, 102, 102, 65, 54, 97, 81, 69, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8741, 27, 79, 79, 84, 57, 47, 47, 52, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8742, 31, 89, 89, 96, 65, 53, 53, 59, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8743, 34, 97, 97, 105, 71, 58, 58, 64, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8744, 37, 104, 104, 114, 77, 62, 62, 70, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8745, 39, 109, 109, 89, 73, 65, 112, 50, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8745, 39, 109, 109, 120, 81, 65, 65, 73, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8746, 28, 70, 70, 31, 31, 37, 43, 31, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8746, 28, 81, 81, 43, 43, 48, 54, 43, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8746, 28, 87, 87, 54, 37, 48, 37, 48, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8747, 28, 70, 70, 37, 43, 31, 31, 31, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8747, 28, 87, 87, 54, 37, 48, 37, 48, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8747, 28, 81, 81, 43, 43, 48, 54, 43, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8748, 39, 117, 117, 108, 65, 108, 65, 61, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8749, 38, 95, 95, 49, 64, 49, 75, 56, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8749, 38, 99, 99, 64, 52, 94, 79, 68, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8750, 38, 99, 99, 75, 45, 71, 41, 49, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8750, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8750, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8751, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8752, 100, 256, 256, 111, 141, 151, 261, 211, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8753, 49, 140, 140, 76, 135, 120, 61, 81, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8753, 49, 135, 135, 61, 101, 81, 66, 61, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8753, 49, 169, 169, 115, 105, 145, 86, 76, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8754, 53, 150, 150, 82, 145, 130, 66, 87, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8754, 54, 186, 186, 127, 116, 159, 94, 83, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8754, 55, 189, 189, 129, 118, 162, 96, 85, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8755, 52, 340, 340, 28, 28, 60, 132, 75, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8756, 56, 366, 366, 30, 30, 64, 142, 81, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8757, 37, 104, 104, 47, 77, 62, 51, 47, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8757, 40, 140, 140, 95, 87, 119, 71, 63, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8758, 51, 140, 140, 89, 94, 110, 99, 64, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8758, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8759, 55, 167, 167, 112, 118, 145, 123, 79, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8759, 55, 167, 167, 112, 118, 145, 123, 79, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8760, 51, 145, 145, 115, 74, 110, 69, 79, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8760, 51, 160, 160, 130, 89, 125, 94, 94, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8761, 55, 172, 172, 140, 96, 134, 101, 101, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8761, 55, 172, 172, 140, 96, 134, 101, 101, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8762, 100, 326, 326, 261, 201, 241, 201, 231, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8763, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8764, 21, 61, 61, 41, 35, 29, 35, 48, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8764, 21, 67, 67, 20, 33, 20, 33, 29, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8765, 30, 83, 83, 57, 48, 39, 48, 66, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8765, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8766, 41, 110, 110, 77, 64, 52, 64, 89, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8766, 39, 141, 141, 58, 81, 65, 81, 58, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8767, 61, 184, 184, 148, 107, 100, 107, 167, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8767, 59, 208, 208, 85, 120, 97, 120, 85, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8768, 50, 116, 116, 53, 64, 53, 64, 83, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8768, 56, 158, 158, 114, 181, 69, 103, 103, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8769, 60, 185, 185, 110, 99, 86, 99, 146, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8769, 60, 169, 169, 122, 194, 74, 110, 110, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8770, 55, 150, 150, 90, 90, 90, 90, 90, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8770, 55, 150, 150, 123, 101, 90, 156, 68, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8771, 55, 183, 183, 156, 156, 90, 90, 79, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8772, 57, 190, 190, 88, 111, 93, 111, 59, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8772, 57, 178, 178, 116, 116, 88, 88, 128, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8773, 21, 65, 65, 40, 41, 46, 44, 33, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8773, 21, 65, 65, 40, 41, 46, 44, 33, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8774, 54, 132, 132, 132, 73, 73, 73, 35, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8774, 56, 142, 142, 103, 81, 81, 81, 103, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8775, 52, 143, 143, 65, 106, 86, 70, 65, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8775, 58, 193, 193, 176, 112, 112, 112, 89, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8776, 60, 205, 205, 140, 128, 176, 104, 92, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8776, 60, 199, 199, 182, 116, 116, 116, 92, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8777, 21, 63, 63, 48, 33, 37, 33, 37, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8777, 21, 61, 61, 39, 27, 37, 25, 48, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8778, 31, 89, 89, 68, 46, 53, 46, 53, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8778, 31, 86, 86, 56, 37, 53, 34, 68, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8779, 40, 112, 112, 87, 58, 67, 58, 67, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8779, 40, 132, 132, 103, 63, 87, 59, 111, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8780, 60, 163, 163, 128, 85, 98, 85, 98, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8780, 60, 193, 193, 152, 92, 128, 86, 164, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8781, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8781, 29, 87, 87, 79, 90, 50, 53, 70, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8782, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8782, 35, 103, 103, 94, 108, 59, 63, 84, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8783, 45, 161, 161, 66, 93, 75, 93, 66, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8783, 45, 129, 129, 120, 138, 75, 79, 106, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8784, 61, 214, 214, 87, 124, 100, 124, 87, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8784, 61, 172, 172, 161, 185, 100, 106, 142, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8785, 55, 170, 170, 101, 91, 79, 91, 134, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8785, 55, 150, 150, 118, 100, 96, 111, 112, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8786, 60, 185, 185, 110, 99, 86, 99, 146, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8786, 60, 163, 163, 80, 86, 134, 122, 110, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8786, 60, 163, 163, 128, 109, 104, 121, 122, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8787, 54, 148, 148, 89, 89, 89, 89, 89, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8787, 54, 148, 148, 121, 100, 89, 154, 67, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8787, 54, 180, 180, 154, 105, 89, 89, 73, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8788, 54, 180, 180, 154, 154, 89, 89, 78, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8788, 54, 153, 153, 110, 175, 67, 100, 100, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8788, 54, 169, 169, 113, 108, 127, 110, 116, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8789, 59, 155, 155, 79, 85, 79, 102, 120, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8789, 59, 166, 166, 115, 125, 89, 139, 150, 151); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8790, 31, 91, 91, 64, 48, 64, 48, 66, 157); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8791, 57, 155, 155, 128, 185, 82, 82, 71, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8791, 57, 155, 155, 116, 150, 82, 116, 76, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8792, 55, 150, 150, 68, 112, 90, 74, 68, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8792, 55, 165, 165, 151, 90, 90, 90, 123, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8792, 58, 186, 186, 125, 127, 154, 143, 95, 632); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8793, 60, 205, 205, 140, 128, 176, 104, 92, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8793, 58, 173, 173, 159, 95, 95, 95, 130, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8793, 62, 205, 205, 145, 145, 114, 138, 114, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8794, 28, 89, 89, 71, 55, 65, 55, 40, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8794, 30, 86, 86, 66, 45, 51, 45, 51, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8795, 34, 106, 106, 85, 66, 78, 66, 48, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8795, 36, 116, 116, 104, 74, 86, 74, 68, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8796, 44, 134, 134, 108, 84, 100, 84, 61, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8796, 46, 146, 146, 131, 94, 108, 94, 85, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8797, 60, 180, 180, 146, 113, 134, 113, 81, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8797, 62, 193, 193, 176, 125, 145, 125, 114, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8797, 58, 193, 193, 107, 118, 107, 136, 107, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8798, 64, 193, 193, 156, 112, 104, 112, 175, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8798, 64, 191, 191, 156, 120, 143, 120, 86, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8798, 64, 193, 193, 136, 284, 98, 111, 66, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8799, 36, 112, 112, 86, 61, 64, 61, 100, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8800, 18, 52, 52, 30, 28, 30, 28, 34, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8801, 35, 104, 104, 57, 56, 71, 56, 97, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8801, 35, 110, 110, 86, 61, 86, 61, 88, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8802, 35, 110, 110, 84, 59, 63, 59, 98, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8802, 35, 110, 110, 87, 61, 73, 61, 98, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8803, 34, 93, 93, 68, 58, 68, 58, 87, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8803, 34, 107, 107, 75, 62, 89, 62, 58, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8803, 34, 168, 168, 68, 71, 44, 47, 61, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8804, 64, 212, 212, 117, 130, 117, 149, 117, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8804, 64, 180, 180, 188, 156, 98, 117, 136, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8804, 64, 173, 173, 92, 156, 136, 117, 111, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8805, 61, 190, 190, 148, 124, 124, 124, 148, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8806, 18, 57, 57, 40, 34, 24, 34, 33, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8807, 35, 93, 93, 63, 63, 73, 70, 58, 236); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8807, 35, 103, 103, 99, 66, 45, 52, 64, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8808, 64, 245, 245, 98, 136, 165, 149, 65, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8808, 64, 289, 289, 130, 84, 143, 97, 130, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8808, 64, 218, 218, 111, 168, 104, 194, 111, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8809, 18, 52, 52, 30, 28, 30, 28, 34, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8810, 23, 73, 73, 54, 33, 20, 33, 36, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8810, 23, 61, 61, 40, 28, 36, 28, 48, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8811, 65, 176, 176, 132, 171, 93, 132, 86, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8811, 65, 221, 221, 151, 138, 190, 112, 99, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8812, 34, 93, 93, 64, 44, 58, 44, 44, 261); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8812, 34, 107, 107, 61, 54, 61, 54, 64, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8812, 34, 107, 107, 75, 62, 89, 62, 58, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8813, 30, 83, 83, 53, 69, 45, 63, 41, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8813, 30, 88, 88, 62, 53, 45, 41, 54, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8813, 30, 95, 95, 74, 53, 74, 53, 76, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8814, 18, 52, 52, 30, 28, 30, 28, 34, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8815, 24, 72, 72, 34, 37, 34, 37, 40, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8816, 31, 80, 80, 34, 40, 81, 47, 28, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8816, 31, 80, 80, 70, 53, 34, 40, 51, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8817, 61, 190, 190, 112, 112, 136, 148, 112, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8818, 27, 76, 76, 41, 36, 36, 36, 55, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8818, 27, 76, 76, 55, 47, 55, 47, 70, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8819, 27, 76, 76, 55, 47, 55, 47, 70, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8819, 27, 79, 79, 47, 41, 36, 41, 55, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8820, 65, 195, 195, 119, 145, 119, 164, 132, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8820, 65, 215, 215, 148, 125, 148, 138, 106, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8821, 64, 180, 180, 156, 117, 130, 130, 162, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8821, 64, 180, 180, 79, 117, 130, 207, 117, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8821, 64, 186, 186, 175, 104, 175, 104, 98, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8822, 61, 184, 184, 148, 107, 100, 107, 167, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8822, 61, 183, 183, 148, 114, 136, 114, 83, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8822, 61, 184, 184, 130, 270, 94, 106, 63, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8823, 23, 61, 61, 47, 30, 45, 38, 51, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8824, 64, 276, 276, 117, 85, 136, 92, 85, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8824, 64, 186, 186, 130, 111, 143, 111, 136, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8824, 64, 193, 193, 130, 136, 168, 143, 92, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8825, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8826, 33, 91, 91, 49, 43, 43, 43, 66, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8826, 33, 127, 127, 105, 56, 49, 59, 74, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8827, 42, 109, 109, 62, 53, 62, 53, 73, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8827, 42, 130, 130, 74, 66, 74, 66, 78, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8828, 39, 113, 113, 69, 65, 104, 93, 120, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8828, 39, 86, 86, 54, 124, 54, 89, 42, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8828, 39, 117, 117, 79, 65, 94, 65, 103, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8829, 39, 105, 105, 85, 61, 58, 61, 65, 635); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8829, 39, 102, 102, 73, 58, 58, 58, 73, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8829, 39, 113, 113, 120, 65, 93, 104, 69, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8830, 62, 174, 174, 138, 89, 132, 83, 95, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8830, 62, 193, 193, 176, 125, 145, 125, 114, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8830, 62, 205, 205, 188, 120, 120, 120, 95, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8831, 54, 153, 153, 114, 86, 127, 116, 137, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8831, 54, 148, 148, 83, 181, 105, 186, 67, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8832, 62, 193, 193, 114, 76, 151, 101, 207, 265); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8832, 62, 218, 218, 117, 130, 117, 130, 95, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8832, 62, 168, 168, 138, 114, 101, 176, 76, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8833, 54, 153, 153, 127, 86, 132, 116, 124, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8833, 54, 159, 159, 132, 100, 137, 105, 67, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8834, 38, 110, 110, 106, 68, 81, 66, 68, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8834, 38, 122, 122, 81, 77, 90, 79, 83, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8835, 38, 107, 107, 81, 52, 52, 52, 74, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8835, 38, 130, 130, 102, 79, 94, 79, 90, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8836, 26, 73, 73, 53, 45, 53, 45, 67, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8837, 61, 234, 234, 94, 130, 157, 142, 62, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8837, 61, 275, 275, 124, 80, 136, 92, 124, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8837, 61, 208, 208, 106, 161, 100, 185, 106, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8838, 62, 181, 181, 151, 169, 64, 107, 64, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8838, 62, 168, 168, 107, 114, 132, 120, 76, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8838, 62, 212, 212, 163, 126, 114, 126, 89, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8839, 23, 73, 73, 54, 33, 20, 33, 36, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8840, 46, 104, 104, 62, 168, 49, 62, 85, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8840, 46, 127, 127, 104, 150, 67, 67, 58, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8841, 62, 186, 186, 143, 189, 94, 171, 52, 299); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8841, 62, 186, 186, 151, 116, 138, 116, 84, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8841, 62, 200, 200, 127, 147, 127, 160, 80, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8842, 32, 91, 91, 54, 48, 42, 48, 64, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8842, 32, 91, 91, 80, 73, 51, 60, 88, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8843, 53, 172, 172, 135, 82, 114, 77, 145, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8843, 53, 156, 156, 140, 98, 145, 98, 119, 300); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8844, 38, 107, 107, 83, 71, 64, 71, 77, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8844, 38, 122, 122, 52, 68, 87, 102, 79, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8845, 38, 107, 107, 83, 71, 64, 71, 77, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8845, 38, 114, 114, 94, 71, 98, 75, 49, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8846, 25, 64, 64, 29, 31, 39, 49, 41, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8846, 25, 69, 69, 44, 36, 64, 54, 46, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8847, 34, 117, 117, 68, 75, 95, 78, 54, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8848, 33, 114, 114, 89, 69, 82, 69, 79, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8849, 62, 187, 187, 138, 200, 101, 101, 76, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8849, 62, 181, 181, 145, 182, 107, 120, 83, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8849, 62, 187, 187, 182, 151, 114, 126, 83, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8850, 62, 261, 261, 132, 76, 76, 132, 33, 584); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8850, 62, 187, 187, 151, 105, 126, 105, 171, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8850, 62, 189, 189, 132, 90, 95, 90, 107, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8851, 46, 118, 118, 85, 67, 67, 67, 85, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8851, 46, 132, 132, 90, 118, 53, 81, 99, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8852, 32, 97, 97, 51, 45, 51, 51, 26, 636); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8852, 32, 101, 101, 82, 67, 61, 67, 75, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8853, 62, 181, 181, 194, 157, 101, 157, 52, 619); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8853, 62, 222, 222, 142, 110, 115, 102, 131, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8853, 62, 186, 186, 151, 116, 138, 116, 84, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8854, 28, 70, 70, 45, 70, 37, 59, 41, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8854, 28, 86, 86, 45, 40, 45, 45, 23, 636); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8855, 62, 143, 143, 83, 76, 107, 76, 107, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8855, 62, 174, 174, 151, 114, 126, 126, 157, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8856, 64, 199, 199, 130, 130, 98, 98, 143, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8856, 64, 190, 190, 149, 107, 136, 111, 136, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8856, 64, 199, 199, 162, 111, 156, 117, 117, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8857, 26, 71, 71, 40, 46, 35, 46, 48, 609); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8858, 52, 194, 194, 92, 111, 107, 126, 57, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8858, 52, 199, 199, 112, 96, 112, 106, 54, 629); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8859, 52, 158, 158, 125, 89, 125, 89, 128, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8859, 52, 158, 158, 125, 89, 125, 89, 128, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8859, 52, 158, 158, 125, 89, 125, 89, 128, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8860, 51, 135, 135, 99, 84, 99, 84, 128, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8860, 51, 160, 160, 69, 89, 115, 135, 104, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8861, 41, 121, 121, 81, 63, 87, 112, 68, 431); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8862, 30, 80, 80, 51, 42, 75, 63, 54, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8863, 32, 101, 101, 79, 56, 79, 56, 81, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8864, 54, 261, 261, 105, 110, 67, 73, 94, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8865, 37, 104, 104, 81, 69, 62, 69, 75, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8865, 38, 112, 112, 62, 60, 77, 60, 105, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8865, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8866, 41, 121, 121, 93, 73, 60, 64, 87, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8867, 39, 112, 112, 112, 85, 89, 61, 61, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8867, 39, 121, 121, 97, 104, 54, 61, 69, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8868, 29, 74, 74, 44, 68, 29, 65, 21, 298); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8868, 29, 84, 84, 44, 44, 50, 56, 44, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8868, 29, 92, 92, 73, 57, 67, 57, 42, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8869, 35, 99, 99, 77, 65, 63, 72, 73, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8869, 37, 123, 123, 68, 71, 98, 67, 96, 590); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8870, 38, 95, 95, 56, 45, 60, 75, 49, 324); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8871, 41, 127, 127, 85, 89, 109, 93, 60, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8872, 57, 195, 195, 111, 150, 139, 116, 59, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8872, 57, 173, 173, 105, 128, 105, 145, 116, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8873, 59, 190, 190, 132, 120, 108, 120, 179, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8874, 35, 103, 103, 63, 63, 52, 52, 80, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8874, 34, 113, 113, 65, 46, 65, 46, 49, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8874, 36, 106, 106, 102, 68, 46, 53, 66, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8875, 51, 153, 153, 140, 84, 84, 84, 115, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8875, 51, 176, 176, 135, 104, 94, 104, 74, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8876, 39, 137, 137, 85, 85, 69, 69, 46, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8876, 39, 137, 137, 104, 81, 73, 81, 58, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8877, 29, 84, 84, 53, 56, 64, 58, 38, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8877, 31, 111, 111, 75, 68, 93, 56, 50, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8878, 33, 101, 101, 63, 43, 56, 43, 56, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8878, 33, 101, 101, 66, 56, 86, 56, 86, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8879, 31, 89, 89, 96, 65, 53, 53, 59, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8880, 35, 99, 99, 108, 73, 59, 59, 66, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8881, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8881, 40, 112, 112, 123, 83, 67, 67, 75, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8882, 44, 122, 122, 135, 91, 73, 73, 82, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8882, 44, 122, 122, 100, 69, 100, 91, 117, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8883, 49, 135, 135, 150, 101, 81, 81, 91, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8883, 49, 135, 135, 110, 76, 110, 101, 130, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8883, 49, 135, 135, 110, 76, 110, 101, 130, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8884, 29, 91, 91, 73, 50, 73, 50, 53, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8884, 29, 95, 95, 61, 61, 47, 47, 67, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8885, 33, 103, 103, 82, 56, 82, 56, 59, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8885, 33, 107, 107, 69, 69, 53, 53, 76, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8886, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8886, 40, 184, 184, 147, 99, 95, 71, 99, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8887, 44, 134, 134, 108, 73, 108, 73, 78, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8887, 44, 201, 201, 161, 108, 104, 78, 108, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8888, 49, 148, 148, 120, 81, 120, 81, 86, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8888, 49, 155, 155, 135, 101, 86, 76, 113, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8888, 49, 223, 223, 179, 120, 115, 86, 120, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8889, 33, 94, 94, 49, 49, 56, 63, 49, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8889, 33, 107, 107, 46, 59, 76, 89, 69, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8890, 16, 47, 47, 37, 23, 37, 23, 21, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8890, 18, 52, 52, 36, 47, 25, 25, 22, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8891, 17, 48, 48, 24, 31, 24, 36, 28, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8891, 17, 50, 50, 31, 26, 45, 38, 33, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8892, 14, 44, 44, 29, 22, 29, 24, 26, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8892, 14, 44, 44, 29, 22, 29, 24, 26, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8893, 17, 51, 51, 34, 26, 34, 28, 31, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8894, 18, 56, 56, 22, 22, 24, 31, 29, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8894, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8895, 18, 56, 56, 22, 22, 24, 31, 29, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8895, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8896, 17, 53, 53, 21, 21, 23, 30, 28, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8896, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8897, 20, 61, 61, 24, 24, 26, 34, 32, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8897, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8898, 28, 81, 81, 31, 31, 35, 46, 43, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8898, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8899, 38, 137, 137, 56, 56, 76, 91, 71, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8899, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8900, 53, 188, 188, 77, 77, 104, 125, 98, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8900, 55, 183, 183, 167, 112, 96, 118, 85, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8901, 18, 56, 56, 22, 22, 24, 31, 29, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8901, 18, 45, 45, 25, 31, 25, 31, 33, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8902, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8902, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8903, 25, 74, 74, 29, 29, 32, 42, 39, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8903, 25, 79, 79, 54, 39, 31, 31, 31, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8904, 24, 71, 71, 28, 28, 30, 40, 37, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8904, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8905, 23, 68, 68, 27, 27, 29, 39, 36, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8905, 27, 84, 84, 57, 41, 33, 33, 33, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8906, 26, 76, 76, 29, 29, 33, 43, 40, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8906, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8907, 32, 91, 91, 35, 35, 39, 52, 48, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8907, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8908, 42, 151, 151, 62, 62, 83, 100, 78, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8908, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8909, 51, 181, 181, 74, 74, 100, 121, 94, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8909, 53, 177, 177, 161, 108, 92, 114, 82, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8910, 26, 76, 76, 29, 29, 33, 43, 40, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8910, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8911, 43, 154, 154, 63, 63, 85, 103, 80, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8911, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8912, 14, 44, 44, 29, 22, 29, 24, 26, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8912, 14, 44, 44, 29, 22, 29, 24, 26, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8913, 17, 51, 51, 34, 26, 34, 28, 31, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8914, 24, 73, 73, 52, 44, 30, 44, 42, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8915, 65, 215, 215, 171, 132, 158, 132, 151, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8915, 65, 182, 182, 190, 106, 151, 106, 164, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8916, 16, 49, 49, 33, 25, 33, 26, 29, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8916, 16, 52, 52, 36, 31, 21, 31, 29, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8917, 21, 55, 55, 41, 29, 27, 29, 37, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8917, 21, 61, 61, 41, 31, 41, 33, 37, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8918, 61, 202, 202, 161, 124, 148, 124, 142, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8918, 61, 172, 172, 179, 100, 142, 100, 155, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8919, 22, 68, 68, 48, 41, 28, 41, 39, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8920, 24, 69, 69, 47, 35, 47, 37, 42, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8921, 28, 78, 78, 54, 40, 54, 43, 48, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8922, 26, 79, 79, 55, 48, 32, 48, 45, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8923, 10, 33, 33, 19, 18, 19, 18, 21, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8925, 14, 44, 44, 31, 33, 17, 17, 14, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8926, 13, 38, 38, 16, 25, 19, 22, 26, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8926, 13, 39, 39, 18, 22, 27, 22, 17, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8927, 64, 154, 154, 66, 47, 136, 111, 111, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8928, 26, 79, 79, 55, 48, 32, 48, 45, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8929, 10, 33, 33, 19, 18, 19, 18, 21, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8930, 10, 33, 33, 19, 18, 19, 18, 21, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8931, 24, 64, 64, 28, 32, 64, 37, 23, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8932, 10, 33, 33, 19, 18, 21, 18, 19, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8933, 61, 141, 141, 112, 75, 69, 75, 100, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8933, 61, 160, 160, 69, 87, 94, 161, 130, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8934, 34, 103, 103, 78, 47, 27, 47, 51, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8935, 61, 139, 139, 69, 69, 106, 94, 87, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8935, 61, 135, 135, 94, 75, 87, 87, 136, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8937, 34, 107, 107, 68, 54, 88, 75, 37, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8938, 60, 151, 151, 104, 134, 68, 68, 44, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8938, 60, 180, 180, 139, 183, 91, 165, 50, 299); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8939, 60, 157, 157, 80, 80, 56, 56, 44, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8939, 60, 151, 151, 86, 74, 86, 74, 103, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8940, 59, 137, 137, 60, 79, 60, 79, 68, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8940, 59, 172, 172, 156, 120, 91, 120, 150, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8940, 59, 131, 131, 108, 91, 79, 91, 55, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8941, 10, 32, 32, 20, 17, 13, 17, 19, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8942, 61, 147, 147, 63, 45, 130, 106, 106, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8943, 59, 138, 138, 101, 79, 85, 85, 85, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8943, 59, 158, 158, 108, 79, 73, 79, 75, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8943, 59, 143, 143, 114, 97, 73, 61, 85, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8944, 61, 141, 141, 94, 124, 69, 100, 63, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8944, 61, 156, 156, 106, 87, 81, 87, 73, 248); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8945, 9, 25, 25, 10, 18, 10, 11, 22, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8946, 5, 18, 18, 10, 8, 10, 10, 12, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8947, 55, 183, 183, 57, 41, 68, 46, 41, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8948, 9, 29, 29, 13, 14, 17, 20, 18, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8949, 53, 135, 135, 77, 66, 55, 55, 77, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8949, 53, 135, 135, 108, 124, 34, 71, 34, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8950, 2, 14, 14, 6, 7, 6, 6, 7, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8950, 4, 19, 19, 8, 9, 8, 9, 8, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8951, 26, 71, 71, 27, 28, 37, 42, 22, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8952, 13, 51, 51, 22, 18, 25, 21, 27, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8953, 55, 249, 249, 112, 73, 123, 84, 112, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8955, 30, 77, 77, 53, 38, 54, 48, 72, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8956, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8957, 21, 86, 86, 31, 20, 31, 23, 20, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8957, 22, 64, 64, 28, 34, 37, 61, 50, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8959, 7, 26, 26, 18, 20, 8, 13, 8, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8961, 57, 190, 190, 162, 111, 93, 93, 76, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8961, 57, 184, 184, 150, 128, 76, 128, 116, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8961, 57, 190, 190, 150, 116, 139, 116, 133, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8962, 33, 114, 114, 59, 59, 43, 43, 26, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8962, 33, 114, 114, 59, 59, 43, 43, 26, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8962, 33, 117, 117, 66, 89, 82, 69, 36, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8963, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8964, 38, 133, 133, 75, 102, 94, 79, 41, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8965, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8965, 31, 107, 107, 56, 56, 40, 40, 25, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8965, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8966, 34, 100, 100, 68, 64, 81, 64, 81, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8967, 37, 89, 89, 44, 40, 107, 70, 96, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8968, 30, 86, 86, 60, 66, 75, 66, 84, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8968, 30, 86, 86, 39, 63, 51, 42, 39, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8968, 34, 103, 103, 71, 61, 78, 61, 75, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8969, 17, 53, 53, 27, 26, 25, 41, 25, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8970, 30, 86, 86, 39, 63, 51, 42, 39, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8970, 30, 86, 86, 39, 63, 51, 42, 39, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8970, 30, 107, 107, 72, 66, 90, 54, 48, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8971, 32, 91, 91, 42, 67, 54, 45, 42, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8971, 35, 99, 99, 45, 73, 59, 49, 45, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8972, 13, 34, 34, 14, 13, 36, 23, 33, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8972, 13, 34, 34, 14, 13, 36, 23, 33, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8972, 15, 42, 42, 20, 19, 46, 31, 41, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8973, 26, 81, 81, 55, 48, 61, 48, 58, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8974, 17, 63, 63, 33, 33, 24, 24, 16, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8974, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8975, 24, 61, 61, 37, 35, 47, 35, 47, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8975, 24, 61, 61, 30, 28, 71, 47, 64, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8976, 36, 105, 105, 64, 61, 111, 86, 97, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8977, 29, 84, 84, 43, 41, 40, 67, 39, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8977, 33, 110, 110, 65, 63, 65, 92, 61, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8978, 40, 94, 94, 47, 47, 71, 63, 59, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8978, 40, 116, 116, 79, 75, 95, 75, 95, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8978, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8979, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8979, 31, 95, 95, 75, 68, 50, 56, 59, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8980, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8980, 34, 103, 103, 81, 75, 54, 61, 64, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8981, 37, 89, 89, 44, 40, 107, 70, 96, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8981, 37, 112, 112, 88, 81, 59, 66, 70, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8982, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8982, 40, 120, 120, 95, 87, 63, 71, 75, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8983, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8983, 43, 115, 115, 63, 59, 136, 102, 123, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8984, 16, 39, 39, 17, 15, 44, 28, 39, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8985, 35, 85, 85, 52, 49, 66, 49, 66, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8985, 35, 106, 106, 73, 63, 80, 63, 77, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8985, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8986, 36, 79, 79, 35, 35, 50, 43, 46, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8986, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8987, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8987, 31, 95, 95, 50, 56, 75, 68, 59, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8988, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8988, 34, 103, 103, 54, 61, 81, 75, 64, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8989, 37, 89, 89, 44, 40, 107, 70, 96, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8989, 37, 112, 112, 59, 66, 88, 81, 70, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8990, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8990, 40, 120, 120, 63, 71, 95, 87, 75, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8991, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8991, 43, 115, 115, 63, 59, 136, 102, 123, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8992, 16, 39, 39, 17, 15, 44, 28, 39, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8993, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8993, 41, 123, 123, 97, 89, 64, 73, 77, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8994, 32, 79, 79, 38, 35, 93, 61, 83, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8995, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8995, 36, 87, 87, 43, 39, 104, 68, 93, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8996, 37, 88, 88, 44, 44, 66, 59, 55, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8997, 37, 108, 108, 73, 70, 88, 70, 88, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8998, 36, 79, 79, 35, 35, 50, 43, 46, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8998, 36, 87, 87, 43, 39, 104, 68, 93, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8999, 31, 69, 69, 31, 31, 44, 37, 40, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (8999, 31, 75, 75, 37, 37, 56, 50, 47, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9000, 26, 66, 66, 32, 29, 76, 50, 68, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9000, 26, 65, 65, 32, 32, 48, 42, 40, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9001, 41, 118, 118, 114, 73, 87, 71, 73, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9001, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9002, 36, 109, 109, 75, 64, 82, 64, 79, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9003, 17, 42, 42, 19, 19, 26, 23, 24, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9004, 31, 95, 95, 75, 68, 50, 56, 59, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9005, 33, 81, 81, 39, 36, 96, 63, 86, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9005, 33, 101, 101, 79, 72, 53, 59, 63, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9006, 38, 92, 92, 45, 41, 109, 71, 98, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9006, 38, 114, 114, 90, 83, 60, 68, 71, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9007, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9007, 41, 123, 123, 97, 89, 64, 73, 77, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9008, 45, 134, 134, 106, 97, 70, 79, 84, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9008, 45, 120, 120, 66, 61, 142, 106, 129, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9009, 32, 175, 175, 37, 53, 37, 53, 37, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9010, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9010, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9010, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9011, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9012, 30, 74, 74, 36, 33, 87, 57, 78, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9012, 30, 92, 92, 48, 54, 72, 66, 57, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9013, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9013, 34, 103, 103, 54, 61, 81, 75, 64, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9014, 37, 89, 89, 44, 40, 107, 70, 96, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9014, 37, 112, 112, 59, 66, 88, 81, 70, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9015, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9015, 40, 120, 120, 63, 71, 95, 87, 75, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9016, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9016, 43, 115, 115, 63, 59, 136, 102, 123, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9017, 26, 144, 144, 31, 44, 31, 44, 31, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9017, 26, 66, 66, 40, 37, 50, 37, 50, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9017, 26, 66, 66, 32, 29, 76, 50, 68, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9018, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9018, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9018, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9019, 36, 87, 87, 53, 50, 68, 50, 68, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9020, 41, 119, 119, 60, 77, 97, 85, 73, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9021, 18, 45, 45, 25, 31, 25, 31, 33, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9021, 18, 56, 56, 20, 24, 36, 40, 33, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9022, 36, 87, 87, 43, 39, 104, 68, 93, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9023, 36, 195, 195, 41, 59, 41, 59, 41, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9024, 36, 86, 86, 43, 43, 64, 57, 53, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9025, 36, 105, 105, 71, 68, 86, 68, 86, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9026, 36, 79, 79, 35, 35, 50, 43, 46, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9027, 26, 59, 59, 27, 27, 37, 32, 35, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9027, 26, 59, 59, 27, 27, 37, 32, 35, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9027, 26, 65, 65, 32, 32, 48, 42, 40, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9028, 33, 114, 114, 59, 59, 43, 43, 26, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9028, 33, 114, 114, 59, 59, 43, 43, 26, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9028, 33, 117, 117, 66, 89, 82, 69, 36, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9029, 52, 153, 153, 106, 91, 117, 91, 112, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9030, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9031, 48, 113, 113, 70, 65, 89, 65, 89, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9031, 48, 166, 166, 94, 127, 118, 99, 51, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9031, 49, 115, 115, 56, 52, 140, 91, 125, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9032, 52, 122, 122, 75, 70, 96, 70, 96, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9032, 52, 179, 179, 101, 138, 127, 106, 54, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9032, 54, 126, 126, 62, 56, 154, 100, 137, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9033, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9033, 31, 107, 107, 56, 56, 40, 40, 25, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9033, 31, 76, 76, 37, 34, 90, 59, 81, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9034, 48, 113, 113, 70, 65, 89, 65, 89, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9034, 48, 113, 113, 70, 65, 89, 65, 89, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9034, 49, 140, 140, 96, 91, 115, 91, 115, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9035, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9035, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9036, 38, 133, 133, 75, 102, 94, 79, 41, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9037, 48, 113, 113, 70, 65, 89, 65, 89, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9037, 48, 132, 132, 68, 65, 63, 108, 62, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9037, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9038, 53, 124, 124, 77, 71, 98, 71, 98, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9038, 53, 172, 172, 101, 98, 101, 145, 95, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9038, 53, 172, 172, 101, 98, 101, 145, 95, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9039, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9040, 22, 53, 53, 28, 26, 56, 28, 48, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9040, 23, 68, 68, 40, 40, 52, 52, 52, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9040, 24, 61, 61, 30, 28, 71, 47, 64, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9041, 37, 93, 93, 55, 51, 103, 59, 88, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9041, 39, 109, 109, 65, 65, 85, 85, 85, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9041, 38, 92, 92, 45, 41, 109, 71, 98, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9042, 58, 158, 158, 101, 95, 176, 112, 153, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9042, 57, 155, 155, 93, 93, 122, 122, 122, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9042, 59, 155, 155, 85, 79, 185, 138, 167, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9043, 52, 143, 143, 86, 101, 86, 101, 106, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9043, 54, 142, 142, 78, 73, 170, 127, 154, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9044, 58, 158, 158, 95, 112, 95, 112, 118, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9044, 58, 152, 152, 83, 78, 182, 136, 165, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9045, 43, 107, 107, 63, 59, 119, 67, 102, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9045, 46, 127, 127, 81, 76, 141, 90, 122, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9045, 46, 123, 123, 67, 62, 145, 108, 131, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9046, 56, 158, 158, 109, 103, 131, 103, 131, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9046, 56, 153, 153, 92, 92, 142, 142, 142, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9047, 53, 128, 128, 103, 61, 90, 59, 71, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9047, 55, 106, 106, 68, 123, 57, 123, 52, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9048, 58, 163, 163, 159, 101, 122, 98, 101, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9048, 60, 139, 139, 110, 182, 98, 182, 56, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9049, 51, 171, 171, 89, 89, 64, 64, 38, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9049, 55, 189, 189, 107, 145, 134, 112, 57, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9050, 56, 192, 192, 109, 148, 137, 114, 58, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9050, 60, 205, 205, 116, 158, 146, 122, 62, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9051, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9052, 54, 126, 126, 62, 56, 154, 100, 137, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9052, 54, 126, 126, 62, 56, 154, 100, 137, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9053, 15, 37, 37, 16, 14, 41, 26, 37, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9054, 53, 129, 129, 55, 77, 92, 77, 71, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9054, 55, 156, 156, 79, 101, 129, 112, 96, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9055, 15, 39, 39, 22, 26, 22, 26, 28, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9057, 15, 37, 37, 16, 14, 41, 26, 37, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9058, 52, 143, 143, 86, 86, 112, 112, 112, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9058, 52, 127, 127, 75, 70, 143, 80, 122, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9059, 56, 153, 153, 92, 92, 120, 120, 120, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9059, 58, 158, 158, 101, 95, 176, 112, 153, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9060, 23, 61, 61, 36, 33, 66, 38, 56, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9060, 23, 59, 59, 29, 27, 68, 45, 61, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9061, 38, 95, 95, 56, 52, 106, 60, 90, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9061, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9062, 58, 158, 158, 101, 95, 176, 112, 153, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9062, 58, 152, 152, 83, 78, 182, 136, 165, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9063, 15, 45, 45, 26, 24, 29, 25, 26, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9064, 54, 126, 126, 67, 83, 67, 100, 83, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9064, 58, 181, 181, 78, 101, 130, 153, 118, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9065, 44, 109, 109, 47, 64, 78, 64, 60, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9065, 48, 137, 137, 70, 89, 113, 99, 84, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9066, 23, 61, 61, 27, 36, 43, 36, 33, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9066, 25, 89, 89, 39, 31, 44, 36, 49, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9066, 27, 67, 67, 33, 33, 49, 44, 41, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9067, 41, 119, 119, 60, 77, 97, 85, 73, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9067, 43, 197, 197, 89, 58, 97, 66, 89, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9067, 45, 132, 132, 79, 79, 133, 124, 93, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9068, 57, 161, 161, 82, 105, 133, 116, 99, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9068, 59, 267, 267, 120, 78, 132, 89, 120, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9068, 61, 175, 175, 106, 106, 179, 167, 124, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9069, 55, 150, 150, 77, 74, 72, 123, 71, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9069, 57, 150, 150, 82, 76, 179, 133, 162, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9070, 59, 190, 190, 112, 108, 112, 161, 105, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9070, 61, 160, 160, 87, 81, 191, 142, 173, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9071, 43, 107, 107, 63, 59, 119, 67, 102, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9071, 46, 127, 127, 81, 76, 141, 90, 122, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9071, 46, 135, 135, 81, 81, 136, 127, 95, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9072, 57, 167, 167, 88, 99, 133, 122, 105, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9072, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9073, 56, 158, 158, 109, 103, 131, 103, 131, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9073, 60, 173, 173, 176, 104, 104, 164, 122, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9074, 60, 169, 169, 116, 110, 140, 110, 140, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9074, 60, 173, 173, 176, 104, 104, 164, 122, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9075, 52, 174, 174, 91, 91, 65, 65, 39, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9075, 56, 192, 192, 109, 148, 137, 114, 58, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9076, 58, 199, 199, 112, 153, 141, 118, 60, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9076, 62, 212, 212, 120, 126, 151, 163, 64, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9077, 56, 136, 136, 137, 176, 97, 176, 75, 562); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9078, 54, 148, 148, 89, 89, 137, 137, 137, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9079, 17, 41, 41, 17, 16, 46, 29, 41, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9080, 52, 148, 148, 75, 96, 122, 106, 91, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9080, 52, 127, 127, 75, 70, 143, 80, 122, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9080, 55, 150, 150, 96, 90, 167, 107, 145, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9081, 17, 43, 43, 24, 29, 24, 29, 31, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9082, 53, 128, 128, 103, 61, 90, 59, 71, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9082, 55, 145, 145, 79, 74, 173, 129, 156, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9083, 17, 41, 41, 17, 16, 46, 29, 41, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9084, 58, 158, 158, 95, 95, 124, 124, 124, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9084, 54, 132, 132, 78, 73, 148, 83, 127, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9085, 58, 158, 158, 95, 95, 124, 124, 124, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9085, 62, 168, 168, 107, 101, 188, 120, 163, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9086, 26, 55, 55, 35, 61, 29, 61, 27, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9086, 26, 66, 66, 32, 29, 76, 50, 68, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9087, 44, 105, 105, 82, 135, 73, 135, 42, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9087, 44, 105, 105, 51, 47, 126, 82, 113, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9088, 59, 184, 184, 79, 102, 132, 156, 120, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9088, 59, 155, 155, 85, 79, 185, 138, 167, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9088, 59, 143, 143, 144, 185, 102, 185, 79, 562); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9089, 17, 50, 50, 28, 27, 33, 28, 29, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9090, 57, 167, 167, 133, 122, 88, 99, 105, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9090, 59, 170, 170, 173, 102, 102, 161, 120, 268); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9091, 44, 127, 127, 64, 82, 104, 91, 78, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9091, 45, 129, 129, 138, 75, 88, 75, 88, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9091, 46, 113, 113, 113, 145, 81, 145, 62, 562); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9092, 30, 86, 86, 60, 66, 75, 66, 84, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9092, 30, 86, 86, 39, 63, 51, 42, 39, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9092, 34, 103, 103, 71, 61, 78, 61, 75, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9093, 44, 105, 105, 51, 47, 126, 82, 113, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9093, 47, 139, 139, 97, 83, 106, 83, 101, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9094, 43, 124, 124, 84, 80, 102, 80, 102, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9095, 17, 53, 53, 27, 26, 25, 41, 25, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9096, 39, 109, 109, 50, 81, 65, 54, 50, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9096, 39, 109, 109, 50, 81, 65, 54, 50, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9096, 39, 137, 137, 93, 85, 116, 69, 61, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9097, 42, 117, 117, 53, 87, 70, 57, 53, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9097, 45, 125, 125, 57, 93, 75, 61, 57, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9098, 14, 36, 36, 15, 14, 39, 25, 35, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9098, 14, 36, 36, 15, 14, 39, 25, 35, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9098, 16, 44, 44, 21, 20, 49, 33, 44, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9099, 26, 81, 81, 55, 48, 61, 48, 58, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9100, 17, 63, 63, 33, 33, 24, 24, 16, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9100, 20, 73, 73, 38, 38, 28, 28, 18, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9101, 27, 68, 68, 41, 39, 52, 39, 52, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9101, 29, 72, 72, 35, 32, 85, 56, 76, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9102, 37, 93, 93, 40, 55, 66, 55, 51, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9102, 41, 135, 135, 79, 77, 79, 114, 74, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9103, 16, 63, 63, 33, 33, 31, 31, 25, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9104, 36, 105, 105, 64, 61, 111, 86, 97, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9105, 32, 127, 127, 51, 70, 85, 77, 35, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9106, 31, 92, 92, 40, 47, 93, 53, 34, 238); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9107, 24, 64, 64, 28, 37, 40, 44, 35, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9108, 30, 83, 83, 48, 48, 66, 48, 33, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9108, 30, 77, 77, 33, 39, 78, 45, 27, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9108, 30, 94, 94, 50, 63, 77, 63, 74, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9109, 23, 66, 66, 33, 33, 38, 33, 46, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9109, 23, 76, 76, 24, 33, 44, 38, 24, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9110, 64, 148, 148, 92, 85, 117, 85, 117, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9110, 64, 180, 180, 124, 117, 149, 117, 149, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9110, 64, 178, 178, 175, 111, 134, 108, 111, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9111, 23, 61, 61, 27, 31, 61, 36, 22, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9111, 23, 66, 66, 33, 33, 38, 33, 46, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9112, 64, 186, 186, 130, 111, 143, 111, 136, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9112, 64, 189, 189, 102, 130, 159, 130, 152, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9112, 64, 173, 173, 117, 162, 117, 181, 124, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9113, 31, 83, 83, 34, 50, 56, 50, 28, 637); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9113, 31, 93, 93, 51, 50, 63, 50, 86, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9114, 22, 56, 56, 26, 50, 37, 41, 26, 638); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9114, 22, 73, 73, 23, 32, 42, 37, 23, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9115, 65, 176, 176, 106, 106, 164, 164, 164, 284); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9115, 65, 189, 189, 99, 151, 151, 171, 112, 639); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9116, 31, 75, 75, 34, 68, 50, 56, 34, 638); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9116, 31, 88, 88, 62, 47, 37, 47, 37, 557); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9117, 24, 77, 77, 41, 52, 63, 52, 60, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9118, 65, 176, 176, 125, 138, 158, 138, 177, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9118, 65, 345, 345, 71, 103, 71, 103, 71, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9119, 63, 146, 146, 96, 128, 71, 103, 65, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9119, 63, 171, 171, 122, 153, 96, 128, 90, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9119, 63, 190, 190, 122, 122, 185, 147, 78, 260); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9119, 63, 234, 234, 109, 122, 185, 134, 65, 640); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9120, 54, 148, 148, 105, 132, 83, 110, 78, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9120, 54, 146, 146, 78, 181, 127, 137, 56, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9121, 54, 208, 208, 83, 116, 140, 127, 55, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9121, 54, 148, 148, 67, 89, 127, 89, 83, 276); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9122, 35, 96, 96, 56, 56, 77, 56, 38, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9122, 35, 103, 103, 45, 52, 105, 59, 38, 238); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9123, 23, 61, 61, 27, 36, 38, 43, 33, 271); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9124, 32, 79, 79, 42, 51, 42, 61, 51, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9124, 32, 77, 77, 35, 70, 51, 58, 35, 638); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9125, 23, 76, 76, 24, 33, 44, 38, 24, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9126, 36, 142, 142, 57, 79, 95, 86, 38, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9127, 23, 61, 61, 27, 31, 61, 36, 22, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9128, 36, 123, 123, 53, 42, 61, 49, 68, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9128, 36, 102, 102, 35, 43, 68, 75, 61, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9128, 36, 166, 166, 75, 49, 82, 56, 75, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9129, 36, 105, 105, 64, 61, 111, 86, 97, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9130, 62, 199, 199, 117, 114, 117, 169, 110, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9130, 62, 143, 143, 114, 188, 101, 188, 58, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9131, 62, 150, 150, 64, 89, 107, 89, 83, 608); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9132, 23, 74, 74, 39, 50, 60, 50, 57, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9133, 35, 84, 84, 38, 77, 56, 63, 38, 638); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9133, 35, 99, 99, 49, 66, 70, 77, 56, 237); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9134, 22, 64, 64, 32, 31, 37, 31, 44, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9134, 22, 56, 56, 26, 50, 37, 41, 26, 638); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9135, 33, 99, 99, 54, 53, 67, 53, 92, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9136, 46, 173, 173, 81, 90, 136, 99, 49, 640); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9137, 24, 64, 64, 28, 32, 64, 37, 23, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9137, 24, 77, 77, 41, 52, 63, 52, 60, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9138, 24, 73, 73, 37, 47, 59, 52, 44, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9138, 24, 70, 70, 49, 37, 30, 37, 30, 557); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9139, 46, 127, 127, 76, 90, 76, 90, 95, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9140, 46, 159, 159, 108, 99, 136, 81, 72, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9141, 22, 59, 59, 26, 30, 59, 34, 21, 634); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9142, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9142, 21, 54, 54, 27, 27, 39, 35, 33, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9143, 58, 164, 164, 101, 95, 176, 136, 153, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9144, 34, 83, 83, 41, 37, 98, 64, 88, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9144, 36, 109, 109, 86, 79, 57, 64, 68, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9145, 40, 120, 120, 95, 87, 63, 71, 75, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9145, 42, 113, 113, 62, 57, 133, 99, 120, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9146, 42, 117, 117, 53, 87, 70, 57, 53, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9146, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9146, 44, 118, 118, 64, 60, 139, 104, 126, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9147, 49, 145, 145, 115, 105, 76, 86, 91, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9147, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9147, 51, 135, 135, 74, 69, 161, 120, 145, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9148, 17, 41, 41, 17, 16, 46, 29, 41, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9149, 39, 109, 109, 73, 100, 73, 112, 77, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9149, 41, 114, 114, 81, 89, 101, 89, 114, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9150, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9150, 40, 112, 112, 67, 79, 67, 79, 83, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9151, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9152, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9152, 40, 120, 120, 83, 71, 91, 71, 87, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9153, 35, 78, 78, 49, 56, 66, 56, 77, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9153, 35, 113, 113, 49, 63, 80, 94, 73, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9154, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9154, 50, 168, 168, 88, 88, 63, 63, 38, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9154, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9154, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9154, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9155, 54, 110, 110, 46, 40, 137, 83, 121, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9155, 50, 168, 168, 88, 88, 63, 63, 38, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9155, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9155, 51, 140, 140, 72, 69, 67, 115, 66, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9155, 51, 150, 150, 89, 84, 115, 99, 115, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9155, 50, 143, 143, 83, 93, 108, 98, 63, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9156, 51, 120, 120, 59, 53, 145, 94, 130, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9156, 51, 104, 104, 43, 38, 130, 79, 115, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9156, 51, 145, 145, 74, 59, 140, 120, 120, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9156, 51, 164, 164, 104, 99, 94, 94, 126, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9156, 51, 145, 145, 115, 89, 85, 85, 125, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9157, 52, 122, 122, 60, 54, 148, 96, 132, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9157, 54, 148, 148, 67, 110, 89, 73, 67, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9157, 50, 168, 168, 88, 88, 63, 63, 38, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9157, 51, 140, 140, 72, 69, 67, 115, 66, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9157, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9158, 52, 137, 137, 75, 70, 164, 122, 148, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9158, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9158, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9158, 51, 160, 160, 130, 89, 84, 99, 155, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9158, 54, 159, 159, 143, 110, 83, 110, 137, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9158, 52, 143, 143, 138, 96, 86, 86, 127, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9159, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9159, 52, 137, 137, 75, 70, 164, 122, 148, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9159, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9159, 54, 153, 153, 78, 62, 148, 127, 127, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9159, 51, 334, 334, 28, 28, 59, 130, 74, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9160, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9160, 53, 124, 124, 61, 55, 151, 98, 135, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9160, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9160, 52, 143, 143, 101, 112, 127, 112, 143, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9160, 53, 164, 164, 113, 106, 139, 114, 130, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9160, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9161, 51, 135, 135, 74, 69, 161, 120, 145, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9161, 51, 166, 166, 97, 94, 97, 140, 91, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9161, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9161, 51, 176, 176, 120, 110, 150, 89, 79, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9161, 52, 143, 143, 101, 112, 127, 112, 143, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9161, 52, 148, 148, 75, 60, 143, 122, 122, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9162, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9162, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9162, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9162, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9162, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9162, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9163, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9163, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9163, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9163, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9163, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9163, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9164, 51, 135, 135, 43, 59, 43, 69, 99, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9164, 52, 174, 174, 91, 91, 65, 65, 39, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9164, 52, 143, 143, 117, 80, 117, 106, 138, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9164, 51, 135, 135, 94, 69, 94, 74, 84, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9164, 52, 122, 122, 75, 70, 96, 70, 96, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9164, 52, 179, 179, 96, 99, 122, 117, 86, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9165, 52, 179, 179, 101, 138, 127, 106, 54, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9165, 51, 153, 153, 120, 86, 110, 89, 110, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9165, 52, 148, 148, 132, 86, 86, 96, 122, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9165, 51, 176, 176, 110, 110, 89, 89, 59, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9165, 52, 163, 163, 109, 127, 110, 127, 106, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9165, 52, 137, 137, 44, 60, 44, 70, 101, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9166, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9166, 52, 169, 169, 99, 96, 99, 143, 93, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9166, 53, 177, 177, 140, 108, 130, 108, 124, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9166, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9166, 52, 137, 137, 44, 60, 44, 70, 101, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9166, 53, 150, 150, 103, 98, 124, 98, 124, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9167, 51, 145, 145, 99, 94, 120, 94, 120, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9167, 54, 153, 153, 94, 89, 164, 127, 143, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9167, 50, 143, 143, 88, 83, 133, 118, 153, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9167, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9167, 54, 169, 169, 159, 105, 67, 127, 116, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9167, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9168, 42, 134, 134, 99, 89, 70, 89, 83, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9168, 42, 146, 146, 124, 85, 78, 79, 68, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9169, 40, 115, 115, 89, 59, 89, 59, 104, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9169, 40, 115, 115, 89, 59, 89, 59, 104, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9170, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9170, 40, 112, 112, 87, 74, 71, 82, 83, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9171, 30, 86, 86, 65, 42, 42, 42, 60, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9172, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9172, 44, 157, 157, 130, 66, 113, 66, 83, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9173, 23, 73, 73, 54, 45, 40, 40, 31, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9174, 30, 77, 77, 45, 42, 84, 48, 72, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9175, 40, 146, 146, 93, 73, 76, 68, 86, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9175, 40, 114, 114, 115, 87, 91, 63, 63, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9176, 39, 113, 113, 89, 108, 54, 108, 64, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9176, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9176, 39, 98, 98, 85, 73, 50, 50, 65, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9177, 42, 151, 151, 78, 78, 74, 74, 57, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9178, 44, 153, 153, 129, 89, 81, 83, 71, 552); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9179, 59, 208, 208, 173, 87, 150, 87, 110, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9180, 29, 84, 84, 63, 41, 41, 41, 58, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9180, 29, 88, 88, 63, 51, 42, 43, 40, 641); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9181, 18, 54, 54, 36, 31, 25, 31, 42, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9181, 19, 54, 54, 31, 30, 36, 30, 32, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9181, 17, 56, 56, 38, 33, 41, 33, 40, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9182, 36, 112, 112, 89, 65, 61, 65, 100, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9182, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9182, 38, 114, 114, 79, 68, 87, 68, 83, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9183, 57, 173, 173, 139, 100, 93, 100, 156, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9183, 58, 181, 181, 121, 116, 136, 118, 124, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9183, 56, 164, 164, 114, 97, 125, 97, 120, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9184, 24, 66, 66, 54, 40, 44, 44, 56, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9185, 42, 109, 109, 91, 66, 74, 74, 95, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9185, 44, 127, 127, 108, 82, 91, 91, 113, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9186, 56, 142, 142, 120, 86, 97, 97, 125, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9186, 57, 195, 195, 116, 145, 71, 105, 139, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9186, 57, 173, 173, 139, 133, 71, 105, 150, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9186, 58, 164, 164, 141, 107, 118, 118, 147, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9187, 51, 161, 161, 127, 101, 110, 99, 110, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9187, 51, 171, 171, 117, 112, 99, 110, 100, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9188, 53, 161, 161, 130, 124, 66, 98, 140, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9188, 53, 182, 182, 108, 135, 66, 98, 130, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9189, 17, 58, 58, 33, 26, 42, 25, 42, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9190, 23, 68, 68, 52, 32, 52, 32, 55, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9191, 6, 23, 23, 14, 11, 11, 11, 12, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9192, 22, 59, 59, 41, 27, 30, 27, 32, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9192, 22, 79, 79, 34, 27, 39, 32, 43, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9193, 33, 114, 114, 49, 39, 56, 45, 63, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9193, 33, 94, 94, 72, 49, 56, 49, 56, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9194, 45, 206, 206, 93, 60, 102, 69, 93, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9194, 45, 143, 143, 129, 92, 106, 92, 84, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9195, 51, 232, 232, 104, 68, 115, 78, 104, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9195, 51, 160, 160, 145, 103, 120, 103, 94, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9196, 57, 258, 258, 116, 75, 128, 87, 116, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9196, 57, 178, 178, 162, 115, 133, 115, 105, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9197, 26, 65, 65, 32, 32, 48, 42, 40, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9198, 45, 161, 161, 66, 93, 75, 93, 66, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9199, 7, 24, 24, 11, 13, 11, 13, 15, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9200, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9201, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9202, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9203, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9204, 8, 26, 26, 12, 14, 12, 14, 17, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9204, 8, 26, 26, 16, 13, 12, 12, 13, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9205, 45, 161, 161, 66, 93, 75, 93, 66, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9206, 7, 24, 24, 11, 13, 11, 13, 15, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9207, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9208, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9209, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9210, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9211, 19, 58, 58, 44, 30, 34, 30, 34, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9212, 23, 73, 73, 59, 66, 27, 43, 27, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9213, 43, 120, 120, 93, 62, 72, 62, 72, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9214, 55, 150, 150, 118, 78, 90, 78, 90, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9215, 60, 163, 163, 128, 85, 98, 85, 98, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9216, 27, 81, 81, 50, 51, 58, 55, 41, 587); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9217, 35, 236, 236, 24, 24, 70, 112, 56, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9218, 26, 92, 92, 42, 53, 45, 53, 29, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9219, 45, 143, 143, 129, 92, 106, 92, 84, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9220, 54, 169, 169, 154, 109, 127, 109, 100, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9221, 61, 190, 190, 173, 123, 142, 123, 112, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9222, 64, 180, 180, 121, 98, 88, 124, 136, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9223, 64, 167, 167, 117, 98, 79, 98, 136, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9223, 64, 173, 173, 136, 81, 136, 81, 144, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9224, 25, 66, 66, 44, 30, 39, 30, 52, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9225, 36, 105, 105, 81, 53, 81, 53, 94, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9226, 24, 72, 72, 50, 43, 37, 33, 44, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9227, 35, 120, 120, 70, 77, 98, 80, 56, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9228, 24, 64, 64, 42, 29, 37, 29, 50, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9228, 24, 64, 64, 42, 29, 37, 29, 50, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9229, 62, 174, 174, 117, 95, 85, 120, 132, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9230, 62, 150, 150, 95, 75, 70, 75, 79, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9230, 16, 44, 44, 25, 21, 20, 23, 28, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9231, 61, 160, 160, 112, 94, 75, 94, 130, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9231, 61, 166, 166, 130, 78, 130, 78, 137, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9232, 22, 68, 68, 48, 41, 28, 41, 39, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9233, 24, 64, 64, 42, 29, 37, 29, 50, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9234, 55, 222, 222, 88, 88, 108, 108, 98, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9234, 55, 156, 156, 96, 90, 145, 129, 167, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9235, 51, 155, 155, 104, 84, 89, 115, 127, 633); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9236, 8, 26, 26, 12, 14, 12, 14, 17, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9237, 13, 37, 37, 17, 20, 17, 20, 25, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9238, 17, 46, 46, 21, 25, 21, 25, 31, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9239, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9240, 49, 153, 153, 91, 82, 71, 82, 120, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9240, 49, 160, 160, 89, 93, 129, 87, 126, 590); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9241, 15, 39, 39, 19, 19, 19, 19, 19, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9241, 16, 42, 42, 21, 23, 21, 28, 26, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9242, 32, 85, 85, 70, 42, 70, 42, 38, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9242, 31, 89, 89, 40, 53, 40, 53, 37, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9243, 27, 71, 71, 68, 39, 39, 39, 20, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9243, 27, 73, 73, 41, 36, 30, 30, 41, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9244, 40, 104, 104, 35, 51, 35, 51, 35, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9244, 40, 92, 92, 56, 46, 47, 55, 35, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9245, 57, 161, 161, 128, 162, 122, 105, 93, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9245, 57, 207, 207, 145, 111, 99, 139, 82, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9245, 56, 170, 170, 103, 125, 103, 142, 114, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9245, 58, 193, 193, 165, 165, 95, 95, 83, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9246, 21, 55, 55, 25, 25, 29, 33, 25, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9246, 22, 57, 57, 30, 34, 26, 26, 26, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9247, 44, 131, 131, 69, 78, 104, 95, 82, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9247, 45, 134, 134, 106, 97, 70, 79, 84, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9247, 47, 167, 167, 87, 87, 83, 83, 64, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9247, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9248, 59, 184, 184, 79, 102, 132, 156, 120, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9248, 60, 139, 139, 68, 62, 170, 110, 152, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9248, 60, 163, 163, 116, 146, 92, 122, 86, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9248, 60, 175, 175, 92, 104, 140, 128, 110, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9249, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9249, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9249, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9249, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9249, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9249, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9250, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9250, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9250, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9250, 50, 143, 143, 63, 93, 103, 163, 93, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9250, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9250, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9251, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9251, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9251, 50, 128, 128, 73, 63, 53, 53, 73, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9251, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9251, 50, 138, 138, 83, 83, 58, 58, 53, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9251, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9252, 50, 117, 117, 75, 66, 83, 73, 88, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9252, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9252, 50, 113, 113, 108, 68, 58, 58, 98, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9252, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9252, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9252, 50, 123, 123, 63, 83, 63, 98, 73, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9253, 100, 346, 346, 241, 221, 341, 321, 221, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9253, 100, 286, 286, 301, 241, 151, 201, 171, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9253, 100, 296, 296, 231, 231, 231, 231, 211, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9253, 100, 346, 346, 261, 221, 211, 221, 161, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9253, 100, 266, 266, 221, 151, 221, 201, 261, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9253, 100, 326, 326, 191, 211, 271, 221, 151, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9254, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9254, 50, 118, 118, 63, 73, 53, 53, 53, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9254, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9254, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9254, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9254, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9255, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9255, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9255, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9255, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9255, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9255, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9256, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9256, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9256, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9256, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9256, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9256, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9257, 50, 123, 123, 98, 83, 63, 53, 73, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9257, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9257, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9257, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9257, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9257, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9258, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9258, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9258, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9258, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9258, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9258, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9259, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9259, 50, 138, 138, 83, 83, 58, 58, 53, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9259, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9259, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9259, 50, 117, 117, 75, 66, 83, 73, 88, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9259, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9260, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9260, 50, 153, 153, 103, 118, 113, 123, 73, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9260, 50, 118, 118, 78, 53, 53, 53, 108, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9260, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9260, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9260, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9261, 100, 276, 276, 201, 321, 121, 181, 181, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9261, 100, 346, 346, 261, 221, 211, 221, 161, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9261, 100, 246, 246, 191, 191, 171, 171, 141, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9261, 100, 186, 186, 61, 501, 61, 501, 51, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9261, 100, 306, 306, 141, 241, 241, 441, 141, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9261, 100, 336, 336, 171, 261, 161, 301, 171, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9262, 46, 136, 136, 104, 85, 76, 76, 85, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9262, 47, 139, 139, 134, 59, 111, 59, 111, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9262, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9263, 46, 136, 136, 104, 85, 76, 76, 85, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9263, 47, 139, 139, 134, 59, 111, 59, 111, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9263, 48, 128, 128, 113, 75, 55, 94, 132, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9264, 30, 80, 80, 54, 69, 36, 36, 24, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9264, 33, 83, 83, 66, 39, 58, 38, 46, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9264, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9265, 38, 118, 118, 87, 125, 64, 64, 49, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9265, 39, 97, 97, 77, 46, 68, 44, 54, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9265, 40, 96, 96, 71, 95, 67, 55, 47, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9266, 40, 133, 133, 84, 97, 84, 105, 53, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9266, 39, 141, 141, 58, 58, 78, 93, 73, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9266, 39, 141, 141, 75, 83, 75, 83, 61, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9266, 40, 116, 116, 59, 75, 95, 83, 71, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9267, 56, 136, 136, 131, 81, 69, 81, 109, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9267, 56, 142, 142, 97, 125, 64, 64, 41, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9267, 55, 145, 145, 63, 79, 85, 145, 118, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9268, 54, 148, 148, 78, 100, 110, 110, 175, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9268, 54, 159, 159, 83, 94, 127, 116, 100, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9268, 55, 183, 183, 107, 118, 151, 123, 85, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9268, 54, 169, 169, 132, 100, 78, 89, 73, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9269, 55, 183, 183, 90, 101, 107, 101, 74, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9269, 56, 147, 147, 97, 131, 131, 75, 120, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9269, 56, 175, 175, 114, 114, 86, 86, 125, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9270, 41, 143, 143, 89, 89, 73, 73, 48, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9270, 40, 136, 136, 115, 115, 67, 67, 59, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9270, 40, 124, 124, 99, 107, 55, 63, 71, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9271, 37, 97, 97, 73, 81, 33, 40, 47, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9271, 36, 87, 87, 75, 89, 39, 39, 32, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9271, 36, 102, 102, 61, 46, 64, 50, 43, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9272, 26, 68, 68, 40, 42, 53, 48, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9272, 26, 76, 76, 40, 50, 40, 61, 48, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9272, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9273, 52, 143, 143, 91, 96, 112, 101, 65, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9273, 53, 145, 145, 77, 98, 77, 119, 92, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9273, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9274, 26, 68, 68, 40, 42, 53, 48, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9274, 26, 76, 76, 40, 50, 40, 61, 48, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9274, 28, 64, 64, 31, 31, 31, 31, 31, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9275, 37, 93, 93, 55, 59, 73, 66, 40, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9275, 38, 107, 107, 56, 71, 56, 87, 68, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9275, 36, 112, 112, 71, 57, 93, 79, 39, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9276, 52, 143, 143, 91, 96, 112, 101, 65, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9276, 53, 145, 145, 77, 98, 77, 119, 92, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9276, 54, 164, 164, 105, 83, 137, 116, 56, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9277, 52, 132, 132, 91, 70, 112, 91, 122, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9277, 53, 156, 156, 98, 66, 87, 66, 87, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9277, 52, 143, 143, 117, 169, 75, 75, 65, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9278, 41, 134, 134, 77, 55, 77, 55, 59, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9278, 40, 122, 122, 99, 67, 99, 67, 71, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9278, 41, 110, 110, 64, 89, 73, 89, 48, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9278, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9279, 54, 174, 174, 101, 70, 101, 70, 76, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9279, 52, 156, 156, 127, 86, 127, 86, 91, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9279, 51, 135, 135, 79, 110, 89, 110, 59, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9279, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9280, 54, 174, 174, 101, 70, 101, 70, 76, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9280, 52, 156, 156, 127, 86, 127, 86, 91, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9280, 51, 135, 135, 79, 110, 89, 110, 59, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9280, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9281, 63, 151, 151, 122, 71, 107, 69, 84, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9281, 63, 133, 133, 78, 115, 115, 59, 103, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9281, 64, 136, 136, 85, 143, 66, 66, 79, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9282, 56, 108, 108, 69, 125, 58, 125, 53, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9282, 55, 194, 194, 101, 101, 96, 96, 74, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9282, 55, 133, 133, 107, 63, 94, 61, 74, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9283, 27, 68, 68, 25, 30, 36, 57, 44, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9283, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9283, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9284, 54, 142, 142, 62, 78, 83, 143, 116, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9284, 55, 150, 150, 79, 134, 118, 101, 96, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9284, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9285, 27, 68, 68, 25, 30, 36, 57, 44, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9285, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9285, 26, 63, 63, 58, 37, 32, 32, 53, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9286, 35, 96, 96, 42, 52, 56, 94, 77, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9286, 36, 87, 87, 39, 39, 57, 39, 79, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9286, 36, 84, 84, 79, 50, 43, 43, 71, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9287, 54, 142, 142, 62, 78, 83, 143, 116, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9287, 55, 150, 150, 79, 134, 118, 101, 96, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9287, 53, 145, 145, 140, 98, 87, 87, 130, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9288, 32, 75, 75, 70, 45, 38, 38, 64, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9288, 32, 79, 79, 29, 35, 42, 67, 51, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9288, 31, 80, 80, 40, 53, 40, 62, 47, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9289, 38, 88, 88, 83, 52, 45, 45, 75, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9289, 38, 103, 103, 45, 56, 60, 102, 83, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9289, 39, 98, 98, 50, 65, 50, 77, 58, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9290, 35, 92, 92, 63, 80, 42, 42, 28, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9290, 35, 85, 85, 45, 56, 45, 66, 56, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9290, 37, 93, 93, 62, 40, 77, 55, 66, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9290, 37, 101, 101, 88, 103, 51, 51, 44, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9291, 54, 121, 121, 83, 62, 56, 56, 62, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9291, 53, 124, 124, 61, 55, 151, 98, 135, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9291, 53, 164, 164, 98, 88, 77, 88, 130, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9291, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9292, 58, 173, 173, 141, 95, 141, 95, 101, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9292, 57, 201, 201, 108, 120, 108, 120, 88, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9292, 57, 173, 173, 88, 105, 88, 133, 150, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9292, 57, 251, 251, 162, 93, 71, 93, 82, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9293, 61, 160, 160, 142, 167, 81, 81, 69, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9293, 63, 259, 259, 115, 71, 115, 71, 103, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9293, 62, 267, 267, 114, 83, 132, 89, 83, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9293, 61, 202, 202, 173, 173, 100, 100, 87, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9294, 34, 93, 93, 44, 44, 61, 47, 41, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9294, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9294, 34, 90, 90, 75, 44, 75, 44, 41, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9295, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9295, 39, 105, 105, 50, 50, 69, 54, 46, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9295, 39, 102, 102, 85, 50, 85, 50, 46, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9296, 38, 149, 149, 52, 33, 52, 37, 33, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9296, 39, 105, 105, 50, 50, 69, 54, 46, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9296, 39, 102, 102, 85, 50, 85, 50, 46, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9297, 51, 196, 196, 69, 43, 69, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9297, 52, 153, 153, 91, 91, 80, 80, 96, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9298, 35, 89, 89, 87, 49, 49, 49, 24, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9298, 34, 97, 97, 58, 44, 61, 47, 41, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9298, 35, 92, 92, 70, 77, 31, 38, 45, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9299, 33, 84, 84, 66, 56, 43, 36, 49, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9299, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9299, 32, 91, 91, 54, 42, 58, 45, 38, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9300, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9300, 40, 116, 116, 95, 99, 67, 59, 59, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9300, 39, 117, 117, 97, 73, 100, 77, 50, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9301, 38, 114, 114, 79, 56, 45, 45, 45, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9301, 40, 116, 116, 95, 99, 67, 59, 59, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9301, 39, 117, 117, 97, 73, 100, 77, 50, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9302, 28, 76, 76, 40, 40, 34, 34, 43, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9302, 28, 69, 69, 31, 38, 31, 38, 48, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9302, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9303, 51, 150, 150, 89, 89, 79, 79, 94, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9303, 51, 158, 158, 94, 85, 74, 85, 125, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9303, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9304, 28, 76, 76, 40, 40, 34, 34, 43, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9304, 28, 69, 69, 31, 38, 31, 38, 48, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9304, 29, 74, 74, 58, 35, 51, 34, 41, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9305, 35, 92, 92, 49, 49, 42, 42, 52, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9305, 35, 112, 112, 66, 60, 52, 60, 87, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9305, 34, 86, 86, 68, 41, 60, 39, 47, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9306, 51, 150, 150, 89, 89, 79, 79, 94, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9306, 51, 158, 158, 94, 85, 74, 85, 125, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9306, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9307, 51, 120, 120, 64, 79, 64, 94, 79, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9307, 52, 143, 143, 86, 65, 91, 70, 60, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9307, 52, 143, 143, 54, 54, 61, 81, 75, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9308, 24, 60, 60, 28, 33, 28, 33, 42, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9308, 24, 60, 60, 28, 33, 28, 33, 42, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9309, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9309, 29, 71, 71, 32, 39, 32, 39, 50, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9310, 53, 145, 145, 140, 98, 87, 87, 130, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9310, 54, 159, 159, 110, 94, 121, 94, 116, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9310, 53, 164, 164, 98, 88, 77, 88, 130, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9311, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9311, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9311, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9311, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9311, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9311, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9312, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9312, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9312, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9312, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9312, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9312, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9313, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9313, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9313, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9313, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9313, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9313, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9314, 50, 138, 138, 133, 93, 83, 83, 123, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9314, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9314, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9314, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9314, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9314, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9315, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9315, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9315, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9315, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9315, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9315, 50, 123, 123, 98, 83, 63, 53, 73, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9316, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9316, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9316, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9316, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9316, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9316, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9317, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9317, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9317, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9317, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9317, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9317, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9318, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9318, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9318, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9318, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9318, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9318, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9319, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9319, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9319, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9319, 50, 144, 144, 64, 100, 84, 110, 46, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9319, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9319, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9320, 100, 434, 434, 281, 161, 121, 161, 141, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9320, 100, 296, 296, 231, 231, 231, 231, 211, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9320, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9320, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9320, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9320, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9321, 50, 108, 108, 53, 53, 53, 53, 53, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9321, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9321, 50, 123, 123, 68, 58, 43, 53, 43, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9321, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9321, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9321, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9322, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9322, 50, 188, 188, 103, 113, 118, 113, 88, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9322, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9322, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9322, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9322, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9323, 100, 268, 268, 221, 131, 141, 141, 361, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9323, 100, 256, 256, 209, 251, 269, 191, 145, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9323, 100, 266, 266, 261, 181, 161, 161, 241, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9323, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9323, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9323, 100, 302, 302, 209, 197, 259, 211, 241, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9324, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9324, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9324, 100, 266, 266, 211, 161, 141, 141, 291, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9324, 100, 302, 302, 209, 197, 259, 211, 241, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9324, 100, 366, 366, 201, 221, 231, 221, 171, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9324, 100, 346, 346, 241, 241, 241, 241, 241, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9325, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9325, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9325, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9325, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9325, 50, 168, 168, 143, 98, 83, 83, 68, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9325, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9326, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9326, 50, 141, 141, 143, 108, 113, 78, 78, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9326, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9326, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9326, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9326, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9327, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9327, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9327, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9327, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9327, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9327, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9328, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9328, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9328, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9328, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9328, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9328, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9329, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9329, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9329, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9329, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9329, 50, 128, 128, 88, 87, 67, 71, 66, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9329, 50, 117, 117, 75, 66, 83, 73, 88, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9330, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9330, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9330, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9330, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9330, 50, 128, 128, 108, 63, 108, 63, 58, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9330, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9331, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9331, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9331, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9331, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9331, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9331, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9332, 50, 178, 178, 123, 123, 123, 123, 123, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9332, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9332, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9332, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9332, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9332, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9333, 28, 81, 81, 59, 43, 43, 43, 37, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9333, 28, 90, 90, 65, 93, 48, 48, 37, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9334, 16, 44, 44, 23, 23, 33, 23, 17, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9334, 16, 44, 44, 26, 25, 33, 25, 33, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9334, 16, 46, 46, 26, 28, 34, 31, 20, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9335, 23, 59, 59, 31, 31, 45, 31, 22, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9335, 23, 59, 59, 36, 33, 45, 33, 45, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9335, 23, 68, 68, 43, 45, 52, 47, 31, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9336, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9336, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9336, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9337, 15, 38, 38, 17, 17, 23, 20, 22, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9338, 6, 23, 23, 12, 11, 9, 10, 9, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9338, 7, 26, 26, 12, 15, 11, 11, 9, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9338, 7, 26, 26, 12, 15, 11, 11, 9, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9339, 16, 50, 50, 26, 33, 26, 39, 31, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9339, 17, 53, 53, 34, 28, 45, 28, 33, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9339, 17, 53, 53, 28, 34, 28, 41, 33, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9340, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9340, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9340, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9341, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9341, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9341, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9341, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9341, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9341, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9342, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9342, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9342, 35, 106, 106, 80, 66, 59, 59, 45, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9342, 36, 112, 112, 93, 71, 93, 71, 50, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9342, 36, 105, 105, 86, 71, 57, 57, 79, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9343, 100, 356, 356, 231, 201, 121, 201, 221, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9343, 100, 306, 306, 221, 201, 301, 261, 261, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9344, 40, 143, 143, 73, 85, 77, 89, 60, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9344, 40, 200, 200, 91, 55, 91, 55, 67, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9344, 40, 126, 126, 75, 68, 59, 68, 99, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9344, 40, 144, 144, 59, 83, 67, 83, 59, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9345, 43, 120, 120, 93, 72, 93, 72, 67, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9345, 43, 128, 128, 72, 73, 89, 91, 72, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9345, 43, 150, 150, 93, 93, 76, 76, 50, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9346, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9346, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9347, 24, 60, 60, 28, 33, 28, 33, 42, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9347, 24, 60, 60, 28, 33, 28, 33, 42, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9347, 26, 85, 85, 50, 46, 40, 46, 66, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9347, 26, 85, 85, 50, 46, 40, 46, 66, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9348, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9348, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9348, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9348, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9349, 21, 59, 59, 39, 48, 27, 27, 35, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9349, 23, 87, 87, 54, 73, 33, 43, 38, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9350, 35, 99, 99, 80, 56, 80, 73, 94, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9351, 13, 38, 38, 18, 17, 40, 27, 36, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9352, 35, 106, 106, 70, 59, 91, 59, 91, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9353, 9, 29, 29, 20, 15, 14, 15, 19, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9354, 6, 24, 24, 13, 12, 14, 13, 13, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9354, 7, 28, 28, 14, 15, 17, 15, 17, 642); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9355, 22, 70, 70, 54, 50, 37, 41, 43, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9355, 22, 70, 70, 37, 41, 54, 50, 43, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9356, 35, 92, 92, 59, 84, 101, 66, 66, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9357, 19, 53, 53, 44, 34, 23, 27, 33, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9358, 15, 50, 50, 35, 29, 24, 24, 23, 641); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9358, 16, 52, 52, 31, 26, 30, 29, 27, 643); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9358, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9359, 12, 40, 40, 20, 18, 17, 18, 16, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9359, 10, 32, 32, 18, 19, 23, 21, 14, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9360, 29, 75, 75, 32, 35, 27, 27, 41, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9360, 30, 74, 74, 36, 33, 27, 27, 45, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9361, 13, 40, 40, 23, 22, 26, 22, 23, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9362, 8, 33, 33, 20, 15, 14, 15, 11, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9363, 13, 41, 41, 27, 21, 27, 22, 25, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9364, 13, 39, 39, 29, 25, 20, 17, 22, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9365, 55, 189, 189, 173, 112, 145, 112, 134, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9366, 30, 83, 83, 62, 77, 47, 42, 29, 247); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9367, 30, 91, 91, 90, 39, 33, 33, 50, 506); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9369, 21, 78, 78, 46, 56, 29, 41, 54, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9370, 30, 74, 74, 63, 36, 36, 42, 57, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9371, 13, 39, 39, 18, 22, 27, 22, 17, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9372, 17, 56, 56, 39, 28, 23, 28, 31, 644); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9372, 17, 56, 56, 29, 36, 26, 33, 31, 627); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9373, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9373, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9373, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9374, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9374, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9375, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9375, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9375, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9376, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9376, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9377, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9378, 29, 72, 72, 32, 44, 47, 47, 73, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9378, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9379, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9379, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9380, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9380, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9380, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9380, 50, 128, 128, 98, 58, 93, 53, 63, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9380, 50, 123, 123, 72, 72, 88, 88, 68, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9380, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9381, 52, 122, 122, 54, 75, 80, 80, 127, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9381, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9381, 53, 119, 119, 82, 66, 77, 77, 119, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9381, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9381, 51, 140, 140, 89, 94, 110, 99, 64, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9381, 52, 143, 143, 88, 89, 106, 106, 86, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9382, 51, 130, 130, 84, 120, 145, 94, 94, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9382, 51, 145, 145, 108, 81, 120, 110, 130, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9382, 51, 120, 120, 53, 74, 79, 79, 125, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9382, 51, 145, 145, 115, 74, 110, 69, 79, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9382, 51, 140, 140, 86, 87, 104, 104, 84, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9382, 51, 140, 140, 89, 94, 110, 99, 64, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9383, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9383, 51, 145, 145, 108, 81, 120, 110, 130, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9383, 53, 145, 145, 77, 98, 108, 108, 172, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9383, 53, 145, 145, 124, 108, 87, 108, 55, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9383, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9383, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9384, 51, 145, 145, 108, 81, 120, 110, 130, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9384, 54, 148, 148, 78, 100, 110, 110, 175, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9384, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9384, 50, 143, 143, 78, 138, 123, 63, 83, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9384, 51, 155, 155, 104, 110, 135, 115, 74, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9384, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9385, 51, 145, 145, 108, 81, 120, 110, 130, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9385, 51, 145, 145, 89, 84, 135, 120, 155, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9385, 53, 145, 145, 77, 98, 108, 108, 172, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9385, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9385, 52, 158, 158, 106, 112, 138, 117, 75, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9385, 52, 148, 148, 80, 143, 127, 65, 86, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9386, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9386, 53, 150, 150, 92, 87, 140, 124, 161, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9386, 54, 148, 148, 78, 100, 110, 110, 175, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9386, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9386, 51, 145, 145, 79, 140, 125, 64, 84, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9386, 51, 160, 160, 107, 108, 125, 125, 104, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9387, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9387, 53, 150, 150, 92, 87, 140, 124, 161, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9387, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9387, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9387, 51, 145, 145, 79, 140, 125, 64, 84, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9387, 51, 160, 160, 130, 89, 125, 94, 94, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9388, 50, 143, 143, 83, 93, 108, 98, 63, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9388, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9388, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9388, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9388, 50, 143, 143, 106, 80, 118, 108, 128, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9388, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9389, 50, 143, 143, 83, 93, 108, 98, 63, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9389, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9389, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9389, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9389, 50, 183, 183, 118, 103, 63, 103, 113, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9389, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9390, 57, 160, 160, 156, 99, 120, 97, 99, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9390, 58, 309, 309, 64, 93, 64, 93, 64, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9390, 58, 181, 181, 107, 101, 118, 165, 141, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9390, 57, 185, 185, 117, 136, 117, 147, 74, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9391, 55, 156, 156, 107, 140, 63, 96, 118, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9391, 53, 145, 145, 77, 130, 114, 98, 92, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9391, 54, 153, 153, 127, 132, 89, 78, 78, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9391, 53, 182, 182, 114, 114, 92, 92, 61, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9392, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9392, 51, 158, 158, 94, 85, 74, 85, 125, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9393, 42, 104, 104, 70, 45, 87, 62, 74, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9393, 43, 111, 111, 80, 63, 63, 63, 80, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9393, 42, 92, 92, 57, 66, 78, 66, 91, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9393, 41, 123, 123, 73, 73, 64, 64, 77, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9394, 56, 158, 158, 114, 181, 69, 103, 103, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9394, 56, 158, 158, 109, 103, 131, 103, 131, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9394, 57, 190, 190, 139, 93, 128, 93, 116, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9394, 57, 207, 207, 173, 162, 76, 76, 71, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9395, 60, 241, 241, 96, 96, 117, 117, 107, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9395, 61, 219, 219, 137, 103, 137, 116, 109, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9395, 61, 184, 184, 155, 118, 155, 118, 81, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9395, 60, 163, 163, 134, 194, 86, 86, 74, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9396, 32, 79, 79, 35, 35, 42, 48, 35, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9396, 33, 94, 94, 49, 49, 56, 63, 49, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9397, 40, 112, 112, 59, 59, 67, 75, 59, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9397, 41, 114, 114, 60, 60, 68, 77, 60, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9398, 44, 127, 127, 78, 60, 86, 60, 104, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9398, 44, 131, 131, 73, 75, 91, 93, 73, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9398, 45, 120, 120, 52, 66, 70, 120, 97, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9398, 46, 136, 136, 104, 85, 76, 76, 58, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9399, 40, 96, 96, 51, 47, 59, 99, 75, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9399, 40, 92, 92, 87, 55, 47, 47, 79, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9400, 27, 71, 71, 41, 44, 55, 49, 30, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9400, 26, 81, 81, 36, 41, 36, 41, 35, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9401, 25, 66, 66, 36, 31, 24, 29, 24, 537); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9401, 25, 69, 69, 31, 41, 26, 26, 21, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9402, 28, 98, 98, 31, 23, 37, 26, 23, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9402, 27, 73, 73, 25, 36, 25, 36, 25, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9402, 27, 71, 71, 36, 47, 36, 55, 41, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9402, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9403, 51, 222, 222, 94, 69, 110, 74, 69, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9403, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9403, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9403, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9404, 28, 98, 98, 31, 23, 37, 26, 23, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9404, 27, 73, 73, 25, 36, 25, 36, 25, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9404, 27, 71, 71, 36, 47, 36, 55, 41, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9404, 25, 74, 74, 44, 34, 46, 36, 31, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9405, 33, 94, 94, 56, 43, 59, 46, 39, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9405, 34, 103, 103, 30, 51, 30, 51, 44, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9405, 35, 138, 138, 49, 31, 49, 35, 31, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9405, 34, 86, 86, 44, 58, 44, 68, 51, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9406, 51, 222, 222, 94, 69, 110, 74, 69, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9406, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9406, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9406, 49, 145, 145, 120, 91, 125, 96, 61, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9407, 20, 53, 53, 30, 26, 24, 28, 34, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9407, 21, 65, 65, 33, 22, 33, 22, 24, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9407, 21, 72, 72, 46, 33, 29, 33, 23, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9408, 18, 41, 41, 15, 31, 16, 18, 40, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9408, 17, 46, 46, 26, 23, 21, 24, 29, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9409, 33, 81, 81, 53, 36, 36, 36, 72, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9409, 34, 97, 97, 37, 37, 41, 55, 51, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9410, 40, 96, 96, 63, 43, 43, 43, 87, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9410, 41, 147, 147, 60, 60, 82, 98, 77, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9411, 37, 89, 89, 66, 88, 62, 51, 44, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9411, 37, 119, 119, 77, 55, 47, 55, 36, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9411, 37, 104, 104, 55, 70, 55, 84, 66, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9411, 38, 107, 107, 68, 71, 83, 75, 49, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9412, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9412, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9412, 51, 130, 130, 120, 120, 59, 135, 94, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9412, 52, 163, 163, 70, 91, 117, 138, 106, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9413, 31, 95, 95, 42, 49, 42, 49, 40, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9413, 34, 110, 110, 71, 51, 44, 51, 34, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9414, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9414, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9414, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9414, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9414, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9414, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9415, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9415, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9415, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9415, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9415, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9415, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9416, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9416, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9416, 50, 118, 118, 53, 53, 63, 73, 53, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9416, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9416, 50, 109, 109, 68, 113, 53, 53, 63, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9416, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9417, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9417, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9417, 50, 148, 148, 63, 73, 78, 73, 48, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9417, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9417, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9417, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9418, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9418, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9418, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9418, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9418, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9418, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9419, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9419, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9419, 50, 138, 138, 48, 58, 93, 103, 83, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9419, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9419, 50, 148, 148, 66, 76, 66, 76, 63, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9419, 50, 123, 123, 123, 68, 68, 68, 33, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9420, 50, 178, 178, 173, 163, 123, 113, 113, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9420, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9420, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9420, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9420, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9420, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9421, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9421, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9421, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9421, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9421, 50, 113, 113, 88, 58, 88, 58, 88, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9421, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9422, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9422, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9422, 50, 122, 122, 98, 58, 86, 56, 68, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9422, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9422, 50, 128, 128, 71, 66, 69, 64, 83, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9422, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9423, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9423, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9423, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9423, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9423, 50, 121, 121, 103, 88, 73, 58, 58, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9423, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9424, 10, 32, 32, 18, 17, 16, 16, 21, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9425, 30, 98, 98, 90, 60, 39, 72, 66, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9426, 12, 34, 34, 29, 20, 17, 17, 27, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9427, 37, 112, 112, 66, 66, 59, 59, 70, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9427, 39, 121, 121, 86, 68, 86, 68, 95, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9428, 28, 64, 64, 37, 45, 37, 45, 48, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9428, 28, 73, 73, 62, 43, 45, 43, 51, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9429, 40, 120, 120, 79, 67, 103, 67, 103, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9430, 7, 24, 24, 11, 13, 11, 13, 15, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9431, 10, 31, 31, 17, 16, 15, 15, 19, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9432, 27, 87, 87, 82, 55, 30, 55, 60, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9432, 29, 132, 132, 85, 50, 38, 50, 44, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9433, 27, 82, 82, 59, 48, 39, 40, 37, 641); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9433, 27, 111, 111, 68, 60, 30, 60, 39, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9433, 27, 89, 89, 68, 52, 41, 47, 39, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9434, 9, 29, 29, 14, 15, 14, 14, 18, 509); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9434, 11, 39, 39, 23, 19, 22, 21, 20, 643); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9435, 42, 130, 130, 102, 73, 102, 73, 104, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9435, 42, 130, 130, 102, 73, 102, 73, 104, 240); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9435, 42, 130, 130, 102, 73, 102, 73, 104, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9436, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9436, 28, 70, 70, 59, 34, 34, 40, 54, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9436, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9437, 29, 72, 72, 61, 35, 35, 41, 56, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9437, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9438, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9439, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9439, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9440, 29, 72, 72, 61, 35, 35, 41, 56, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9440, 29, 87, 87, 76, 50, 50, 56, 70, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9441, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9442, 29, 87, 87, 76, 50, 50, 56, 70, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9442, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9443, 26, 66, 66, 55, 32, 32, 37, 50, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9443, 26, 66, 66, 55, 32, 32, 37, 50, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9443, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9443, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9444, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9444, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9444, 31, 101, 101, 59, 56, 65, 90, 78, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9445, 29, 72, 72, 61, 35, 35, 41, 56, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9445, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9446, 49, 140, 140, 125, 81, 81, 91, 115, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9446, 49, 155, 155, 120, 91, 71, 81, 66, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9447, 29, 87, 87, 76, 50, 50, 56, 70, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9447, 29, 95, 95, 73, 56, 44, 50, 41, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9448, 49, 140, 140, 125, 81, 81, 91, 115, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9448, 49, 164, 164, 150, 101, 86, 105, 76, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9449, 100, 236, 236, 101, 71, 211, 171, 171, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9450, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9450, 29, 101, 101, 90, 61, 53, 64, 47, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9451, 49, 155, 155, 120, 91, 71, 81, 66, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9451, 49, 164, 164, 150, 101, 86, 105, 76, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9452, 26, 66, 66, 55, 32, 32, 37, 50, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9452, 26, 66, 66, 55, 32, 32, 37, 50, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9452, 26, 92, 92, 81, 55, 48, 58, 42, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9452, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9453, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9453, 28, 70, 70, 59, 34, 34, 40, 54, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9453, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9454, 29, 72, 72, 61, 35, 35, 41, 56, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9454, 29, 90, 90, 61, 44, 35, 35, 35, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9455, 39, 113, 113, 89, 112, 85, 73, 65, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9455, 39, 144, 144, 100, 77, 69, 97, 58, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9456, 29, 72, 72, 61, 35, 35, 41, 56, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9456, 29, 87, 87, 76, 50, 50, 56, 70, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9457, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9458, 19, 54, 54, 21, 22, 28, 32, 17, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9459, 23, 64, 64, 24, 26, 33, 38, 20, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9460, 37, 97, 97, 73, 70, 44, 70, 53, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9461, 30, 86, 86, 54, 51, 93, 60, 81, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9462, 63, 183, 183, 141, 115, 103, 103, 115, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9462, 63, 225, 225, 144, 112, 117, 104, 133, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9462, 63, 175, 175, 178, 134, 141, 96, 96, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9463, 65, 189, 189, 128, 106, 154, 106, 168, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9463, 65, 189, 189, 99, 151, 151, 171, 112, 639); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9463, 65, 221, 221, 180, 132, 112, 119, 148, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9464, 36, 102, 102, 77, 50, 50, 50, 71, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9464, 36, 116, 116, 86, 77, 61, 77, 71, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9465, 43, 111, 111, 84, 80, 50, 80, 61, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9466, 60, 175, 175, 134, 110, 98, 98, 110, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9466, 60, 215, 215, 138, 107, 111, 99, 127, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9466, 60, 167, 167, 170, 128, 134, 92, 92, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9467, 21, 51, 51, 31, 37, 25, 28, 36, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9467, 21, 59, 59, 42, 27, 27, 27, 39, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9468, 14, 51, 51, 32, 24, 21, 24, 17, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9468, 14, 40, 40, 28, 36, 26, 22, 19, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9469, 43, 120, 120, 91, 59, 59, 59, 84, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9470, 32, 85, 85, 64, 61, 38, 61, 47, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9471, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9472, 100, 216, 216, 181, 151, 131, 151, 91, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9472, 100, 236, 236, 101, 111, 81, 81, 131, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9472, 100, 226, 226, 111, 101, 81, 81, 141, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9472, 100, 186, 186, 61, 151, 71, 81, 201, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9472, 100, 256, 256, 181, 131, 181, 141, 161, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9472, 100, 224, 224, 145, 127, 161, 141, 171, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9473, 100, 236, 236, 101, 111, 81, 81, 131, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9473, 100, 226, 226, 111, 101, 81, 81, 141, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9473, 100, 186, 186, 61, 151, 71, 81, 201, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9473, 100, 234, 234, 137, 171, 141, 169, 127, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9473, 100, 256, 256, 181, 131, 181, 141, 161, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9473, 100, 224, 224, 145, 127, 161, 141, 171, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9474, 100, 266, 266, 231, 201, 161, 201, 101, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9474, 100, 246, 246, 81, 151, 91, 91, 101, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9474, 100, 236, 236, 91, 141, 91, 91, 111, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9474, 100, 262, 262, 169, 157, 201, 171, 201, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9474, 100, 376, 376, 131, 81, 131, 91, 81, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9474, 100, 266, 266, 151, 141, 121, 151, 131, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9475, 100, 266, 266, 151, 141, 121, 151, 131, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9475, 100, 246, 246, 81, 151, 91, 91, 101, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9475, 100, 236, 236, 91, 141, 91, 91, 111, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9475, 100, 262, 262, 169, 157, 201, 171, 201, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9475, 100, 264, 264, 167, 201, 171, 201, 157, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9475, 100, 206, 206, 251, 221, 91, 91, 141, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9476, 100, 266, 266, 131, 141, 221, 201, 181, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9476, 100, 326, 326, 261, 201, 241, 201, 231, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9476, 100, 242, 242, 137, 137, 137, 137, 137, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9476, 100, 426, 426, 181, 131, 211, 141, 131, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9476, 100, 286, 286, 171, 161, 221, 191, 221, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9477, 100, 276, 276, 221, 121, 131, 201, 191, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9477, 100, 266, 266, 231, 201, 161, 201, 101, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9477, 100, 326, 326, 261, 201, 241, 201, 231, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9477, 100, 286, 286, 161, 291, 271, 181, 151, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9477, 100, 304, 304, 207, 241, 211, 251, 197, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9477, 100, 276, 276, 291, 241, 151, 181, 211, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9478, 100, 276, 276, 291, 241, 151, 181, 211, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9478, 100, 276, 276, 221, 121, 131, 201, 191, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9478, 100, 276, 276, 301, 161, 231, 261, 171, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9478, 100, 276, 276, 231, 155, 241, 211, 227, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9478, 100, 256, 256, 203, 161, 141, 181, 235, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9478, 100, 356, 356, 231, 201, 121, 201, 221, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9479, 100, 286, 286, 261, 201, 151, 201, 251, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9479, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9479, 100, 246, 246, 231, 401, 211, 131, 181, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9479, 100, 276, 276, 141, 111, 271, 231, 231, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9479, 100, 256, 256, 203, 161, 141, 181, 235, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9479, 100, 276, 276, 221, 171, 163, 163, 241, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9480, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9480, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9480, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9480, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9480, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9480, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9481, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9481, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9481, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9481, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9481, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9481, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9482, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9482, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9482, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9483, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9483, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9483, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9484, 32, 117, 117, 48, 48, 65, 77, 61, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9484, 32, 95, 95, 99, 54, 77, 86, 58, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9485, 22, 59, 59, 34, 32, 63, 37, 54, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9486, 6, 24, 24, 16, 11, 15, 10, 11, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9487, 32, 117, 117, 48, 48, 65, 77, 61, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9487, 32, 136, 136, 58, 54, 86, 77, 58, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9488, 7, 26, 26, 18, 12, 17, 11, 13, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9488, 10, 35, 35, 14, 14, 15, 19, 18, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9488, 7, 26, 26, 18, 12, 17, 11, 13, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9489, 32, 117, 117, 48, 48, 65, 77, 61, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9489, 32, 95, 95, 58, 54, 86, 77, 99, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9490, 6, 24, 24, 16, 11, 15, 10, 11, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9491, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9491, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9491, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9492, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9492, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9492, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9492, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9492, 16, 41, 41, 21, 20, 42, 21, 36, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9493, 7, 26, 26, 18, 12, 17, 11, 13, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9493, 7, 27, 27, 11, 11, 12, 15, 14, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9494, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9494, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9494, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9495, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9495, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9495, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9496, 6, 24, 24, 16, 11, 15, 10, 11, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9497, 6, 24, 24, 16, 11, 15, 10, 11, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9498, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9498, 3, 17, 17, 10, 8, 10, 7, 8, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9499, 7, 26, 26, 18, 12, 17, 11, 13, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9499, 7, 27, 27, 11, 11, 12, 15, 14, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9500, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9500, 53, 150, 150, 77, 61, 145, 124, 124, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9500, 52, 127, 127, 75, 70, 143, 80, 122, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9500, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9500, 53, 145, 145, 114, 68, 114, 68, 120, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9500, 52, 122, 122, 70, 60, 54, 65, 80, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9501, 52, 143, 143, 86, 86, 112, 112, 112, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9501, 52, 158, 158, 106, 96, 91, 101, 117, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9501, 52, 163, 163, 96, 91, 106, 148, 127, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9501, 51, 171, 171, 94, 104, 94, 120, 94, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9501, 51, 186, 186, 130, 99, 89, 125, 74, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9501, 51, 176, 176, 89, 135, 84, 155, 89, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9502, 51, 140, 140, 84, 84, 110, 110, 110, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9502, 52, 169, 169, 117, 106, 96, 106, 158, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9502, 51, 140, 140, 89, 84, 155, 99, 135, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9502, 52, 148, 148, 75, 60, 143, 122, 122, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9502, 52, 143, 143, 112, 67, 112, 67, 118, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9502, 52, 179, 179, 91, 138, 86, 158, 91, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9503, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9503, 52, 179, 179, 91, 138, 86, 158, 91, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9503, 53, 203, 203, 145, 114, 119, 103, 130, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9503, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9503, 52, 143, 143, 86, 86, 112, 112, 112, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9503, 53, 219, 219, 114, 108, 114, 124, 87, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9504, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9504, 50, 123, 123, 53, 38, 108, 88, 88, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9504, 50, 108, 108, 58, 53, 123, 58, 103, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9504, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9504, 50, 138, 138, 83, 83, 108, 108, 108, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9504, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9505, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9505, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9505, 50, 143, 143, 73, 58, 138, 118, 118, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9505, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9505, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9505, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9506, 17, 56, 56, 38, 28, 23, 23, 23, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9506, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9507, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9507, 18, 45, 45, 34, 47, 27, 20, 25, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9508, 21, 51, 51, 39, 54, 31, 23, 29, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9509, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9509, 17, 43, 43, 33, 45, 26, 19, 24, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9509, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9510, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9510, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9510, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9511, 18, 48, 48, 25, 24, 29, 47, 36, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9511, 18, 45, 45, 27, 31, 36, 31, 42, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9512, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9513, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9513, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9514, 24, 54, 54, 30, 47, 59, 40, 35, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9515, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9515, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9515, 18, 57, 57, 34, 34, 29, 29, 43, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9516, 17, 55, 55, 33, 33, 28, 28, 41, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9516, 19, 47, 47, 51, 46, 21, 21, 30, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9516, 17, 51, 51, 38, 31, 28, 34, 44, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9517, 34, 93, 93, 105, 95, 51, 51, 68, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9518, 19, 56, 56, 28, 28, 21, 21, 17, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9519, 18, 48, 48, 29, 25, 25, 25, 43, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9519, 18, 57, 57, 34, 34, 29, 29, 43, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9520, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9520, 28, 84, 84, 51, 51, 43, 43, 65, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9521, 34, 100, 100, 61, 61, 51, 51, 78, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9521, 34, 117, 117, 81, 81, 64, 78, 64, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9522, 38, 130, 130, 75, 75, 87, 94, 71, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9522, 38, 130, 130, 90, 90, 71, 87, 71, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9523, 32, 88, 88, 68, 54, 48, 61, 78, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9523, 32, 88, 88, 68, 54, 48, 61, 78, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9524, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9524, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9524, 28, 98, 98, 68, 68, 54, 65, 54, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9524, 28, 87, 87, 59, 43, 34, 34, 34, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9525, 18, 45, 45, 49, 43, 20, 20, 29, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9525, 20, 49, 49, 54, 48, 22, 22, 32, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9526, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9526, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9526, 26, 71, 71, 41, 39, 48, 40, 42, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9527, 20, 63, 63, 38, 38, 32, 32, 48, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9528, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9528, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9529, 11, 33, 33, 15, 15, 21, 15, 27, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9529, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9529, 11, 33, 33, 17, 16, 19, 30, 24, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9530, 12, 35, 35, 16, 16, 22, 16, 29, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9530, 12, 43, 43, 28, 21, 17, 17, 17, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9530, 12, 35, 35, 16, 16, 22, 16, 29, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9531, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9531, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9531, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9532, 36, 87, 87, 39, 39, 57, 39, 79, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9532, 36, 87, 87, 46, 43, 53, 89, 68, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9532, 36, 116, 116, 89, 68, 53, 61, 50, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9533, 39, 109, 109, 58, 97, 85, 73, 69, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9533, 39, 94, 94, 50, 46, 58, 97, 73, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9533, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9534, 42, 117, 117, 62, 104, 91, 78, 74, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9534, 42, 100, 100, 53, 49, 62, 104, 78, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9534, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9535, 45, 125, 125, 66, 111, 97, 84, 79, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9535, 45, 143, 143, 111, 84, 66, 75, 61, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9535, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9536, 14, 48, 48, 32, 24, 19, 19, 19, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9537, 43, 128, 128, 89, 63, 50, 50, 50, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9537, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9537, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9538, 44, 140, 140, 82, 78, 91, 126, 108, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9538, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9539, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9540, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9540, 24, 76, 76, 52, 37, 30, 30, 30, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9540, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9541, 30, 74, 74, 33, 33, 48, 33, 66, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9541, 30, 92, 92, 63, 45, 36, 36, 36, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9541, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9542, 32, 91, 91, 48, 80, 70, 61, 58, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9542, 32, 98, 98, 67, 48, 38, 38, 38, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9542, 32, 79, 79, 42, 38, 48, 80, 61, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9543, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9543, 34, 103, 103, 71, 51, 41, 41, 41, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9543, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9544, 36, 102, 102, 53, 89, 79, 68, 64, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9544, 36, 116, 116, 89, 68, 53, 61, 50, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9544, 36, 116, 116, 68, 64, 75, 104, 89, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9545, 25, 79, 79, 34, 39, 41, 39, 26, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9545, 25, 84, 84, 64, 49, 39, 44, 36, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9546, 11, 33, 33, 15, 15, 21, 15, 27, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9546, 11, 40, 40, 26, 19, 16, 16, 16, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9546, 11, 33, 33, 17, 16, 19, 30, 24, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9547, 13, 38, 38, 17, 17, 23, 17, 31, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9548, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9548, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9549, 36, 87, 87, 39, 39, 57, 39, 79, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9549, 36, 87, 87, 46, 43, 53, 89, 68, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9549, 36, 116, 116, 89, 68, 53, 61, 50, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9550, 39, 109, 109, 58, 97, 85, 73, 69, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9550, 39, 94, 94, 50, 46, 58, 97, 73, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9550, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9551, 42, 117, 117, 62, 104, 91, 78, 74, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9551, 42, 100, 100, 53, 49, 62, 104, 78, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9551, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9552, 45, 125, 125, 66, 111, 97, 84, 79, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9552, 45, 143, 143, 111, 84, 66, 75, 61, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9552, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9553, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9554, 12, 35, 35, 16, 16, 22, 16, 29, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9554, 12, 43, 43, 28, 21, 17, 17, 17, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9555, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9555, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9556, 43, 128, 128, 89, 63, 50, 50, 50, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9556, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9556, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9557, 44, 140, 140, 82, 78, 91, 126, 108, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9557, 44, 140, 140, 108, 82, 64, 73, 60, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9558, 100, 316, 316, 251, 241, 199, 207, 197, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9558, 100, 356, 356, 231, 201, 121, 201, 221, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9559, 100, 646, 646, 51, 51, 111, 251, 141, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9560, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9560, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9560, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9561, 17, 43, 43, 24, 34, 34, 19, 31, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9561, 17, 43, 43, 33, 45, 26, 19, 24, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9561, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9562, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9562, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9563, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9563, 18, 45, 45, 34, 47, 27, 20, 25, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9564, 18, 48, 48, 25, 24, 29, 47, 36, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9564, 18, 45, 45, 27, 31, 36, 31, 42, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9565, 21, 51, 51, 39, 54, 31, 23, 29, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9566, 20, 65, 65, 44, 32, 26, 26, 26, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9567, 17, 56, 56, 38, 28, 23, 23, 23, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9567, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9568, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9568, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9569, 37, 75, 75, 29, 33, 25, 59, 77, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9569, 43, 163, 163, 91, 78, 99, 91, 54, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9569, 40, 128, 128, 99, 75, 59, 67, 55, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9570, 43, 107, 107, 37, 63, 72, 123, 63, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9571, 54, 153, 153, 67, 100, 110, 175, 100, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9571, 52, 143, 143, 75, 127, 112, 96, 91, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9572, 57, 161, 161, 71, 105, 116, 185, 105, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9572, 59, 161, 161, 85, 144, 126, 108, 102, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9573, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9573, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9574, 24, 79, 79, 36, 36, 41, 43, 29, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9574, 24, 79, 79, 36, 36, 41, 43, 29, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9574, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9575, 27, 71, 71, 25, 41, 47, 79, 41, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9575, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9576, 38, 107, 107, 56, 94, 83, 71, 68, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9576, 44, 167, 167, 93, 80, 101, 93, 55, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9576, 38, 122, 122, 94, 71, 56, 64, 52, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9577, 55, 150, 150, 79, 134, 118, 101, 96, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9577, 58, 217, 217, 122, 104, 132, 121, 71, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9577, 58, 193, 193, 176, 118, 101, 124, 89, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9578, 31, 76, 76, 34, 34, 50, 34, 68, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9578, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9579, 41, 98, 98, 44, 44, 64, 44, 89, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9579, 43, 163, 163, 91, 78, 99, 91, 54, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9579, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9580, 45, 111, 111, 39, 66, 75, 129, 66, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9581, 52, 148, 148, 65, 96, 106, 169, 96, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9581, 52, 163, 163, 127, 96, 75, 86, 70, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9582, 58, 164, 164, 72, 107, 118, 188, 107, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9582, 58, 181, 181, 141, 107, 83, 95, 78, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9582, 58, 233, 233, 93, 93, 114, 114, 103, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9583, 31, 76, 76, 40, 37, 47, 78, 59, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9583, 31, 89, 89, 47, 78, 68, 59, 56, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9583, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9584, 29, 72, 72, 32, 32, 47, 32, 64, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9584, 30, 96, 96, 44, 44, 50, 53, 36, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9584, 31, 101, 101, 67, 64, 75, 65, 68, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9585, 32, 82, 82, 29, 48, 54, 93, 48, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9585, 34, 110, 110, 85, 64, 51, 58, 47, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9586, 40, 112, 112, 59, 99, 87, 75, 71, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9586, 44, 167, 167, 93, 80, 101, 93, 55, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9586, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9587, 56, 153, 153, 81, 137, 120, 103, 97, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9587, 58, 217, 217, 122, 104, 132, 121, 71, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9587, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9588, 48, 171, 171, 70, 99, 79, 99, 70, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9589, 17, 55, 55, 33, 33, 28, 28, 41, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9589, 19, 47, 47, 51, 46, 21, 21, 30, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9589, 17, 51, 51, 38, 31, 28, 34, 44, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9590, 42, 113, 113, 129, 116, 62, 62, 83, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9591, 20, 59, 59, 30, 30, 22, 22, 18, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9592, 18, 48, 48, 29, 25, 25, 25, 43, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9592, 20, 63, 63, 38, 38, 32, 32, 48, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9593, 34, 100, 100, 61, 61, 51, 51, 78, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9593, 36, 105, 105, 64, 64, 53, 53, 82, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9594, 38, 111, 111, 68, 68, 56, 56, 87, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9594, 41, 139, 139, 97, 97, 77, 93, 77, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9595, 48, 161, 161, 94, 94, 108, 118, 89, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9595, 52, 174, 174, 122, 122, 96, 117, 96, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9596, 40, 122, 122, 67, 43, 35, 43, 39, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9596, 40, 108, 108, 84, 67, 59, 75, 97, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9597, 36, 109, 109, 75, 53, 43, 43, 43, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9597, 36, 123, 123, 86, 86, 68, 82, 68, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9597, 36, 109, 109, 75, 53, 43, 43, 43, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9597, 36, 109, 109, 75, 53, 43, 43, 43, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9598, 18, 45, 45, 49, 43, 20, 20, 29, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9598, 20, 49, 49, 54, 48, 22, 22, 32, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9599, 43, 94, 94, 54, 80, 80, 41, 72, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9599, 43, 115, 115, 76, 102, 102, 59, 93, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9600, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9600, 18, 59, 59, 40, 29, 24, 24, 24, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9600, 18, 57, 57, 34, 34, 29, 29, 43, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9601, 39, 117, 117, 81, 58, 46, 46, 46, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9601, 41, 131, 131, 101, 77, 60, 68, 56, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9601, 34, 90, 90, 52, 49, 61, 51, 54, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9602, 20, 63, 63, 38, 38, 32, 32, 48, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9603, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9603, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9604, 13, 38, 38, 20, 18, 22, 35, 27, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9604, 13, 45, 45, 30, 22, 18, 18, 18, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9605, 12, 35, 35, 16, 16, 22, 16, 29, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9605, 14, 48, 48, 32, 24, 19, 19, 19, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9606, 36, 152, 152, 68, 43, 68, 43, 61, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9606, 36, 116, 116, 68, 64, 75, 104, 89, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9606, 36, 116, 116, 89, 68, 53, 61, 50, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9607, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9607, 42, 134, 134, 104, 78, 62, 70, 57, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9607, 42, 209, 209, 95, 57, 95, 57, 70, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9608, 48, 152, 152, 89, 84, 99, 137, 118, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9608, 48, 238, 238, 108, 65, 108, 65, 79, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9608, 48, 161, 161, 147, 99, 84, 103, 75, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9609, 15, 51, 51, 34, 25, 20, 20, 20, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9610, 49, 159, 159, 125, 76, 105, 71, 135, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9610, 49, 135, 135, 71, 120, 105, 91, 86, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9611, 48, 137, 137, 113, 94, 75, 75, 103, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9611, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9612, 26, 60, 60, 68, 61, 27, 27, 40, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9612, 27, 62, 62, 36, 52, 52, 28, 47, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9612, 26, 55, 55, 19, 42, 22, 24, 55, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9612, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9612, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9612, 26, 66, 66, 45, 29, 30, 30, 50, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9613, 26, 60, 60, 68, 61, 27, 27, 40, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9613, 26, 60, 60, 35, 50, 50, 27, 45, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9613, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9613, 26, 60, 60, 48, 66, 37, 27, 35, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9613, 26, 81, 81, 55, 40, 32, 32, 32, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9614, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9614, 50, 118, 118, 83, 53, 54, 54, 93, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9614, 50, 108, 108, 128, 113, 48, 48, 73, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9614, 50, 168, 168, 88, 88, 63, 63, 38, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9614, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9614, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9615, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9615, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9615, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9615, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9615, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9615, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9616, 6, 25, 25, 13, 9, 13, 9, 10, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9616, 6, 26, 26, 9, 13, 9, 13, 11, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9617, 34, 90, 90, 64, 85, 44, 44, 37, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9617, 34, 93, 93, 54, 75, 61, 75, 41, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9617, 37, 112, 112, 80, 70, 66, 70, 56, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9618, 13, 32, 32, 12, 69, 12, 69, 10, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9618, 14, 55, 55, 16, 23, 16, 23, 16, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9619, 27, 79, 79, 63, 44, 63, 57, 74, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9620, 63, 335, 335, 69, 100, 69, 100, 69, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9620, 63, 221, 221, 119, 132, 119, 132, 96, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9620, 63, 196, 196, 128, 90, 78, 90, 59, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9620, 63, 226, 226, 142, 107, 142, 119, 113, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9621, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9621, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9621, 50, 169, 169, 157, 118, 123, 123, 103, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9621, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9621, 50, 158, 158, 128, 88, 83, 98, 153, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9621, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9622, 43, 145, 145, 72, 80, 84, 80, 59, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9622, 43, 118, 118, 75, 70, 89, 76, 89, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9622, 43, 137, 137, 106, 80, 63, 72, 59, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9623, 20, 65, 65, 28, 32, 34, 32, 22, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9623, 20, 83, 83, 30, 20, 30, 22, 20, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9623, 20, 65, 65, 20, 32, 20, 32, 28, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9624, 20, 52, 52, 33, 29, 36, 32, 38, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9624, 20, 57, 57, 38, 37, 29, 31, 29, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9624, 20, 55, 55, 31, 38, 31, 38, 30, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9625, 100, 326, 326, 211, 241, 231, 291, 211, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9625, 100, 346, 346, 261, 221, 211, 221, 161, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9626, 62, 168, 168, 89, 114, 89, 138, 107, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9626, 63, 164, 164, 71, 90, 96, 166, 134, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9626, 62, 168, 168, 138, 114, 101, 176, 76, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9627, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9627, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9628, 20, 66, 66, 50, 37, 46, 38, 46, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9628, 20, 61, 61, 44, 32, 28, 28, 24, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9628, 20, 57, 57, 50, 50, 26, 56, 40, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9629, 34, 97, 97, 47, 64, 47, 78, 81, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9630, 3, 17, 17, 9, 8, 9, 8, 9, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9630, 3, 17, 17, 9, 8, 9, 8, 9, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9630, 3, 17, 17, 9, 8, 9, 8, 9, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9631, 34, 101, 101, 56, 56, 72, 62, 85, 594); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9632, 56, 142, 142, 128, 146, 128, 146, 64, 626); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9633, 7, 25, 25, 13, 13, 12, 12, 15, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9633, 5, 21, 21, 8, 12, 9, 9, 9, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9634, 34, 130, 130, 62, 74, 72, 84, 39, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9635, 6, 25, 25, 12, 11, 11, 11, 10, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9636, 53, 150, 150, 130, 98, 108, 108, 135, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9636, 53, 161, 161, 133, 108, 98, 108, 121, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9636, 53, 140, 140, 161, 145, 77, 77, 103, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9637, 8, 26, 26, 13, 13, 13, 13, 17, 509); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9638, 16, 52, 52, 28, 47, 42, 23, 29, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9639, 17, 55, 55, 29, 50, 45, 24, 31, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9639, 17, 55, 55, 33, 26, 36, 26, 43, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9640, 20, 53, 53, 32, 30, 40, 30, 40, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9640, 22, 68, 68, 37, 63, 56, 30, 39, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9640, 20, 75, 75, 46, 46, 38, 38, 26, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9640, 25, 76, 76, 46, 36, 51, 36, 61, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9641, 27, 68, 68, 41, 39, 52, 39, 52, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9641, 27, 81, 81, 44, 76, 68, 36, 47, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9641, 30, 107, 107, 66, 66, 54, 54, 36, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9641, 30, 89, 89, 54, 42, 60, 42, 72, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9642, 35, 103, 103, 70, 66, 84, 66, 84, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9642, 32, 95, 95, 51, 90, 80, 42, 54, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9642, 35, 124, 124, 77, 77, 63, 63, 42, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9642, 32, 95, 95, 58, 45, 64, 45, 77, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9643, 27, 65, 65, 52, 44, 39, 44, 28, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9643, 27, 65, 65, 52, 44, 39, 44, 28, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9643, 27, 81, 81, 49, 49, 41, 41, 63, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9643, 35, 91, 91, 51, 51, 51, 51, 51, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9645, 19, 45, 45, 25, 38, 47, 32, 28, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9646, 31, 83, 83, 53, 75, 90, 59, 59, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9647, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9648, 38, 99, 99, 64, 90, 109, 71, 71, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9649, 31, 92, 92, 47, 37, 87, 75, 75, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9649, 31, 92, 92, 67, 51, 75, 68, 81, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9649, 31, 92, 92, 75, 51, 78, 68, 73, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9650, 35, 89, 89, 52, 56, 70, 63, 38, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9651, 12, 37, 37, 21, 22, 27, 24, 16, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9651, 15, 42, 42, 19, 25, 26, 26, 40, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9652, 14, 41, 41, 24, 25, 31, 28, 18, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9652, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9653, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9653, 31, 89, 89, 47, 59, 65, 65, 102, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9654, 30, 86, 86, 54, 57, 66, 60, 39, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9654, 33, 91, 91, 63, 46, 63, 49, 56, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9654, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9655, 35, 99, 99, 52, 66, 73, 73, 115, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9655, 35, 96, 96, 66, 49, 66, 52, 59, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9655, 37, 115, 115, 77, 81, 99, 84, 55, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9656, 33, 97, 97, 53, 92, 82, 43, 56, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9656, 33, 140, 140, 59, 56, 89, 79, 59, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9657, 29, 78, 78, 58, 35, 56, 32, 38, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9657, 31, 92, 92, 71, 47, 68, 44, 50, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9657, 33, 107, 107, 86, 59, 82, 63, 63, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9658, 27, 68, 68, 30, 41, 44, 44, 68, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9658, 31, 76, 76, 34, 47, 50, 50, 78, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9658, 31, 83, 83, 53, 75, 90, 59, 59, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9658, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9659, 32, 88, 88, 38, 48, 51, 86, 70, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9659, 32, 114, 114, 77, 70, 96, 58, 51, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9660, 32, 88, 88, 61, 51, 42, 51, 70, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9660, 32, 84, 84, 47, 47, 47, 47, 47, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9661, 32, 95, 95, 64, 61, 77, 61, 77, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9661, 34, 93, 93, 51, 47, 109, 81, 98, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9662, 16, 50, 50, 23, 29, 23, 29, 21, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9662, 16, 50, 50, 33, 26, 42, 26, 31, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9663, 10, 29, 29, 13, 13, 17, 15, 16, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9664, 26, 59, 59, 27, 27, 37, 32, 35, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9664, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9665, 29, 71, 71, 35, 35, 53, 47, 44, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9665, 29, 66, 66, 38, 47, 38, 47, 50, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9666, 32, 77, 77, 38, 38, 58, 51, 48, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9666, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9667, 34, 82, 82, 41, 41, 61, 54, 51, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9667, 34, 99, 99, 95, 61, 73, 60, 61, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9667, 34, 97, 97, 58, 68, 58, 68, 71, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9668, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9668, 9, 33, 33, 17, 12, 17, 12, 13, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9669, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9669, 26, 78, 78, 40, 26, 40, 26, 28, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9670, 29, 84, 84, 38, 50, 38, 50, 35, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9670, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9671, 32, 91, 91, 99, 67, 54, 54, 61, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9671, 32, 107, 107, 61, 44, 61, 44, 47, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9672, 35, 99, 99, 108, 73, 59, 59, 66, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9672, 35, 130, 130, 81, 61, 81, 68, 65, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9673, 15, 48, 48, 28, 22, 29, 23, 20, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9673, 15, 43, 43, 25, 26, 32, 29, 19, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9673, 15, 42, 42, 19, 19, 26, 19, 35, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9674, 17, 42, 42, 19, 19, 26, 23, 24, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9675, 16, 50, 50, 23, 29, 23, 29, 21, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9675, 16, 50, 50, 33, 26, 42, 26, 31, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9676, 9, 27, 27, 12, 12, 16, 14, 15, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9677, 26, 59, 59, 27, 27, 37, 32, 35, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9677, 26, 60, 60, 35, 42, 35, 42, 45, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9678, 29, 71, 71, 35, 35, 53, 47, 44, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9678, 29, 66, 66, 38, 47, 38, 47, 50, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9679, 32, 77, 77, 38, 38, 58, 51, 48, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9679, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9680, 34, 82, 82, 41, 41, 61, 54, 51, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9680, 34, 99, 99, 95, 61, 73, 60, 61, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9680, 34, 97, 97, 58, 68, 58, 68, 71, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9681, 9, 33, 33, 15, 19, 15, 19, 14, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9682, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9682, 26, 78, 78, 40, 26, 40, 26, 28, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9683, 29, 84, 84, 38, 50, 38, 50, 35, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9683, 29, 98, 98, 56, 40, 56, 40, 43, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9684, 32, 91, 91, 99, 67, 54, 54, 61, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9684, 32, 107, 107, 61, 44, 61, 44, 47, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9685, 35, 99, 99, 108, 73, 59, 59, 66, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9685, 35, 130, 130, 81, 61, 81, 68, 65, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9686, 15, 48, 48, 28, 22, 29, 23, 20, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9686, 15, 43, 43, 25, 26, 32, 29, 19, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9686, 15, 42, 42, 19, 19, 26, 19, 35, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9687, 17, 42, 42, 19, 19, 26, 23, 24, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9688, 27, 71, 71, 41, 39, 76, 44, 66, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9689, 6, 21, 21, 9, 8, 19, 13, 17, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9690, 23, 66, 66, 33, 33, 24, 24, 20, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9692, 6, 21, 21, 9, 8, 19, 13, 17, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9693, 28, 98, 98, 43, 34, 48, 39, 54, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9693, 28, 98, 98, 43, 34, 48, 39, 54, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9694, 44, 122, 122, 60, 82, 60, 100, 104, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9695, 23, 55, 55, 29, 27, 59, 29, 50, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9696, 6, 25, 25, 12, 11, 11, 11, 10, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9697, 26, 94, 94, 58, 58, 48, 48, 32, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9698, 47, 120, 120, 78, 111, 134, 87, 87, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9699, 6, 22, 22, 13, 10, 10, 10, 14, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9700, 21, 76, 76, 33, 26, 37, 31, 41, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9700, 21, 76, 76, 33, 26, 37, 31, 41, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9701, 47, 130, 130, 64, 87, 64, 106, 111, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9702, 17, 55, 55, 29, 50, 45, 24, 31, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9703, 32, 95, 95, 51, 90, 80, 42, 54, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9703, 30, 89, 89, 54, 42, 60, 42, 72, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9704, 32, 95, 95, 64, 61, 77, 61, 77, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9704, 32, 114, 114, 70, 70, 58, 58, 38, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9704, 36, 130, 130, 89, 107, 97, 53, 53, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9704, 34, 114, 114, 68, 75, 96, 55, 81, 625); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9705, 47, 135, 135, 92, 87, 111, 87, 111, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9705, 47, 163, 163, 101, 101, 83, 83, 54, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9705, 54, 191, 191, 132, 159, 143, 78, 78, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9705, 54, 176, 176, 106, 117, 149, 84, 127, 625); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9706, 39, 109, 109, 93, 81, 65, 81, 42, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9706, 37, 108, 108, 66, 66, 55, 55, 84, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9706, 35, 91, 91, 51, 51, 51, 51, 51, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9707, 42, 117, 117, 99, 87, 70, 87, 45, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9707, 43, 124, 124, 76, 76, 63, 63, 97, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9707, 40, 102, 102, 57, 57, 57, 57, 57, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9708, 46, 127, 127, 108, 95, 76, 95, 49, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9708, 47, 135, 135, 83, 83, 68, 68, 106, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9708, 46, 116, 116, 65, 65, 65, 65, 65, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9709, 55, 150, 150, 129, 112, 90, 112, 57, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9709, 53, 177, 177, 124, 124, 98, 119, 98, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9709, 51, 128, 128, 72, 72, 72, 72, 72, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9711, 30, 65, 65, 36, 57, 72, 48, 42, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9712, 38, 99, 99, 64, 90, 109, 71, 71, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9713, 56, 142, 142, 92, 131, 159, 103, 103, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9714, 42, 99, 99, 45, 54, 45, 54, 70, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9715, 43, 124, 124, 63, 50, 119, 102, 102, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9715, 43, 124, 124, 91, 69, 102, 93, 110, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9715, 43, 124, 124, 102, 69, 106, 93, 100, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9716, 45, 111, 111, 66, 70, 88, 79, 48, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9717, 12, 37, 37, 21, 22, 27, 24, 16, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9717, 14, 40, 40, 18, 24, 25, 25, 38, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9718, 29, 84, 84, 53, 56, 64, 58, 38, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9718, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9719, 38, 118, 118, 79, 83, 102, 87, 56, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9719, 31, 89, 89, 47, 59, 65, 65, 102, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9720, 43, 120, 120, 63, 80, 89, 89, 140, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9720, 52, 158, 158, 106, 112, 138, 117, 75, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9720, 52, 174, 174, 138, 106, 127, 106, 122, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9721, 44, 127, 127, 69, 122, 108, 56, 73, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9721, 42, 176, 176, 74, 70, 112, 99, 74, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9722, 39, 102, 102, 77, 46, 73, 42, 50, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9722, 40, 116, 116, 91, 59, 87, 55, 63, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9722, 42, 134, 134, 108, 74, 104, 78, 78, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9723, 36, 87, 87, 39, 53, 57, 57, 89, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9723, 40, 96, 96, 43, 59, 63, 63, 99, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9723, 40, 104, 104, 67, 95, 115, 75, 75, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9723, 36, 76, 76, 43, 68, 86, 57, 50, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9724, 40, 108, 108, 47, 59, 63, 107, 87, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9724, 40, 140, 140, 95, 87, 119, 71, 63, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9725, 40, 108, 108, 75, 63, 51, 63, 87, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9725, 40, 102, 102, 57, 57, 57, 57, 57, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9726, 43, 141, 141, 85, 75, 59, 67, 97, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9726, 43, 139, 139, 89, 84, 80, 80, 107, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9727, 41, 119, 119, 81, 77, 97, 77, 97, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9727, 43, 115, 115, 63, 59, 136, 102, 123, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9728, 41, 127, 127, 101, 109, 56, 64, 73, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9728, 39, 121, 121, 81, 73, 69, 77, 89, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9729, 46, 141, 141, 113, 122, 62, 72, 81, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9729, 45, 138, 138, 93, 84, 79, 88, 102, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9729, 41, 96, 96, 53, 52, 60, 73, 73, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9730, 48, 147, 147, 118, 127, 65, 75, 84, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9730, 51, 155, 155, 104, 94, 89, 99, 115, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9730, 48, 111, 111, 61, 60, 70, 84, 84, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9731, 52, 158, 158, 127, 138, 70, 80, 91, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9731, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9731, 52, 120, 120, 66, 65, 75, 91, 91, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9732, 42, 100, 100, 45, 49, 62, 78, 66, 452); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9733, 13, 39, 39, 25, 18, 22, 18, 29, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9734, 63, 164, 164, 109, 147, 147, 84, 134, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9734, 63, 183, 183, 133, 115, 109, 115, 91, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9734, 63, 172, 172, 133, 109, 115, 115, 115, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9735, 64, 141, 141, 117, 98, 85, 98, 60, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9736, 17, 48, 48, 29, 24, 23, 24, 25, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9737, 12, 38, 38, 22, 21, 17, 16, 19, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9737, 12, 39, 39, 27, 29, 15, 15, 12, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9738, 12, 37, 37, 22, 18, 17, 18, 19, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9738, 12, 36, 36, 21, 18, 21, 18, 25, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9739, 63, 146, 146, 71, 65, 52, 52, 90, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9739, 63, 152, 152, 59, 90, 59, 59, 71, 569); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9739, 63, 177, 177, 141, 78, 84, 128, 122, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9740, 15, 43, 43, 28, 23, 17, 23, 26, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9740, 15, 43, 43, 28, 23, 17, 23, 26, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9740, 15, 43, 43, 28, 23, 17, 23, 26, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9741, 13, 41, 41, 21, 20, 23, 20, 28, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9742, 16, 47, 47, 28, 26, 22, 20, 24, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9742, 16, 44, 44, 26, 22, 26, 22, 31, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9743, 63, 221, 221, 115, 115, 109, 109, 84, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9743, 63, 149, 149, 65, 96, 78, 109, 149, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9743, 63, 152, 152, 96, 84, 109, 84, 122, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9744, 17, 58, 58, 19, 26, 33, 29, 19, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9745, 60, 139, 139, 80, 68, 62, 74, 92, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9745, 60, 133, 133, 128, 80, 68, 68, 116, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9745, 60, 139, 139, 74, 74, 110, 74, 50, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9745, 60, 133, 133, 92, 68, 62, 62, 68, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9745, 60, 139, 139, 80, 74, 104, 74, 104, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9745, 60, 127, 127, 80, 188, 80, 134, 62, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9746, 45, 174, 174, 147, 138, 70, 70, 57, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9747, 65, 182, 182, 145, 177, 86, 177, 103, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9747, 65, 173, 173, 93, 216, 151, 164, 67, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9747, 65, 241, 241, 112, 125, 190, 138, 67, 640); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9748, 44, 122, 122, 82, 64, 108, 64, 78, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9748, 44, 122, 122, 64, 82, 64, 100, 78, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9749, 60, 157, 157, 104, 140, 140, 80, 128, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9749, 60, 169, 169, 140, 146, 98, 86, 86, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9749, 60, 164, 164, 127, 104, 110, 110, 110, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9750, 35, 92, 92, 38, 56, 63, 56, 31, 637); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9751, 27, 83, 83, 44, 39, 44, 44, 22, 636); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9751, 27, 73, 73, 55, 39, 36, 39, 47, 645); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9752, 9, 31, 31, 17, 16, 17, 16, 19, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9753, 9, 31, 31, 17, 16, 17, 16, 19, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9754, 9, 31, 31, 17, 16, 17, 16, 19, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9755, 61, 141, 141, 87, 81, 112, 81, 112, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9755, 61, 172, 172, 118, 112, 142, 112, 142, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9755, 61, 172, 172, 136, 106, 101, 101, 148, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9756, 60, 163, 163, 92, 86, 74, 92, 80, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9756, 60, 169, 169, 104, 80, 116, 80, 140, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9756, 60, 175, 175, 104, 98, 134, 116, 134, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9757, 27, 79, 79, 47, 41, 36, 41, 55, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9757, 27, 73, 73, 36, 60, 36, 49, 28, 617); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9758, 61, 160, 160, 81, 87, 81, 106, 124, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9758, 61, 184, 184, 94, 112, 94, 142, 161, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9758, 61, 184, 184, 124, 142, 136, 148, 87, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9759, 60, 145, 145, 86, 92, 116, 104, 62, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9759, 60, 169, 169, 92, 164, 146, 74, 98, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9759, 60, 181, 181, 122, 140, 134, 146, 86, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9760, 17, 51, 51, 29, 28, 26, 33, 29, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9760, 17, 55, 55, 38, 33, 23, 33, 31, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9761, 63, 209, 209, 65, 46, 78, 52, 46, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9761, 63, 234, 234, 134, 147, 128, 147, 90, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9762, 60, 143, 143, 62, 92, 74, 104, 143, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9762, 60, 199, 199, 92, 116, 98, 116, 62, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9763, 9, 31, 31, 17, 16, 17, 16, 19, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9764, 9, 31, 31, 17, 16, 17, 16, 19, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9765, 9, 31, 31, 17, 16, 17, 16, 19, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9766, 63, 171, 171, 78, 103, 78, 103, 71, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9766, 63, 221, 221, 153, 185, 166, 90, 90, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9767, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9768, 16, 50, 50, 23, 29, 23, 29, 21, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9768, 16, 50, 50, 33, 26, 42, 26, 31, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9769, 10, 29, 29, 13, 13, 17, 15, 16, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9770, 14, 36, 36, 17, 17, 22, 19, 21, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9771, 26, 65, 65, 32, 32, 48, 42, 40, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9772, 32, 77, 77, 38, 38, 58, 51, 48, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9772, 30, 68, 68, 39, 48, 39, 48, 51, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9773, 48, 140, 140, 84, 84, 142, 132, 99, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9773, 47, 130, 130, 78, 92, 78, 92, 97, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9773, 46, 132, 132, 136, 113, 76, 85, 85, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9774, 8, 30, 30, 14, 17, 14, 17, 13, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9774, 8, 31, 31, 16, 11, 16, 11, 12, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9775, 12, 40, 40, 18, 23, 18, 23, 17, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9775, 12, 41, 41, 21, 14, 21, 14, 16, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9776, 24, 71, 71, 76, 52, 42, 42, 47, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9776, 24, 82, 82, 47, 34, 47, 34, 36, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9777, 31, 89, 89, 96, 65, 53, 53, 59, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9777, 31, 104, 104, 60, 42, 60, 42, 45, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9778, 47, 130, 130, 144, 97, 78, 78, 87, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9778, 47, 158, 158, 87, 97, 87, 111, 87, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9778, 47, 152, 152, 88, 62, 88, 62, 67, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9779, 17, 48, 48, 33, 31, 23, 28, 32, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9780, 17, 48, 48, 28, 29, 36, 33, 21, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9781, 19, 46, 46, 21, 21, 28, 25, 27, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9782, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9782, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9782, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9782, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9782, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9782, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9783, 5, 22, 22, 10, 10, 13, 11, 10, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9783, 5, 20, 20, 12, 11, 10, 12, 12, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9783, 5, 20, 20, 11, 11, 13, 11, 13, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9783, 5, 22, 22, 13, 11, 13, 11, 12, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9783, 5, 21, 21, 9, 8, 15, 13, 13, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9783, 5, 21, 21, 13, 11, 11, 11, 10, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9784, 5, 18, 18, 10, 8, 10, 10, 12, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9784, 5, 21, 21, 11, 13, 11, 13, 11, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9784, 5, 21, 21, 9, 9, 11, 12, 8, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9784, 5, 23, 23, 8, 11, 8, 11, 10, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9784, 5, 20, 20, 10, 10, 11, 13, 13, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9784, 5, 20, 20, 11, 10, 10, 11, 8, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9785, 50, 328, 328, 28, 28, 58, 128, 73, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9785, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9785, 50, 123, 123, 86, 60, 88, 78, 118, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9785, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9785, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9785, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9786, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9786, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9786, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9786, 50, 148, 148, 117, 73, 117, 73, 89, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9786, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9788, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9788, 28, 70, 70, 31, 43, 45, 45, 71, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9788, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9789, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9789, 26, 79, 79, 61, 76, 58, 50, 45, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9789, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9789, 26, 79, 79, 61, 76, 58, 50, 45, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9790, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9790, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9791, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9792, 26, 71, 71, 45, 63, 76, 50, 50, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9792, 26, 58, 58, 32, 50, 63, 42, 37, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9792, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9792, 26, 79, 79, 61, 76, 58, 50, 45, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9793, 25, 64, 64, 29, 39, 41, 41, 64, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9793, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9793, 25, 69, 69, 44, 61, 74, 49, 49, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9793, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9793, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9794, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9794, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9795, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9795, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9796, 28, 70, 70, 31, 43, 45, 45, 71, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9796, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9796, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9797, 29, 63, 63, 35, 56, 70, 47, 41, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9797, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9798, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9798, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9799, 33, 71, 71, 39, 63, 79, 53, 46, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9799, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9799, 33, 81, 81, 36, 49, 53, 53, 82, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9800, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9800, 34, 97, 97, 51, 64, 71, 71, 112, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9801, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9801, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9801, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9802, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9802, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9802, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9803, 24, 65, 65, 36, 36, 36, 36, 36, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9804, 30, 89, 89, 51, 57, 66, 60, 39, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9805, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9805, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9806, 26, 71, 71, 45, 63, 76, 50, 50, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9806, 26, 58, 58, 32, 50, 63, 42, 37, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9806, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9806, 26, 79, 79, 61, 76, 58, 50, 45, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9807, 33, 71, 71, 39, 63, 79, 53, 46, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9807, 33, 87, 87, 56, 79, 96, 63, 63, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9807, 33, 81, 81, 36, 49, 53, 53, 82, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9808, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9808, 26, 79, 79, 61, 76, 58, 50, 45, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9808, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9808, 26, 79, 79, 61, 76, 58, 50, 45, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9809, 28, 70, 70, 31, 43, 45, 45, 71, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9809, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9809, 28, 70, 70, 51, 68, 48, 40, 34, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9810, 46, 109, 109, 49, 67, 72, 72, 113, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9810, 46, 127, 127, 67, 85, 95, 95, 150, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9810, 46, 95, 95, 53, 85, 108, 72, 62, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9810, 46, 118, 118, 76, 108, 131, 85, 85, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9810, 46, 132, 132, 76, 85, 99, 90, 58, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9811, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9811, 34, 97, 97, 51, 64, 71, 71, 112, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9812, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9812, 28, 70, 70, 31, 43, 45, 45, 71, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9812, 28, 76, 76, 48, 68, 82, 54, 54, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9813, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9813, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9814, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9814, 29, 110, 110, 76, 58, 53, 73, 44, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9815, 29, 95, 95, 61, 44, 38, 44, 29, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9815, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9816, 33, 94, 94, 49, 63, 69, 69, 109, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9817, 25, 64, 64, 29, 39, 41, 41, 64, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9817, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9817, 25, 69, 69, 44, 61, 74, 49, 49, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9817, 25, 56, 56, 31, 49, 61, 41, 36, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9817, 25, 64, 64, 46, 61, 44, 36, 31, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9818, 29, 84, 84, 44, 56, 61, 61, 96, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9818, 29, 87, 87, 67, 85, 64, 56, 50, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9819, 29, 63, 63, 35, 56, 70, 47, 41, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9819, 29, 72, 72, 53, 70, 50, 41, 35, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9820, 100, 266, 266, 161, 161, 211, 211, 211, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9821, 37, 89, 89, 44, 40, 107, 70, 96, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9822, 23, 59, 59, 29, 27, 68, 45, 61, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9823, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9823, 35, 85, 85, 42, 38, 101, 66, 91, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9824, 19, 45, 45, 19, 17, 51, 32, 46, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9824, 19, 51, 51, 25, 23, 57, 38, 51, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9825, 30, 74, 74, 36, 33, 87, 57, 78, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9825, 28, 70, 70, 34, 31, 82, 54, 73, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9826, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9826, 36, 87, 87, 43, 39, 104, 68, 93, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9827, 53, 140, 140, 77, 71, 167, 124, 151, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9827, 53, 140, 140, 77, 71, 167, 124, 151, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9828, 21, 55, 55, 27, 25, 62, 41, 56, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9829, 15, 42, 42, 20, 19, 46, 31, 41, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9830, 42, 138, 138, 87, 95, 108, 99, 70, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9831, 27, 68, 68, 33, 30, 79, 52, 71, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9832, 40, 94, 94, 47, 47, 71, 63, 59, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9832, 40, 96, 96, 47, 43, 115, 75, 103, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9833, 30, 65, 65, 36, 57, 72, 48, 42, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9833, 26, 66, 66, 32, 29, 76, 50, 68, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9834, 36, 76, 76, 43, 68, 86, 57, 50, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9834, 32, 79, 79, 38, 35, 93, 61, 83, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9835, 46, 118, 118, 76, 108, 131, 85, 85, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9835, 42, 100, 100, 49, 45, 120, 78, 108, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9836, 55, 139, 139, 90, 129, 156, 101, 101, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9836, 51, 135, 135, 74, 69, 161, 120, 145, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9837, 30, 74, 74, 36, 33, 87, 57, 78, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9838, 20, 53, 53, 26, 24, 60, 40, 54, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9839, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9840, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9840, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9840, 27, 60, 60, 33, 52, 66, 44, 39, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9841, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9841, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9841, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9842, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9843, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9844, 24, 65, 65, 36, 36, 36, 36, 36, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9845, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9845, 22, 57, 57, 41, 54, 39, 32, 28, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9846, 30, 89, 89, 51, 57, 66, 60, 39, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9847, 64, 148, 148, 92, 143, 66, 98, 111, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9847, 64, 225, 225, 121, 134, 121, 134, 98, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9848, 63, 177, 177, 109, 109, 90, 90, 141, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9848, 63, 241, 241, 96, 134, 162, 147, 64, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9848, 63, 171, 171, 147, 128, 103, 128, 65, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9849, 64, 244, 244, 85, 53, 85, 60, 53, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9849, 64, 245, 245, 98, 136, 165, 149, 65, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9850, 50, 148, 148, 93, 138, 153, 113, 83, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9851, 34, 83, 83, 54, 64, 47, 58, 37, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9851, 34, 97, 97, 71, 81, 64, 75, 51, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9852, 64, 245, 245, 98, 136, 165, 149, 65, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9852, 64, 190, 190, 149, 107, 136, 111, 136, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9853, 27, 79, 79, 47, 41, 36, 41, 55, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9854, 63, 171, 171, 88, 84, 81, 141, 80, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9854, 63, 241, 241, 96, 134, 162, 147, 64, 566); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9854, 63, 202, 202, 119, 115, 119, 172, 112, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9855, 29, 72, 72, 47, 56, 41, 50, 32, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9856, 35, 113, 113, 84, 75, 59, 75, 70, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9857, 29, 72, 72, 47, 56, 41, 50, 32, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9858, 19, 56, 56, 40, 44, 21, 21, 17, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9859, 27, 79, 79, 47, 41, 36, 41, 55, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9860, 29, 72, 72, 47, 56, 41, 50, 32, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9861, 20, 67, 67, 22, 30, 39, 34, 21, 490); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9862, 17, 55, 55, 38, 33, 23, 33, 31, 289); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9863, 62, 235, 235, 132, 114, 132, 126, 64, 629); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9863, 62, 137, 137, 101, 81, 76, 94, 95, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9863, 62, 184, 184, 151, 101, 151, 101, 107, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9863, 62, 193, 193, 126, 89, 76, 89, 58, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9864, 64, 177, 177, 108, 88, 80, 80, 122, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9864, 64, 231, 231, 162, 124, 111, 156, 92, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9865, 20, 55, 55, 33, 40, 28, 36, 29, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9866, 27, 79, 79, 47, 41, 36, 41, 55, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9867, 61, 141, 141, 87, 136, 63, 94, 106, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9867, 61, 214, 214, 116, 128, 116, 128, 94, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9868, 63, 133, 133, 71, 65, 153, 71, 128, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9868, 63, 225, 225, 144, 112, 117, 104, 133, 578); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9869, 63, 171, 171, 128, 147, 115, 134, 90, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9869, 63, 177, 177, 103, 115, 134, 122, 78, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9870, 17, 60, 60, 38, 28, 24, 28, 19, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9871, 17, 41, 41, 23, 34, 43, 29, 26, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9872, 28, 81, 81, 48, 43, 37, 43, 57, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9873, 32, 85, 85, 46, 48, 53, 48, 58, 544); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9873, 32, 101, 101, 67, 61, 58, 64, 74, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9874, 17, 43, 43, 26, 31, 21, 24, 30, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9874, 17, 46, 46, 33, 43, 31, 26, 23, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9875, 60, 175, 175, 78, 90, 78, 90, 74, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9875, 60, 187, 187, 140, 125, 98, 125, 116, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9875, 60, 175, 175, 110, 164, 182, 134, 98, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9876, 27, 73, 73, 36, 60, 36, 49, 28, 617); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9876, 27, 73, 73, 55, 39, 36, 39, 47, 645); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9877, 30, 80, 80, 51, 72, 87, 57, 57, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9878, 61, 169, 169, 103, 84, 76, 76, 117, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9878, 61, 221, 221, 155, 118, 106, 148, 87, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9879, 18, 63, 63, 40, 29, 25, 29, 20, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9880, 61, 172, 172, 136, 173, 130, 112, 100, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9880, 59, 163, 163, 91, 87, 154, 137, 154, 622); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9881, 62, 224, 224, 157, 120, 107, 151, 89, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9882, 60, 157, 157, 92, 92, 128, 92, 62, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9882, 60, 163, 163, 146, 164, 110, 128, 134, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9883, 43, 158, 158, 110, 84, 76, 106, 63, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9883, 44, 131, 131, 82, 122, 135, 100, 73, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9884, 28, 84, 84, 48, 54, 62, 57, 37, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9884, 29, 78, 78, 50, 70, 85, 56, 56, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9885, 58, 144, 144, 81, 81, 81, 81, 81, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9885, 59, 190, 190, 120, 108, 185, 114, 132, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9886, 33, 124, 124, 86, 66, 59, 82, 49, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9887, 20, 59, 59, 57, 30, 41, 30, 40, 263); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9887, 20, 49, 49, 29, 59, 29, 47, 24, 498); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9888, 100, 206, 206, 171, 241, 131, 91, 121, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9888, 100, 222, 222, 123, 121, 141, 171, 171, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9888, 100, 276, 276, 151, 271, 241, 121, 161, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9888, 100, 226, 226, 121, 111, 141, 241, 181, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9888, 100, 246, 246, 191, 111, 181, 101, 121, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9888, 100, 228, 228, 169, 131, 141, 141, 141, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9889, 100, 376, 376, 131, 81, 131, 91, 81, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9889, 100, 216, 216, 151, 121, 141, 141, 221, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9889, 100, 236, 236, 141, 151, 191, 171, 101, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9889, 100, 226, 226, 121, 111, 141, 241, 181, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9889, 100, 226, 226, 131, 111, 121, 121, 221, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9889, 100, 228, 228, 169, 131, 141, 141, 141, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9890, 100, 206, 206, 131, 151, 181, 151, 211, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9890, 100, 226, 226, 111, 101, 281, 181, 251, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9890, 100, 276, 276, 161, 181, 211, 191, 121, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9890, 100, 646, 646, 51, 51, 111, 251, 141, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9890, 100, 306, 306, 205, 207, 241, 241, 201, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9890, 100, 266, 266, 121, 201, 161, 131, 121, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9891, 100, 268, 268, 209, 171, 181, 181, 181, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9891, 100, 276, 276, 151, 271, 241, 121, 161, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9891, 100, 276, 276, 221, 141, 211, 131, 151, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9891, 100, 246, 246, 211, 151, 171, 171, 221, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9891, 100, 206, 206, 171, 241, 131, 91, 121, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9891, 100, 266, 266, 211, 179, 171, 199, 201, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9892, 100, 646, 646, 51, 51, 111, 251, 141, 26); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9892, 100, 276, 276, 161, 181, 211, 191, 121, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9892, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9892, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9892, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9892, 100, 308, 308, 245, 195, 211, 191, 211, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9893, 100, 226, 226, 111, 101, 281, 181, 251, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9893, 100, 206, 206, 131, 151, 181, 151, 211, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9893, 100, 326, 326, 171, 171, 121, 121, 71, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9893, 100, 316, 316, 187, 181, 187, 271, 175, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9893, 100, 426, 426, 181, 131, 211, 141, 131, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9893, 100, 336, 336, 231, 211, 291, 171, 151, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9894, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9894, 100, 242, 242, 137, 137, 137, 137, 137, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9894, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9894, 100, 276, 276, 241, 181, 201, 201, 251, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9894, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9894, 100, 266, 266, 221, 151, 221, 201, 261, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9895, 100, 306, 306, 181, 171, 201, 281, 241, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9895, 100, 242, 242, 137, 137, 137, 137, 137, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9895, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9895, 100, 276, 276, 241, 181, 201, 201, 251, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9895, 100, 266, 266, 271, 251, 171, 181, 201, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9895, 100, 276, 276, 207, 155, 231, 211, 251, 63); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9896, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9896, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9896, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9896, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9896, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9896, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9897, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9897, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9897, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9897, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9897, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9897, 50, 168, 168, 78, 98, 83, 98, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9898, 100, 296, 296, 221, 321, 161, 161, 121, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9898, 100, 276, 276, 181, 161, 171, 171, 271, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9898, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9898, 100, 256, 256, 231, 151, 111, 191, 271, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9898, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9898, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9899, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9899, 100, 336, 336, 171, 261, 161, 301, 171, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9899, 100, 266, 266, 161, 161, 211, 211, 211, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9899, 100, 292, 292, 231, 165, 211, 171, 211, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9899, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9899, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9900, 40, 104, 104, 67, 95, 115, 75, 75, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9900, 40, 112, 112, 59, 75, 83, 83, 131, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9900, 39, 82, 82, 46, 73, 93, 61, 54, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9901, 37, 104, 104, 55, 70, 77, 77, 121, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9901, 37, 104, 104, 55, 70, 77, 77, 121, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9902, 40, 104, 104, 67, 95, 115, 75, 75, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9902, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9902, 41, 139, 139, 81, 89, 114, 93, 64, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9903, 39, 94, 94, 54, 50, 69, 50, 69, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9903, 37, 78, 78, 44, 70, 88, 59, 51, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9903, 38, 118, 118, 47, 47, 61, 61, 69, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9904, 47, 116, 116, 73, 64, 83, 64, 92, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9904, 45, 102, 102, 78, 97, 87, 70, 50, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9904, 45, 125, 125, 66, 84, 66, 102, 79, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9904, 45, 116, 116, 66, 129, 93, 93, 48, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9905, 17, 63, 63, 21, 16, 24, 17, 16, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9905, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9906, 38, 92, 92, 41, 56, 60, 60, 94, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9906, 38, 92, 92, 41, 56, 60, 60, 94, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9907, 38, 80, 80, 45, 71, 90, 60, 52, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9907, 39, 109, 109, 58, 73, 81, 81, 128, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9907, 39, 102, 102, 65, 93, 112, 73, 73, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9908, 51, 150, 150, 84, 86, 104, 107, 84, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9908, 50, 148, 148, 113, 93, 83, 83, 93, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9908, 52, 156, 156, 122, 88, 112, 91, 112, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9908, 51, 171, 171, 145, 99, 84, 84, 69, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9909, 23, 66, 66, 31, 31, 43, 33, 29, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9909, 23, 52, 52, 29, 45, 56, 38, 33, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9909, 23, 59, 59, 27, 36, 38, 38, 59, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9910, 36, 84, 84, 57, 46, 53, 53, 82, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9910, 35, 110, 110, 44, 44, 56, 56, 64, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9911, 57, 185, 185, 117, 136, 117, 147, 74, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9911, 58, 175, 175, 170, 141, 107, 118, 78, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9911, 58, 181, 181, 170, 112, 72, 136, 124, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9911, 59, 176, 176, 115, 114, 121, 144, 144, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9912, 62, 168, 168, 101, 101, 101, 101, 101, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9912, 62, 205, 205, 176, 120, 101, 101, 83, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9912, 62, 181, 181, 107, 107, 95, 95, 114, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9913, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9913, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9913, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9913, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9913, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9913, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9914, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9914, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9914, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9914, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9914, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9914, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9915, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9915, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9915, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9915, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9915, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9915, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9916, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9916, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9916, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9916, 50, 118, 118, 53, 55, 73, 75, 88, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9916, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9916, 50, 138, 138, 83, 83, 58, 58, 53, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9917, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9917, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9917, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9917, 50, 153, 153, 61, 61, 79, 79, 90, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9917, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9917, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9918, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9918, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9918, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9918, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9918, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9918, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9919, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9919, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9919, 50, 178, 178, 123, 103, 83, 83, 73, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9919, 50, 151, 151, 123, 83, 123, 83, 88, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9919, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9919, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9920, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9920, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9920, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9920, 50, 143, 143, 118, 123, 83, 73, 73, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9920, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9920, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9921, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9921, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9921, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9921, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9921, 50, 118, 118, 53, 73, 78, 78, 123, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9921, 50, 118, 118, 73, 68, 93, 68, 93, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9922, 50, 143, 143, 73, 93, 118, 103, 88, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9922, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9922, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9922, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9922, 50, 153, 153, 98, 78, 128, 108, 53, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9922, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9923, 34, 110, 110, 47, 61, 78, 92, 71, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9923, 34, 93, 93, 61, 81, 81, 47, 75, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9923, 35, 106, 106, 87, 66, 91, 70, 45, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9923, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9923, 34, 124, 124, 85, 71, 58, 58, 51, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9924, 14, 45, 45, 24, 29, 24, 35, 28, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9924, 17, 46, 46, 21, 21, 29, 21, 40, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9924, 16, 47, 47, 31, 39, 21, 21, 15, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9924, 15, 49, 49, 38, 32, 26, 26, 35, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9925, 17, 48, 48, 24, 31, 24, 36, 28, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9925, 16, 62, 62, 18, 26, 18, 26, 18, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9925, 15, 46, 46, 26, 35, 29, 35, 20, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9926, 20, 61, 61, 44, 32, 28, 28, 24, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9926, 20, 55, 55, 42, 36, 28, 24, 32, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9926, 20, 55, 55, 48, 20, 38, 20, 38, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9926, 20, 57, 57, 37, 32, 30, 32, 28, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9927, 13, 38, 38, 14, 17, 20, 30, 23, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9927, 14, 40, 40, 21, 24, 18, 18, 18, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9928, 42, 117, 117, 62, 62, 70, 78, 62, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9928, 42, 113, 113, 99, 116, 57, 57, 49, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9929, 30, 92, 92, 69, 57, 51, 51, 39, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9929, 29, 90, 90, 61, 53, 67, 53, 64, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9929, 31, 98, 98, 65, 68, 84, 71, 47, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9929, 31, 97, 97, 75, 54, 68, 56, 68, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9929, 31, 107, 107, 90, 62, 53, 53, 44, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9930, 44, 118, 118, 69, 95, 78, 95, 51, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9930, 44, 140, 140, 82, 78, 91, 126, 108, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9930, 44, 145, 145, 92, 106, 92, 115, 58, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9930, 44, 153, 153, 73, 90, 108, 130, 92, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9930, 42, 146, 146, 125, 86, 70, 104, 88, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9931, 16, 50, 50, 36, 26, 23, 23, 20, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9931, 16, 50, 50, 39, 33, 29, 49, 23, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9931, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9932, 100, 306, 306, 201, 221, 261, 301, 261, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9932, 100, 266, 266, 171, 161, 301, 191, 261, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9933, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9933, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9933, 50, 163, 163, 96, 93, 96, 138, 90, 177); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9933, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9933, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9933, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9934, 44, 149, 149, 108, 73, 100, 73, 91, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9934, 44, 149, 149, 126, 86, 73, 73, 60, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9934, 44, 153, 153, 91, 113, 56, 82, 108, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9934, 41, 127, 127, 122, 101, 77, 85, 56, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9934, 43, 197, 197, 158, 106, 102, 76, 106, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9935, 13, 39, 39, 34, 22, 20, 22, 29, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9935, 13, 44, 44, 20, 29, 25, 32, 15, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9936, 16, 50, 50, 18, 21, 33, 36, 29, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9936, 14, 40, 40, 18, 18, 21, 24, 18, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9936, 14, 37, 37, 22, 25, 29, 25, 33, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9937, 66, 205, 205, 121, 121, 147, 160, 121, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9937, 66, 198, 198, 154, 154, 154, 154, 140, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9937, 66, 172, 172, 139, 167, 179, 127, 97, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9937, 66, 172, 172, 166, 167, 152, 127, 97, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9937, 66, 264, 264, 105, 105, 129, 129, 117, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9937, 66, 225, 225, 107, 133, 160, 193, 135, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9938, 20, 66, 66, 36, 24, 20, 24, 22, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9938, 20, 49, 49, 28, 34, 28, 34, 36, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9938, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9939, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9939, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9940, 13, 36, 36, 26, 31, 28, 23, 18, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9940, 14, 41, 41, 32, 28, 24, 19, 19, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9940, 15, 42, 42, 23, 20, 19, 22, 26, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9941, 38, 122, 122, 81, 77, 90, 79, 83, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9941, 40, 140, 140, 119, 82, 67, 99, 84, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9942, 41, 114, 114, 81, 89, 101, 89, 114, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9943, 41, 168, 168, 67, 67, 82, 82, 74, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9944, 41, 147, 147, 93, 126, 56, 73, 64, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9945, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9945, 40, 200, 200, 91, 55, 91, 55, 67, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9946, 41, 110, 110, 73, 97, 97, 56, 89, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9947, 45, 120, 120, 79, 106, 106, 61, 97, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9948, 49, 130, 130, 150, 135, 71, 71, 96, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9948, 49, 150, 150, 115, 115, 115, 115, 105, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9949, 39, 133, 133, 65, 73, 77, 73, 54, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9949, 39, 148, 148, 79, 75, 78, 74, 65, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9950, 41, 205, 205, 93, 56, 93, 56, 68, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9951, 39, 109, 109, 58, 97, 85, 73, 69, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9951, 39, 160, 160, 64, 64, 78, 78, 71, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9952, 50, 189, 189, 106, 91, 115, 105, 62, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9952, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9952, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9952, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9952, 50, 183, 183, 163, 118, 78, 88, 68, 527); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9953, 24, 73, 73, 38, 24, 38, 24, 27, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9953, 25, 76, 76, 39, 25, 39, 25, 28, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9954, 68, 204, 204, 199, 165, 124, 138, 90, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9954, 68, 231, 231, 111, 136, 165, 199, 139, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9954, 68, 197, 197, 131, 111, 172, 111, 172, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9954, 68, 204, 204, 151, 97, 179, 138, 158, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9954, 68, 231, 231, 199, 136, 111, 165, 139, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9954, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9955, 26, 73, 73, 56, 45, 40, 50, 64, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9955, 27, 79, 79, 63, 44, 63, 57, 74, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9956, 13, 30, 30, 23, 16, 18, 21, 34, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9957, 55, 123, 123, 112, 79, 79, 101, 156, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9958, 13, 48, 48, 30, 22, 20, 22, 16, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9959, 55, 200, 200, 140, 107, 96, 134, 79, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9960, 43, 111, 111, 84, 93, 37, 46, 54, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9960, 43, 102, 102, 89, 106, 46, 46, 37, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9960, 43, 101, 101, 55, 54, 63, 76, 76, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9960, 43, 115, 115, 102, 119, 59, 59, 50, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9961, 55, 150, 150, 68, 112, 90, 74, 68, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9962, 19, 51, 51, 28, 25, 27, 27, 46, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9963, 27, 81, 81, 52, 47, 49, 49, 76, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9963, 26, 76, 76, 55, 71, 40, 55, 37, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9964, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9966, 42, 117, 117, 53, 70, 53, 70, 49, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9966, 40, 95, 95, 61, 53, 67, 59, 71, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9966, 41, 102, 102, 101, 56, 56, 56, 27, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9966, 40, 104, 104, 35, 51, 35, 51, 35, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9967, 51, 140, 140, 64, 84, 64, 84, 59, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9967, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9967, 49, 125, 125, 91, 71, 71, 71, 91, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9967, 49, 145, 145, 42, 71, 42, 71, 61, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9968, 59, 161, 161, 179, 120, 97, 97, 108, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9968, 60, 185, 185, 127, 120, 157, 128, 146, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9968, 59, 184, 184, 144, 120, 120, 120, 144, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9968, 58, 204, 204, 83, 118, 95, 118, 83, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9969, 43, 111, 111, 80, 63, 63, 63, 54, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9969, 40, 100, 100, 51, 67, 51, 79, 59, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9969, 41, 106, 106, 68, 56, 101, 85, 73, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9969, 42, 113, 113, 53, 53, 74, 57, 49, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9970, 51, 150, 150, 110, 94, 84, 94, 74, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9970, 49, 145, 145, 101, 86, 110, 86, 105, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9970, 49, 148, 148, 120, 81, 120, 81, 86, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9970, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9971, 60, 211, 211, 158, 134, 128, 134, 98, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9971, 59, 178, 178, 108, 132, 108, 150, 120, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9971, 59, 176, 176, 161, 97, 97, 97, 132, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9971, 59, 196, 196, 114, 126, 161, 132, 91, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9972, 36, 94, 94, 68, 89, 46, 46, 39, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9972, 37, 97, 97, 66, 65, 50, 53, 50, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9972, 35, 85, 85, 56, 73, 42, 59, 38, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9972, 35, 89, 89, 70, 59, 45, 38, 52, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9973, 46, 127, 127, 90, 113, 72, 95, 67, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9973, 44, 122, 122, 100, 144, 64, 64, 56, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9973, 45, 129, 129, 93, 93, 74, 77, 73, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9973, 46, 132, 132, 108, 113, 76, 67, 67, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9974, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9974, 51, 166, 166, 130, 125, 103, 108, 102, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9974, 52, 163, 163, 164, 158, 122, 117, 96, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9974, 52, 179, 179, 164, 106, 138, 106, 127, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9975, 40, 104, 104, 79, 79, 71, 71, 59, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9975, 41, 131, 131, 85, 60, 52, 60, 40, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9975, 40, 120, 120, 53, 61, 53, 61, 51, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9975, 50, 113, 113, 43, 88, 63, 88, 43, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9976, 41, 114, 114, 68, 68, 68, 68, 68, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9976, 42, 109, 109, 91, 53, 91, 53, 49, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9976, 40, 112, 112, 39, 47, 75, 83, 67, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9976, 43, 115, 115, 37, 50, 37, 59, 84, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9977, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9977, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9977, 49, 155, 155, 66, 86, 110, 130, 101, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9977, 51, 135, 135, 43, 59, 43, 69, 99, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9978, 58, 158, 158, 95, 95, 95, 95, 95, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9978, 59, 172, 172, 161, 97, 161, 97, 91, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9978, 59, 184, 184, 79, 102, 132, 156, 120, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9978, 60, 157, 157, 50, 68, 50, 80, 116, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9979, 43, 128, 128, 54, 63, 67, 63, 41, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9979, 41, 98, 98, 36, 44, 52, 85, 64, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9979, 40, 104, 104, 57, 53, 56, 52, 67, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9979, 41, 102, 102, 74, 68, 48, 60, 71, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9980, 51, 171, 171, 84, 94, 99, 94, 69, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9980, 49, 130, 130, 56, 71, 76, 130, 105, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9980, 48, 180, 180, 97, 92, 95, 90, 79, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9980, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9981, 60, 223, 223, 122, 134, 140, 134, 104, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9981, 60, 169, 169, 176, 146, 92, 110, 128, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9981, 60, 223, 223, 120, 114, 117, 111, 98, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9981, 60, 187, 187, 137, 104, 104, 122, 108, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9982, 41, 88, 88, 40, 40, 56, 48, 52, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9982, 43, 98, 98, 37, 76, 54, 76, 37, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9982, 42, 96, 96, 58, 48, 49, 57, 36, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9982, 42, 103, 103, 87, 74, 62, 49, 49, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9983, 49, 113, 113, 56, 56, 86, 76, 71, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9983, 51, 135, 135, 64, 110, 104, 130, 64, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9983, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9983, 49, 138, 138, 140, 105, 110, 76, 76, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9984, 59, 170, 170, 102, 102, 173, 161, 120, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9984, 60, 157, 157, 74, 128, 122, 152, 74, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9984, 59, 190, 190, 115, 101, 79, 91, 132, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9984, 59, 164, 164, 167, 126, 132, 91, 91, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9985, 57, 173, 173, 168, 139, 105, 116, 76, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9985, 58, 199, 199, 95, 117, 141, 170, 119, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9985, 55, 167, 167, 118, 244, 85, 96, 57, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9985, 55, 271, 271, 123, 74, 123, 74, 90, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9986, 38, 76, 76, 49, 30, 45, 45, 64, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9986, 38, 99, 99, 58, 55, 68, 56, 60, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9986, 37, 86, 86, 33, 66, 47, 66, 33, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9986, 37, 89, 89, 77, 92, 40, 40, 33, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9987, 45, 102, 102, 70, 57, 66, 66, 102, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9987, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9987, 44, 118, 118, 56, 95, 91, 113, 56, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9987, 44, 118, 118, 104, 122, 60, 60, 51, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9988, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9988, 53, 166, 166, 151, 161, 82, 92, 71, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9988, 54, 148, 148, 121, 83, 121, 110, 143, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9988, 52, 163, 163, 109, 104, 122, 106, 112, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9989, 43, 128, 128, 102, 93, 67, 76, 80, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9989, 43, 128, 128, 67, 76, 102, 93, 80, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9989, 43, 102, 102, 54, 67, 54, 80, 67, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9989, 43, 85, 85, 54, 97, 46, 97, 41, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9990, 51, 150, 150, 120, 110, 79, 89, 94, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9990, 51, 150, 150, 79, 89, 120, 110, 94, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9990, 51, 140, 140, 94, 130, 94, 145, 99, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9990, 51, 120, 120, 94, 155, 84, 155, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9991, 60, 187, 187, 146, 266, 86, 146, 86, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9991, 60, 187, 187, 86, 146, 146, 266, 86, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9991, 60, 187, 187, 116, 206, 116, 206, 86, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9991, 60, 139, 139, 110, 182, 98, 182, 56, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9992, 43, 120, 120, 72, 54, 76, 59, 50, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9992, 43, 98, 98, 50, 54, 50, 67, 63, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9992, 43, 107, 107, 72, 46, 89, 63, 76, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9992, 43, 102, 102, 54, 63, 46, 46, 46, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9993, 51, 150, 150, 125, 94, 130, 99, 64, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9993, 51, 135, 135, 69, 74, 69, 89, 104, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9993, 51, 155, 155, 115, 74, 135, 104, 120, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9993, 51, 150, 150, 94, 64, 84, 64, 84, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9994, 60, 229, 229, 164, 128, 134, 116, 146, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9994, 60, 181, 181, 92, 110, 92, 140, 158, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9994, 60, 181, 181, 134, 86, 158, 122, 140, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9994, 60, 199, 199, 146, 98, 134, 98, 122, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9995, 41, 114, 114, 68, 68, 89, 89, 89, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9995, 43, 150, 150, 40, 61, 40, 61, 40, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9995, 40, 115, 115, 60, 37, 60, 37, 41, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9995, 42, 142, 142, 45, 32, 53, 36, 32, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9996, 49, 135, 135, 81, 81, 105, 105, 105, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9996, 51, 273, 273, 57, 82, 57, 82, 57, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9996, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9996, 49, 189, 189, 66, 42, 66, 47, 42, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9997, 58, 158, 158, 95, 95, 124, 124, 124, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9997, 60, 319, 319, 66, 96, 66, 96, 66, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9997, 59, 212, 212, 133, 100, 133, 112, 106, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9997, 58, 251, 251, 107, 78, 124, 83, 78, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9998, 57, 155, 155, 71, 82, 111, 122, 133, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9998, 58, 158, 158, 83, 72, 124, 112, 136, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9998, 56, 167, 167, 131, 94, 120, 97, 120, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9998, 55, 193, 193, 99, 116, 104, 120, 80, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9999, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9999, 42, 100, 100, 57, 53, 74, 53, 74, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9999, 40, 96, 96, 43, 43, 63, 43, 87, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (9999, 41, 98, 98, 56, 48, 44, 52, 64, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10000, 51, 160, 160, 110, 120, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10000, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10000, 48, 132, 132, 70, 118, 103, 89, 84, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10000, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10001, 60, 217, 217, 182, 170, 80, 80, 74, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10001, 59, 172, 172, 114, 97, 150, 97, 150, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10001, 59, 166, 166, 73, 108, 120, 191, 108, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10001, 59, 190, 190, 132, 120, 108, 120, 179, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10002, 51, 130, 130, 69, 69, 59, 59, 74, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10002, 51, 145, 145, 120, 99, 79, 79, 110, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10002, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10002, 50, 133, 133, 63, 63, 88, 68, 58, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10003, 43, 124, 124, 89, 140, 54, 80, 80, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10003, 40, 96, 96, 51, 51, 75, 51, 35, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10003, 41, 106, 106, 81, 89, 36, 44, 52, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10003, 42, 100, 100, 70, 53, 53, 53, 45, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10004, 51, 145, 145, 104, 166, 64, 94, 94, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10004, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10004, 49, 150, 150, 120, 130, 66, 76, 86, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10004, 48, 142, 142, 108, 89, 79, 79, 60, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10005, 60, 169, 169, 122, 194, 74, 110, 110, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10005, 58, 170, 170, 124, 188, 124, 107, 49, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10005, 58, 175, 175, 141, 153, 78, 89, 101, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10005, 59, 166, 166, 114, 150, 67, 102, 126, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10006, 43, 102, 102, 59, 50, 76, 67, 80, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10006, 40, 92, 92, 87, 55, 47, 47, 79, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10006, 41, 127, 127, 50, 50, 65, 65, 74, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10006, 42, 104, 104, 95, 36, 74, 36, 74, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10007, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10007, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10007, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10007, 51, 150, 150, 145, 64, 120, 64, 120, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10008, 60, 175, 175, 128, 104, 152, 128, 170, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10008, 59, 161, 161, 156, 108, 97, 97, 144, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10008, 58, 233, 233, 93, 93, 114, 114, 103, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10008, 59, 172, 172, 167, 73, 138, 73, 138, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10009, 43, 107, 107, 72, 54, 80, 63, 59, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10009, 40, 94, 94, 43, 52, 43, 52, 67, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10009, 40, 116, 116, 71, 55, 79, 55, 95, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10009, 41, 139, 139, 68, 68, 52, 52, 52, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10010, 51, 140, 140, 110, 84, 110, 84, 79, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10010, 48, 150, 150, 89, 80, 70, 80, 118, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10010, 48, 137, 137, 84, 65, 94, 65, 113, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10010, 50, 168, 168, 143, 143, 83, 83, 73, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10011, 60, 187, 187, 170, 110, 158, 110, 122, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10011, 58, 199, 199, 118, 147, 72, 107, 141, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10011, 58, 181, 181, 170, 112, 72, 136, 124, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10011, 59, 196, 196, 167, 167, 97, 97, 85, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10012, 43, 124, 124, 83, 67, 60, 84, 93, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10012, 43, 124, 124, 60, 67, 83, 84, 93, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10012, 43, 111, 111, 63, 54, 46, 46, 63, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10012, 43, 111, 111, 65, 61, 76, 63, 67, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10013, 51, 140, 140, 74, 64, 110, 99, 120, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10013, 51, 140, 140, 64, 74, 99, 110, 120, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10013, 51, 181, 181, 125, 104, 84, 84, 74, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10013, 51, 160, 160, 107, 102, 120, 104, 110, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10014, 60, 187, 187, 134, 122, 182, 158, 158, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10014, 60, 187, 187, 122, 134, 158, 182, 158, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10014, 60, 211, 211, 146, 122, 98, 98, 86, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10014, 60, 187, 187, 125, 120, 140, 122, 128, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10015, 41, 98, 98, 64, 44, 44, 44, 89, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10015, 43, 130, 130, 72, 46, 37, 46, 41, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10015, 41, 106, 106, 56, 56, 48, 48, 60, 409); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10015, 42, 99, 99, 54, 53, 62, 74, 74, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10016, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10016, 51, 226, 226, 145, 84, 64, 84, 74, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10016, 49, 145, 145, 86, 86, 76, 76, 91, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10016, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10017, 58, 158, 158, 124, 95, 83, 83, 170, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10017, 60, 264, 264, 170, 98, 74, 98, 86, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10017, 59, 155, 155, 138, 91, 67, 114, 161, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10017, 59, 176, 176, 115, 114, 121, 144, 144, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10018, 40, 89, 89, 55, 91, 43, 43, 51, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10018, 41, 90, 90, 52, 64, 52, 64, 68, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10018, 42, 117, 117, 87, 62, 62, 62, 53, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10018, 42, 125, 125, 87, 62, 49, 49, 49, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10019, 51, 141, 141, 115, 69, 74, 74, 186, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10019, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10019, 51, 80, 80, 115, 69, 53, 53, 64, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10019, 48, 152, 152, 118, 89, 70, 79, 65, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10020, 59, 162, 162, 132, 79, 85, 85, 215, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10020, 59, 161, 161, 97, 114, 97, 114, 120, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10020, 60, 199, 199, 182, 116, 116, 116, 92, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10020, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10021, 43, 107, 107, 84, 72, 54, 46, 63, 320); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10021, 40, 112, 112, 83, 59, 51, 51, 43, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10021, 40, 92, 92, 63, 47, 43, 43, 47, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10021, 40, 80, 80, 27, 63, 31, 35, 83, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10022, 51, 145, 145, 120, 125, 84, 74, 74, 433); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10022, 49, 164, 164, 140, 96, 81, 81, 66, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10022, 49, 145, 145, 110, 91, 81, 81, 91, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10022, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10023, 60, 205, 205, 188, 122, 158, 122, 146, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10023, 59, 196, 196, 167, 114, 97, 97, 79, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10023, 59, 172, 172, 132, 108, 97, 97, 108, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10023, 59, 202, 202, 173, 119, 97, 144, 121, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10024, 41, 106, 106, 73, 93, 48, 48, 32, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10024, 41, 98, 98, 73, 97, 68, 56, 48, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10024, 41, 131, 131, 85, 60, 52, 60, 40, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10024, 42, 88, 88, 49, 78, 99, 66, 57, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10025, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10025, 49, 140, 140, 110, 140, 105, 91, 81, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10025, 49, 179, 179, 125, 96, 86, 120, 71, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10025, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10026, 59, 178, 178, 132, 191, 97, 97, 73, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10026, 58, 164, 164, 130, 165, 124, 107, 95, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10026, 59, 214, 214, 150, 114, 102, 144, 85, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10026, 60, 151, 151, 98, 140, 170, 110, 110, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10027, 40, 88, 88, 55, 127, 55, 91, 43, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10027, 41, 147, 147, 77, 77, 73, 73, 56, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10027, 40, 96, 96, 51, 47, 59, 99, 75, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10027, 43, 102, 102, 89, 106, 46, 46, 37, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10028, 48, 104, 104, 65, 151, 65, 108, 51, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10028, 49, 125, 125, 105, 105, 76, 76, 71, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10028, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10028, 51, 135, 135, 120, 140, 69, 69, 59, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10029, 59, 113, 113, 38, 297, 38, 297, 32, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10029, 59, 149, 149, 114, 114, 102, 102, 85, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10029, 59, 184, 184, 108, 102, 120, 167, 144, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10029, 60, 187, 187, 170, 182, 92, 104, 80, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10030, 43, 120, 120, 72, 72, 50, 50, 46, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10030, 42, 88, 88, 36, 32, 108, 66, 95, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10030, 40, 96, 96, 59, 55, 75, 55, 75, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10030, 41, 106, 106, 73, 72, 55, 59, 55, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10031, 48, 152, 152, 99, 99, 75, 75, 108, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10031, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10031, 49, 140, 140, 96, 91, 115, 91, 115, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10031, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10032, 59, 267, 267, 215, 144, 138, 102, 144, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10032, 59, 155, 155, 85, 79, 185, 138, 167, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10032, 58, 164, 164, 112, 107, 136, 107, 136, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10032, 60, 193, 193, 152, 146, 121, 126, 120, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10033, 42, 100, 100, 45, 45, 53, 62, 45, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10033, 42, 83, 83, 53, 32, 49, 49, 70, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10033, 42, 92, 92, 57, 66, 78, 66, 91, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10033, 42, 113, 113, 57, 57, 41, 41, 32, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10034, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10034, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10034, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10034, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10035, 59, 184, 184, 108, 108, 132, 144, 108, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10035, 59, 161, 161, 132, 91, 132, 120, 156, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10035, 59, 161, 161, 114, 126, 144, 126, 161, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10035, 59, 202, 202, 126, 126, 102, 102, 67, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10036, 41, 94, 94, 73, 48, 73, 48, 73, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10036, 42, 109, 109, 78, 104, 53, 53, 45, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10036, 41, 102, 102, 60, 64, 81, 73, 44, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10036, 42, 92, 92, 45, 45, 45, 45, 45, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10037, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10037, 51, 140, 140, 115, 166, 74, 74, 64, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10037, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10037, 49, 150, 150, 96, 76, 125, 105, 52, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10038, 59, 178, 178, 150, 114, 150, 114, 79, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10038, 60, 175, 175, 158, 242, 98, 98, 86, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10038, 58, 175, 175, 118, 124, 153, 130, 83, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10038, 58, 175, 175, 118, 136, 130, 141, 83, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10039, 43, 180, 180, 80, 50, 80, 50, 72, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10039, 43, 98, 98, 75, 93, 84, 67, 48, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10039, 43, 94, 94, 54, 80, 80, 41, 72, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10039, 43, 102, 102, 46, 63, 67, 67, 106, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10040, 51, 252, 252, 115, 69, 115, 69, 84, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10040, 51, 145, 145, 120, 99, 79, 79, 110, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10040, 51, 135, 135, 89, 120, 120, 69, 110, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10040, 51, 140, 140, 74, 94, 104, 104, 166, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10041, 60, 211, 211, 116, 164, 134, 164, 128, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10041, 60, 157, 157, 127, 152, 163, 116, 89, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10041, 60, 181, 181, 140, 140, 140, 140, 128, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10041, 60, 199, 199, 128, 116, 164, 146, 164, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10042, 41, 101, 101, 81, 48, 71, 46, 56, 465); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10042, 41, 114, 114, 44, 44, 49, 65, 60, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10042, 42, 121, 121, 62, 78, 99, 87, 74, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10042, 42, 117, 117, 95, 78, 70, 120, 53, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10043, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10043, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10043, 49, 140, 140, 71, 91, 115, 101, 86, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10043, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10044, 59, 165, 165, 161, 102, 124, 100, 102, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10044, 59, 161, 161, 126, 75, 126, 75, 133, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10044, 59, 166, 166, 85, 108, 138, 120, 102, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10044, 59, 161, 161, 132, 108, 97, 167, 73, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10045, 60, 163, 163, 128, 77, 128, 77, 135, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10045, 60, 163, 163, 110, 152, 110, 170, 116, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10045, 60, 181, 181, 128, 266, 92, 104, 62, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10045, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10046, 41, 82, 82, 32, 36, 27, 64, 85, 468); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10046, 40, 100, 100, 95, 59, 51, 59, 79, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10046, 40, 117, 117, 52, 81, 68, 89, 37, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10046, 42, 104, 104, 61, 74, 61, 74, 57, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10047, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10047, 49, 120, 120, 115, 71, 61, 71, 96, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10047, 49, 160, 160, 102, 117, 102, 127, 64, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10047, 51, 140, 140, 86, 104, 87, 104, 84, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10048, 59, 202, 202, 97, 119, 144, 173, 121, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10048, 59, 178, 178, 173, 144, 108, 120, 79, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10048, 59, 191, 191, 121, 140, 121, 152, 76, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10048, 60, 187, 187, 125, 146, 126, 146, 122, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10049, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10049, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10050, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10050, 50, 142, 142, 138, 88, 106, 86, 88, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10050, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10051, 50, 178, 178, 123, 113, 173, 163, 113, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10052, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10053, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10053, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10054, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10054, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10055, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10055, 50, 118, 118, 68, 58, 63, 63, 113, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10055, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10056, 50, 144, 144, 64, 100, 84, 110, 46, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10056, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10056, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10056, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10057, 50, 113, 113, 63, 123, 113, 78, 58, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10057, 50, 108, 108, 103, 113, 78, 68, 78, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10057, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10057, 50, 138, 138, 138, 128, 88, 93, 103, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10058, 50, 178, 178, 123, 123, 123, 123, 123, 345); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10059, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10059, 50, 128, 128, 128, 102, 58, 133, 99, 207); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10059, 50, 222, 222, 143, 83, 63, 83, 73, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10060, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10060, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10060, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10061, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10062, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10062, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10062, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10063, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10063, 50, 333, 333, 33, 33, 98, 158, 78, 145); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10063, 50, 118, 118, 93, 153, 83, 153, 48, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10064, 50, 178, 178, 173, 163, 123, 113, 113, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10064, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10065, 75, 232, 232, 182, 332, 107, 182, 107, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10065, 75, 232, 232, 107, 182, 182, 332, 107, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10065, 75, 232, 232, 144, 257, 144, 257, 107, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10066, 75, 247, 247, 159, 144, 204, 182, 204, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10066, 75, 284, 284, 204, 159, 167, 144, 182, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10066, 75, 262, 262, 144, 204, 167, 204, 159, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10067, 48, 94, 94, 31, 75, 36, 41, 99, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10067, 49, 96, 96, 32, 76, 37, 42, 101, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10067, 50, 98, 98, 33, 78, 38, 43, 103, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10068, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10068, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10068, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10069, 50, 178, 178, 123, 113, 173, 163, 113, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10069, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10070, 85, 278, 278, 180, 205, 197, 248, 180, 425); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10070, 85, 278, 278, 188, 180, 248, 188, 205, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10070, 85, 278, 278, 205, 188, 248, 180, 188, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10071, 85, 278, 278, 180, 163, 231, 205, 231, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10071, 85, 321, 321, 231, 180, 188, 163, 205, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10071, 85, 295, 295, 163, 231, 188, 231, 180, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10072, 5, 20, 20, 14, 16, 9, 9, 8, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10072, 5, 23, 23, 14, 11, 10, 10, 10, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10073, 50, 108, 108, 63, 78, 63, 78, 83, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10073, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10074, 60, 163, 163, 104, 98, 182, 116, 158, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10074, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10074, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10074, 50, 98, 98, 33, 253, 33, 253, 28, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10075, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10075, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10075, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10075, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10076, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10076, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10076, 60, 163, 163, 104, 98, 182, 116, 158, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10077, 100, 186, 186, 61, 501, 61, 501, 51, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10078, 50, 138, 138, 71, 68, 66, 113, 65, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10080, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10081, 5, 21, 21, 9, 8, 15, 13, 13, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10081, 5, 21, 21, 13, 10, 13, 12, 16, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10081, 5, 21, 21, 14, 10, 13, 12, 15, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10082, 5, 21, 21, 11, 13, 11, 13, 11, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10082, 5, 20, 20, 12, 11, 12, 11, 13, 354); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10082, 5, 21, 21, 13, 13, 11, 11, 11, 353); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10083, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10083, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10083, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10083, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10083, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10083, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10084, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10085, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10086, 50, 168, 168, 88, 88, 63, 63, 38, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10086, 50, 173, 173, 98, 133, 123, 103, 53, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10086, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10087, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10088, 50, 148, 148, 133, 203, 83, 83, 73, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10089, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10089, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10089, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10090, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10090, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10090, 50, 157, 157, 106, 123, 108, 128, 101, 29); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10091, 77, 237, 237, 155, 171, 202, 232, 202, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10091, 77, 237, 237, 171, 155, 232, 202, 202, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10092, 77, 277, 277, 171, 232, 171, 269, 202, 646); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10093, 50, 138, 138, 83, 98, 83, 98, 103, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10094, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10094, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10095, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10095, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10095, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10096, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10096, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10096, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10096, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10096, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10096, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10097, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10098, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10099, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10099, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10100, 36, 130, 130, 53, 75, 61, 75, 53, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10100, 34, 83, 83, 37, 37, 54, 37, 75, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10101, 36, 112, 112, 45, 45, 58, 58, 66, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10101, 34, 86, 86, 78, 30, 61, 30, 61, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10102, 42, 130, 130, 52, 52, 67, 67, 76, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10102, 40, 100, 100, 91, 35, 71, 35, 71, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10103, 45, 183, 183, 73, 73, 89, 89, 81, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10103, 43, 107, 107, 97, 37, 76, 37, 76, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10104, 48, 195, 195, 77, 77, 95, 95, 86, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10104, 46, 136, 136, 131, 58, 108, 58, 108, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10105, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10105, 49, 145, 145, 140, 61, 115, 61, 115, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10106, 34, 107, 107, 43, 43, 55, 55, 62, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10106, 33, 84, 84, 76, 30, 59, 30, 59, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10107, 42, 130, 130, 52, 52, 67, 67, 76, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10107, 40, 100, 100, 91, 35, 71, 35, 71, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10108, 45, 183, 183, 73, 73, 89, 89, 81, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10108, 43, 107, 107, 97, 37, 76, 37, 76, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10109, 48, 195, 195, 77, 77, 95, 95, 86, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10109, 46, 136, 136, 131, 58, 108, 58, 108, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10110, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10110, 49, 145, 145, 140, 61, 115, 61, 115, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10111, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10111, 25, 64, 64, 34, 31, 39, 64, 49, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10112, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10112, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10113, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10113, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10114, 100, 396, 396, 157, 157, 193, 193, 175, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10114, 100, 268, 268, 209, 171, 181, 181, 181, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10115, 100, 256, 256, 151, 211, 171, 211, 111, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10115, 100, 256, 256, 301, 271, 141, 141, 191, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10116, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10116, 30, 98, 98, 71, 54, 54, 63, 56, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10117, 33, 91, 91, 59, 79, 79, 46, 72, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10117, 33, 94, 94, 66, 72, 82, 72, 92, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10118, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10118, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10119, 55, 145, 145, 96, 129, 129, 74, 118, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10119, 55, 150, 150, 107, 118, 134, 118, 151, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10120, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10120, 26, 67, 67, 55, 48, 40, 32, 32, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10121, 39, 141, 141, 58, 81, 65, 81, 58, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10121, 38, 130, 130, 64, 71, 75, 71, 52, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10122, 39, 109, 109, 58, 97, 85, 73, 69, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10122, 38, 145, 145, 77, 74, 76, 72, 64, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10123, 41, 114, 114, 60, 101, 89, 77, 73, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10123, 39, 148, 148, 79, 75, 78, 74, 65, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10124, 45, 125, 125, 66, 111, 97, 84, 79, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10124, 44, 166, 166, 89, 85, 87, 83, 73, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10125, 51, 140, 140, 74, 125, 110, 94, 89, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10125, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10126, 28, 98, 98, 54, 59, 54, 68, 54, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10127, 28, 84, 84, 43, 34, 79, 68, 68, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10128, 38, 103, 103, 75, 56, 49, 49, 79, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10129, 40, 108, 108, 79, 59, 51, 51, 83, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10130, 55, 178, 178, 156, 101, 79, 90, 134, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10131, 36, 91, 91, 32, 53, 61, 104, 53, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10131, 38, 103, 103, 90, 60, 45, 75, 106, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10132, 37, 108, 108, 47, 70, 77, 121, 70, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10132, 39, 105, 105, 93, 61, 46, 77, 108, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10133, 58, 164, 164, 72, 107, 118, 188, 107, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10133, 58, 152, 152, 136, 89, 66, 112, 159, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10134, 35, 85, 85, 73, 87, 38, 38, 31, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10134, 35, 96, 96, 84, 98, 49, 49, 42, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10134, 35, 99, 99, 61, 52, 61, 59, 45, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10135, 35, 96, 96, 84, 56, 42, 70, 98, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10136, 40, 108, 108, 95, 63, 47, 79, 111, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10137, 55, 145, 145, 129, 85, 63, 107, 151, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10138, 36, 94, 94, 61, 50, 89, 75, 64, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10138, 36, 102, 102, 62, 53, 62, 61, 46, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10139, 35, 106, 106, 31, 52, 31, 52, 45, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10139, 35, 106, 106, 49, 51, 59, 63, 42, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10140, 37, 104, 104, 64, 55, 64, 62, 47, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10141, 40, 112, 112, 69, 59, 69, 67, 51, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10142, 55, 150, 150, 93, 79, 93, 90, 68, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10143, 34, 97, 97, 59, 51, 59, 58, 44, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10143, 34, 110, 110, 73, 70, 81, 71, 75, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10143, 33, 94, 94, 57, 49, 57, 56, 43, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10143, 35, 99, 99, 61, 52, 61, 59, 45, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10144, 39, 109, 109, 67, 58, 67, 65, 50, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10145, 45, 152, 152, 104, 88, 104, 97, 75, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10146, 54, 180, 180, 123, 105, 123, 116, 89, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10147, 36, 94, 94, 53, 46, 39, 39, 53, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10147, 38, 103, 103, 90, 60, 45, 75, 106, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10148, 43, 154, 154, 106, 89, 72, 72, 63, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10148, 43, 115, 115, 102, 67, 50, 84, 119, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10149, 56, 136, 136, 86, 75, 97, 75, 109, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10149, 58, 170, 170, 165, 101, 78, 124, 170, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10149, 60, 223, 223, 182, 122, 110, 98, 122, 220); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10150, 36, 94, 94, 53, 53, 53, 53, 53, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10150, 36, 94, 94, 53, 46, 39, 39, 53, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10150, 36, 102, 102, 62, 53, 62, 61, 46, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10151, 39, 105, 105, 93, 61, 46, 77, 108, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10152, 45, 120, 120, 106, 70, 52, 88, 124, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10153, 54, 142, 142, 127, 83, 62, 105, 148, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10154, 36, 94, 94, 53, 46, 39, 39, 53, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10154, 38, 107, 107, 65, 56, 65, 64, 49, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10155, 37, 134, 134, 92, 77, 62, 62, 55, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10155, 37, 108, 108, 62, 99, 114, 88, 66, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10156, 39, 102, 102, 58, 58, 58, 58, 58, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10157, 45, 116, 116, 66, 66, 66, 66, 66, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10158, 54, 159, 159, 110, 100, 110, 100, 143, 317); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10159, 35, 99, 99, 61, 52, 61, 59, 45, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10159, 36, 102, 102, 62, 53, 62, 61, 46, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10159, 37, 104, 104, 64, 55, 64, 62, 47, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10160, 53, 129, 129, 82, 71, 92, 71, 103, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10161, 29, 87, 87, 44, 35, 82, 70, 70, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10162, 29, 101, 101, 56, 61, 56, 70, 56, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10163, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10163, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10163, 50, 128, 128, 73, 118, 63, 73, 58, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10163, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10163, 50, 119, 119, 87, 68, 73, 73, 73, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10163, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10164, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10164, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10164, 50, 148, 148, 83, 148, 138, 93, 78, 343); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10164, 50, 138, 138, 103, 133, 73, 103, 68, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10164, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10164, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10165, 100, 276, 276, 141, 111, 271, 231, 231, 269); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10165, 100, 406, 406, 211, 201, 211, 231, 161, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10165, 100, 336, 336, 191, 201, 241, 261, 101, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10165, 100, 346, 346, 241, 201, 161, 161, 141, 208); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10165, 100, 316, 316, 251, 241, 199, 207, 197, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10166, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10166, 100, 346, 346, 309, 261, 231, 241, 163, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10166, 100, 466, 466, 261, 171, 171, 261, 101, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10166, 100, 296, 296, 231, 231, 231, 231, 211, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10166, 100, 286, 286, 301, 241, 151, 201, 171, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10166, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10167, 42, 109, 109, 62, 84, 99, 84, 96, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10167, 44, 122, 122, 60, 64, 100, 91, 82, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10168, 19, 56, 56, 28, 30, 28, 36, 42, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10168, 22, 69, 69, 38, 37, 46, 37, 63, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10169, 41, 126, 126, 101, 78, 93, 78, 57, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10169, 44, 135, 135, 97, 76, 97, 76, 107, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10170, 38, 103, 103, 75, 64, 75, 64, 96, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10170, 40, 112, 112, 87, 67, 59, 59, 119, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10171, 28, 73, 73, 26, 43, 48, 82, 43, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10171, 29, 92, 92, 47, 56, 47, 70, 79, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10172, 28, 82, 82, 55, 45, 46, 44, 62, 472); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10172, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10173, 45, 134, 134, 66, 48, 106, 142, 115, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10174, 37, 108, 108, 55, 70, 88, 77, 66, 427); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10174, 37, 97, 97, 70, 55, 55, 55, 70, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10174, 39, 123, 123, 82, 74, 76, 72, 117, 321); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10175, 15, 57, 57, 25, 20, 28, 23, 31, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10175, 18, 57, 57, 33, 31, 29, 29, 37, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10176, 31, 96, 96, 52, 65, 80, 65, 76, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10177, 46, 128, 128, 104, 62, 67, 67, 168, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10177, 47, 214, 214, 97, 63, 106, 72, 97, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10177, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10178, 21, 61, 61, 27, 33, 35, 58, 48, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10179, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10179, 52, 163, 163, 132, 91, 86, 101, 158, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10180, 23, 66, 66, 47, 40, 47, 40, 60, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10180, 23, 59, 59, 27, 27, 38, 27, 52, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10180, 24, 69, 69, 49, 37, 32, 32, 52, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10181, 40, 112, 112, 73, 87, 81, 79, 112, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10181, 40, 120, 120, 67, 79, 107, 79, 91, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10182, 67, 181, 181, 118, 143, 132, 129, 184, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10182, 67, 194, 194, 109, 129, 176, 129, 149, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10183, 25, 66, 66, 44, 30, 39, 30, 52, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10184, 33, 104, 104, 82, 58, 69, 58, 93, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10185, 41, 127, 127, 101, 71, 85, 71, 114, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10186, 67, 154, 154, 82, 102, 82, 122, 102, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10186, 67, 201, 201, 163, 113, 136, 113, 184, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10187, 67, 154, 154, 69, 96, 102, 102, 163, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10187, 67, 235, 235, 109, 122, 143, 169, 109, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10188, 44, 131, 131, 73, 86, 117, 86, 100, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10189, 25, 64, 64, 27, 44, 32, 39, 47, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10189, 25, 66, 66, 31, 39, 49, 39, 29, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10190, 33, 94, 94, 61, 72, 67, 66, 93, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10190, 33, 101, 101, 56, 66, 89, 66, 76, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10191, 47, 130, 130, 84, 101, 94, 92, 130, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10191, 47, 139, 139, 78, 92, 125, 92, 106, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10192, 63, 171, 171, 112, 134, 124, 122, 173, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10192, 63, 183, 183, 103, 122, 166, 122, 141, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10193, 26, 68, 68, 45, 31, 40, 31, 53, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10194, 34, 107, 107, 85, 60, 71, 60, 96, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10195, 48, 147, 147, 118, 82, 99, 82, 133, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10196, 63, 146, 146, 78, 96, 78, 115, 96, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10196, 63, 190, 190, 153, 107, 128, 107, 173, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10197, 44, 122, 122, 79, 95, 88, 86, 122, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10198, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10199, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10200, 48, 171, 171, 79, 89, 103, 123, 79, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10201, 63, 146, 146, 65, 90, 96, 96, 153, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10201, 63, 221, 221, 103, 115, 134, 159, 103, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10202, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10202, 24, 71, 71, 25, 30, 47, 52, 42, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10202, 50, 143, 143, 103, 103, 82, 86, 81, 356); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10203, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10203, 24, 71, 71, 25, 30, 47, 52, 42, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10204, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10204, 24, 71, 71, 25, 30, 47, 52, 42, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10204, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10205, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10205, 24, 71, 71, 25, 30, 47, 52, 42, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10206, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10206, 24, 71, 71, 25, 30, 47, 52, 42, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10206, 50, 138, 138, 85, 103, 86, 103, 83, 355); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10207, 26, 86, 86, 55, 40, 35, 40, 27, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10207, 24, 71, 71, 25, 30, 47, 52, 42, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10208, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10209, 52, 215, 215, 96, 60, 96, 60, 86, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10209, 53, 124, 124, 55, 77, 82, 82, 130, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10210, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10210, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10211, 53, 145, 145, 161, 108, 87, 87, 98, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10211, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10212, 27, 57, 57, 36, 22, 33, 33, 47, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10212, 26, 76, 76, 35, 45, 35, 45, 32, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10213, 35, 82, 82, 56, 45, 52, 52, 80, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10213, 37, 104, 104, 47, 62, 47, 62, 44, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10214, 53, 145, 145, 161, 108, 87, 87, 98, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10214, 52, 143, 143, 117, 80, 117, 106, 138, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10215, 57, 150, 150, 121, 145, 155, 111, 84, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10215, 56, 170, 170, 114, 120, 148, 125, 81, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10215, 56, 153, 153, 125, 103, 92, 159, 69, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10215, 57, 167, 167, 162, 71, 133, 71, 133, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10216, 40, 116, 116, 95, 79, 63, 63, 87, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10216, 39, 121, 121, 100, 77, 100, 77, 54, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10216, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10216, 40, 132, 132, 103, 99, 82, 85, 81, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10217, 37, 97, 97, 81, 47, 81, 47, 44, 374); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10217, 37, 104, 104, 62, 62, 62, 62, 62, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10217, 37, 89, 89, 44, 40, 107, 70, 96, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10218, 61, 184, 184, 94, 112, 94, 142, 161, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10218, 60, 157, 157, 140, 92, 68, 116, 164, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10218, 60, 163, 163, 86, 110, 122, 122, 194, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10219, 59, 178, 178, 120, 108, 102, 114, 132, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10219, 57, 170, 170, 133, 96, 122, 99, 122, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10219, 58, 158, 158, 124, 74, 124, 74, 131, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10219, 58, 164, 164, 130, 165, 124, 107, 95, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10220, 32, 82, 82, 77, 48, 42, 48, 64, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10220, 32, 79, 79, 35, 35, 42, 48, 35, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10221, 41, 102, 102, 97, 60, 52, 60, 81, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10221, 41, 114, 114, 60, 60, 68, 77, 60, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10222, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10222, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10222, 50, 138, 138, 73, 123, 108, 93, 88, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10222, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10222, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10222, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10223, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10223, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10223, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10223, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10223, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10223, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10224, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10224, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10224, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10224, 50, 158, 158, 103, 103, 78, 78, 113, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10224, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10224, 50, 148, 148, 93, 93, 93, 93, 93, 393); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10225, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10225, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10225, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10225, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10225, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10225, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10226, 50, 138, 138, 108, 65, 108, 65, 114, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10226, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10226, 50, 143, 143, 153, 83, 98, 83, 98, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10226, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10226, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10226, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10227, 50, 118, 118, 78, 103, 58, 83, 53, 446); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10227, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10227, 50, 118, 118, 68, 63, 88, 63, 88, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10227, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10227, 50, 128, 128, 73, 73, 73, 73, 73, 195); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10227, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10228, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10228, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10228, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10228, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10228, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10228, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10229, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10229, 50, 153, 153, 148, 123, 93, 103, 68, 4); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10229, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10229, 50, 182, 182, 114, 86, 114, 96, 91, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10229, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10229, 50, 158, 158, 103, 103, 103, 103, 103, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10230, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10230, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10230, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10230, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10230, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10230, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10231, 75, 245, 245, 218, 152, 114, 152, 114, 279); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10232, 65, 241, 241, 138, 151, 132, 151, 93, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10232, 65, 189, 189, 106, 125, 171, 125, 145, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10232, 65, 241, 241, 138, 151, 132, 151, 93, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10233, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10233, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10233, 65, 185, 185, 102, 99, 128, 99, 176, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10234, 65, 221, 221, 119, 123, 151, 145, 106, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10234, 65, 221, 221, 119, 123, 151, 145, 106, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10234, 65, 221, 221, 119, 123, 151, 145, 106, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10235, 12, 34, 34, 22, 17, 16, 16, 17, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10235, 14, 41, 41, 35, 15, 28, 15, 28, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10236, 34, 103, 103, 95, 58, 95, 58, 54, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10237, 41, 123, 123, 114, 68, 114, 68, 64, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10238, 43, 120, 120, 93, 56, 93, 56, 98, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10238, 43, 128, 128, 119, 72, 119, 72, 67, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10239, 48, 147, 147, 108, 70, 127, 99, 113, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10239, 48, 142, 142, 132, 79, 132, 79, 75, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10239, 48, 171, 171, 142, 72, 123, 72, 90, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10240, 36, 104, 104, 104, 79, 82, 57, 57, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10241, 21, 67, 67, 50, 41, 37, 37, 41, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10242, 65, 176, 176, 115, 138, 128, 125, 179, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10242, 65, 176, 176, 115, 138, 128, 125, 179, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10242, 65, 176, 176, 115, 138, 128, 125, 179, 246); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10243, 43, 132, 132, 97, 63, 115, 89, 102, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10243, 43, 145, 145, 106, 72, 97, 72, 89, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10244, 65, 160, 160, 90, 90, 90, 90, 90, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10244, 65, 160, 160, 90, 90, 90, 90, 90, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10244, 65, 160, 160, 90, 90, 90, 90, 90, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10245, 65, 195, 195, 119, 145, 119, 164, 132, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10245, 65, 227, 227, 116, 136, 122, 141, 94, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10245, 65, 195, 195, 119, 145, 119, 164, 132, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10246, 65, 221, 221, 180, 132, 112, 119, 148, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10246, 65, 215, 215, 171, 132, 158, 132, 151, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10246, 65, 182, 182, 145, 177, 86, 177, 103, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10247, 67, 194, 194, 102, 116, 156, 143, 122, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10247, 67, 194, 194, 156, 143, 102, 116, 122, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10248, 41, 118, 118, 91, 60, 91, 60, 106, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10249, 66, 152, 152, 101, 68, 68, 68, 140, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10249, 66, 172, 172, 154, 101, 74, 127, 180, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10249, 66, 184, 184, 144, 94, 144, 94, 168, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10250, 25, 75, 75, 36, 39, 36, 39, 41, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10251, 33, 95, 95, 45, 49, 45, 49, 53, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10252, 41, 127, 127, 91, 71, 91, 71, 100, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10253, 67, 201, 201, 145, 113, 145, 113, 160, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10253, 67, 181, 181, 149, 122, 109, 189, 82, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10254, 26, 73, 73, 53, 58, 27, 27, 22, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10255, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10256, 47, 139, 139, 120, 120, 68, 59, 40, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10256, 47, 139, 139, 120, 120, 68, 59, 40, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10257, 63, 164, 164, 147, 172, 84, 84, 71, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10257, 63, 158, 158, 178, 94, 71, 166, 137, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10258, 26, 78, 78, 60, 40, 60, 40, 69, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10259, 34, 99, 99, 77, 51, 77, 51, 89, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10260, 48, 136, 136, 106, 70, 106, 70, 124, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10261, 62, 143, 143, 95, 64, 64, 64, 132, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10261, 62, 162, 162, 145, 95, 70, 120, 169, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10261, 62, 173, 173, 136, 89, 136, 89, 158, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10262, 26, 77, 77, 54, 46, 40, 36, 48, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10263, 34, 98, 98, 47, 51, 47, 51, 54, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10264, 48, 147, 147, 105, 82, 105, 82, 116, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10265, 63, 190, 190, 137, 107, 137, 107, 151, 291); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10265, 63, 171, 171, 141, 115, 103, 178, 78, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10266, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10266, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10266, 50, 113, 113, 68, 183, 53, 68, 93, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10266, 50, 128, 128, 73, 143, 103, 103, 53, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10266, 50, 128, 128, 103, 118, 33, 68, 33, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10266, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10268, 50, 158, 158, 118, 105, 83, 105, 98, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10268, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10268, 50, 148, 148, 118, 148, 88, 98, 68, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10268, 50, 136, 136, 132, 135, 71, 71, 132, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10269, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10269, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10269, 50, 138, 138, 78, 113, 168, 113, 103, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10269, 50, 163, 163, 138, 103, 128, 103, 73, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10270, 50, 148, 148, 100, 83, 120, 83, 131, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10270, 50, 136, 136, 132, 135, 71, 71, 132, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10271, 50, 153, 153, 163, 88, 135, 88, 133, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10271, 50, 163, 163, 138, 103, 128, 103, 73, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10272, 50, 158, 158, 118, 105, 83, 105, 98, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10272, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10272, 50, 148, 148, 118, 148, 88, 98, 68, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10273, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10273, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10273, 50, 138, 138, 78, 113, 168, 113, 103, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10274, 50, 158, 158, 118, 105, 83, 105, 98, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10274, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10275, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10275, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10276, 26, 89, 89, 68, 58, 35, 40, 35, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10277, 50, 158, 158, 118, 105, 83, 105, 98, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10277, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10277, 50, 148, 148, 118, 148, 88, 98, 68, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10277, 50, 136, 136, 132, 135, 71, 71, 132, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10278, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10278, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10278, 50, 138, 138, 78, 113, 168, 113, 103, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10278, 50, 163, 163, 138, 103, 128, 103, 73, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10279, 50, 148, 148, 100, 83, 120, 83, 131, 242); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10279, 50, 136, 136, 132, 135, 71, 71, 132, 297); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10280, 50, 153, 153, 163, 88, 135, 88, 133, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10280, 50, 163, 163, 138, 103, 128, 103, 73, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10281, 26, 81, 81, 68, 68, 40, 35, 24, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10282, 50, 158, 158, 118, 105, 83, 105, 98, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10282, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10282, 50, 148, 148, 118, 148, 88, 98, 68, 307); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10283, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10283, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10283, 50, 138, 138, 78, 113, 168, 113, 103, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10284, 50, 158, 158, 118, 105, 83, 105, 98, 329); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10284, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10285, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10285, 50, 154, 154, 170, 113, 83, 93, 120, 322); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10288, 54, 148, 148, 137, 89, 154, 89, 137, 628); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10288, 54, 202, 202, 94, 137, 83, 127, 110, 292); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10290, 38, 103, 103, 75, 83, 37, 37, 30, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10290, 32, 88, 88, 51, 51, 70, 51, 35, 254); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10291, 52, 126, 126, 75, 118, 48, 113, 34, 298); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10291, 40, 124, 124, 79, 79, 119, 95, 51, 260); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10296, 11, 30, 30, 16, 24, 29, 21, 18, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10296, 11, 33, 33, 15, 19, 21, 21, 30, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10297, 12, 45, 45, 28, 21, 18, 21, 15, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10297, 12, 35, 35, 16, 21, 22, 22, 33, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10297, 12, 35, 35, 24, 32, 23, 20, 17, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10298, 22, 75, 75, 48, 34, 30, 34, 23, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10298, 22, 86, 86, 59, 45, 41, 56, 34, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10298, 22, 75, 75, 48, 34, 30, 34, 23, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10299, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10300, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10300, 20, 53, 53, 38, 50, 36, 30, 26, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10300, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10300, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10301, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10301, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10301, 36, 111, 111, 72, 71, 76, 89, 89, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10302, 34, 90, 90, 75, 54, 61, 61, 78, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10302, 34, 82, 82, 52, 46, 58, 51, 61, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10302, 34, 82, 82, 45, 44, 51, 61, 61, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10302, 34, 93, 93, 64, 47, 64, 51, 58, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10303, 41, 119, 119, 101, 77, 85, 85, 105, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10304, 37, 101, 101, 70, 51, 70, 55, 62, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10304, 37, 88, 88, 48, 47, 55, 66, 66, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10305, 11, 42, 42, 26, 19, 17, 19, 14, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10305, 11, 42, 42, 26, 19, 17, 19, 14, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10306, 19, 70, 70, 36, 36, 27, 27, 17, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10307, 36, 105, 105, 61, 68, 79, 71, 46, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10308, 34, 110, 110, 71, 51, 44, 51, 34, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10308, 34, 127, 127, 88, 68, 61, 85, 51, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10309, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10309, 33, 124, 124, 86, 66, 59, 82, 49, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10309, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10310, 7, 23, 23, 12, 17, 20, 15, 13, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10310, 11, 33, 33, 15, 19, 21, 21, 30, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10310, 7, 23, 23, 12, 17, 20, 15, 13, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10310, 9, 26, 26, 14, 20, 25, 18, 16, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10311, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10311, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10311, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10312, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10312, 20, 53, 53, 24, 32, 34, 34, 52, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10312, 20, 47, 47, 26, 40, 50, 34, 30, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10312, 20, 53, 53, 38, 50, 36, 30, 26, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10313, 34, 90, 90, 75, 54, 61, 61, 78, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10313, 34, 82, 82, 52, 46, 58, 51, 61, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10313, 34, 82, 82, 45, 44, 51, 61, 61, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10313, 34, 93, 93, 64, 47, 64, 51, 58, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10314, 41, 119, 119, 101, 77, 85, 85, 105, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10315, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10315, 36, 86, 86, 47, 46, 53, 64, 64, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10315, 36, 111, 111, 72, 71, 76, 89, 89, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10316, 22, 75, 75, 48, 34, 30, 34, 23, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10316, 22, 86, 86, 59, 45, 41, 56, 34, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10316, 22, 75, 75, 48, 34, 30, 34, 23, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10317, 28, 106, 106, 73, 57, 51, 71, 43, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10317, 28, 106, 106, 73, 57, 51, 71, 43, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10317, 28, 106, 106, 73, 57, 51, 71, 43, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10318, 11, 30, 30, 16, 24, 29, 21, 18, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10318, 11, 33, 33, 15, 19, 21, 21, 30, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10319, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10320, 12, 45, 45, 28, 21, 18, 21, 15, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10320, 12, 35, 35, 16, 21, 22, 22, 33, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10320, 12, 35, 35, 24, 32, 23, 20, 17, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10321, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10321, 100, 316, 316, 201, 221, 251, 231, 161, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10322, 37, 101, 101, 70, 51, 70, 55, 62, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10322, 37, 88, 88, 48, 47, 55, 66, 66, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10323, 53, 156, 156, 114, 172, 114, 98, 45, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10324, 11, 42, 42, 26, 19, 17, 19, 14, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10324, 11, 42, 42, 26, 19, 17, 19, 14, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10325, 19, 70, 70, 36, 36, 27, 27, 17, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10326, 53, 135, 135, 77, 151, 108, 108, 55, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10327, 47, 135, 135, 78, 87, 101, 92, 59, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10328, 44, 140, 140, 91, 64, 56, 64, 42, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10328, 44, 162, 162, 113, 86, 78, 108, 64, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10329, 39, 82, 82, 46, 73, 93, 61, 54, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10329, 41, 151, 151, 105, 81, 73, 101, 60, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10329, 39, 82, 82, 46, 73, 93, 61, 54, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10330, 7, 23, 23, 12, 17, 20, 15, 13, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10330, 11, 33, 33, 15, 19, 21, 21, 30, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10330, 7, 23, 23, 12, 17, 20, 15, 13, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10330, 9, 26, 26, 14, 20, 25, 18, 16, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10331, 40, 84, 84, 47, 75, 95, 63, 55, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10331, 40, 84, 84, 47, 75, 95, 63, 55, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10331, 40, 84, 84, 47, 75, 95, 63, 55, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10332, 53, 145, 145, 87, 66, 92, 71, 61, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10333, 25, 64, 64, 54, 64, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10333, 25, 59, 59, 31, 29, 64, 31, 54, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10333, 25, 64, 64, 29, 39, 41, 41, 64, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10333, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10333, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10333, 30, 86, 86, 39, 63, 51, 42, 39, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10334, 25, 64, 64, 54, 64, 29, 29, 24, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10334, 25, 59, 59, 31, 29, 64, 31, 54, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10334, 25, 64, 64, 29, 39, 41, 41, 64, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10334, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10334, 30, 74, 74, 54, 72, 51, 42, 36, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10334, 30, 86, 86, 39, 63, 51, 42, 39, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10335, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10335, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10335, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10335, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10335, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10335, 50, 128, 128, 118, 203, 108, 68, 93, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10336, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10336, 50, 138, 138, 88, 83, 153, 98, 133, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10336, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10336, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10336, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10336, 50, 128, 128, 118, 203, 108, 68, 93, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10337, 50, 103, 103, 58, 93, 118, 78, 68, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10337, 50, 123, 123, 73, 68, 138, 78, 118, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10337, 55, 156, 156, 90, 101, 118, 107, 68, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10337, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10337, 50, 113, 113, 83, 67, 63, 77, 78, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10337, 55, 150, 150, 79, 101, 112, 112, 178, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10338, 51, 145, 145, 84, 94, 110, 99, 64, 585); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10338, 52, 132, 132, 91, 117, 60, 60, 39, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10338, 51, 140, 140, 74, 94, 104, 104, 166, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10338, 52, 153, 153, 111, 96, 91, 96, 76, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10338, 51, 176, 176, 104, 130, 64, 94, 125, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10338, 52, 143, 143, 86, 86, 112, 112, 112, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10339, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10339, 52, 137, 137, 80, 112, 91, 112, 60, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10339, 53, 172, 172, 108, 119, 135, 124, 87, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10339, 50, 268, 268, 56, 81, 56, 81, 56, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10339, 52, 163, 163, 96, 91, 106, 148, 127, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10339, 53, 150, 150, 108, 172, 66, 98, 98, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10340, 55, 178, 178, 112, 123, 140, 129, 90, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10340, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10340, 50, 153, 153, 113, 163, 83, 83, 63, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10340, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10340, 55, 139, 139, 90, 129, 156, 101, 101, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10340, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10341, 50, 143, 143, 153, 83, 118, 133, 88, 44); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10341, 50, 136, 136, 87, 81, 103, 88, 103, 19); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10341, 50, 151, 151, 99, 98, 104, 123, 123, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10341, 50, 143, 143, 118, 80, 123, 108, 116, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10341, 50, 136, 136, 87, 81, 103, 88, 103, 357); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10341, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10342, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10342, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10342, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10342, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10342, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10342, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10343, 100, 346, 346, 341, 321, 241, 221, 221, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10343, 100, 326, 326, 241, 161, 221, 161, 201, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10343, 100, 296, 296, 221, 141, 261, 201, 231, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10343, 100, 376, 376, 271, 211, 221, 191, 241, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10343, 100, 296, 296, 151, 181, 151, 231, 261, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10343, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10344, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10344, 50, 168, 168, 83, 83, 63, 63, 63, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10344, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10344, 50, 123, 123, 72, 88, 72, 88, 68, 352); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10344, 50, 138, 138, 103, 73, 73, 73, 63, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10344, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10345, 100, 226, 226, 181, 301, 161, 301, 91, 113); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10345, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10345, 100, 306, 306, 241, 441, 141, 241, 141, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10345, 100, 306, 306, 281, 301, 151, 171, 131, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10345, 100, 306, 306, 191, 341, 191, 341, 141, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10345, 100, 306, 306, 241, 441, 141, 241, 141, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10346, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10346, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10346, 50, 148, 148, 93, 63, 83, 63, 83, 223); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10346, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10346, 50, 144, 144, 64, 100, 84, 110, 46, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10346, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10347, 100, 356, 356, 341, 221, 341, 221, 231, 394); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10347, 100, 306, 306, 201, 221, 261, 301, 261, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10347, 100, 446, 446, 361, 241, 231, 171, 241, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10347, 100, 326, 326, 211, 191, 271, 241, 271, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10347, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10347, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10348, 100, 346, 346, 241, 221, 341, 321, 221, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10348, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10348, 100, 296, 296, 231, 231, 231, 231, 211, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10348, 100, 306, 306, 181, 181, 221, 241, 181, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10348, 100, 286, 286, 191, 161, 251, 161, 251, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10348, 100, 148, 148, 221, 131, 101, 101, 121, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10349, 100, 268, 268, 221, 131, 141, 141, 361, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10349, 100, 326, 326, 301, 191, 191, 191, 151, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10349, 100, 266, 266, 191, 211, 241, 211, 271, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10349, 100, 326, 326, 301, 201, 171, 211, 151, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10349, 100, 336, 336, 291, 199, 161, 241, 203, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10349, 100, 526, 526, 107, 157, 107, 157, 107, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10350, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10350, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10350, 50, 143, 143, 96, 78, 70, 98, 108, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10350, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10350, 50, 148, 148, 118, 108, 78, 88, 93, 112); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10350, 50, 148, 148, 78, 88, 118, 108, 93, 111); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10351, 100, 346, 346, 341, 321, 241, 221, 221, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10351, 100, 296, 296, 201, 211, 261, 221, 141, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10351, 100, 326, 326, 241, 161, 221, 161, 201, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10351, 100, 306, 306, 281, 181, 261, 181, 201, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10351, 100, 306, 306, 241, 201, 201, 201, 241, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10351, 100, 366, 366, 201, 221, 231, 221, 171, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10352, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10352, 100, 356, 356, 301, 281, 131, 131, 121, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10352, 100, 266, 266, 211, 161, 141, 141, 291, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10352, 100, 306, 306, 221, 201, 301, 261, 261, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10352, 100, 306, 306, 311, 301, 231, 221, 181, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10352, 100, 366, 366, 201, 221, 231, 221, 171, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10353, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10353, 50, 103, 103, 43, 38, 128, 78, 113, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10353, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10353, 50, 113, 113, 78, 58, 53, 53, 58, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10353, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10353, 50, 150, 150, 83, 53, 43, 53, 48, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10354, 100, 306, 306, 221, 201, 301, 261, 261, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10354, 100, 306, 306, 311, 301, 231, 221, 181, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10354, 100, 336, 336, 311, 201, 261, 201, 241, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10354, 100, 148, 148, 221, 131, 101, 101, 121, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10354, 100, 346, 346, 191, 271, 221, 271, 211, 386); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10354, 100, 526, 526, 107, 157, 107, 157, 107, 412); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10355, 100, 268, 268, 221, 131, 141, 141, 361, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10355, 100, 256, 256, 121, 211, 201, 251, 121, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10355, 100, 316, 316, 251, 241, 199, 207, 197, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10355, 100, 306, 306, 291, 191, 121, 231, 211, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10355, 100, 326, 326, 301, 191, 191, 191, 151, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10355, 100, 286, 286, 301, 241, 151, 201, 171, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10356, 100, 346, 346, 241, 221, 341, 321, 221, 554); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10356, 100, 306, 306, 181, 181, 221, 241, 181, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10356, 100, 296, 296, 231, 231, 231, 231, 211, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10356, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10356, 100, 256, 256, 209, 251, 269, 191, 145, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10356, 100, 306, 306, 141, 241, 241, 441, 141, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10357, 100, 346, 346, 341, 321, 241, 221, 221, 440); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10357, 100, 326, 326, 241, 161, 221, 161, 201, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10357, 100, 296, 296, 201, 211, 261, 221, 141, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10357, 100, 296, 296, 221, 141, 261, 201, 231, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10357, 100, 376, 376, 271, 211, 221, 191, 241, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10357, 100, 306, 306, 241, 441, 141, 241, 141, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10358, 100, 306, 306, 241, 441, 141, 241, 141, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10358, 100, 326, 326, 241, 161, 221, 161, 201, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10358, 100, 306, 306, 281, 301, 151, 171, 131, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10358, 100, 266, 266, 141, 181, 201, 201, 321, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10358, 100, 296, 296, 221, 141, 261, 201, 231, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10358, 100, 256, 256, 141, 131, 311, 231, 281, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10359, 50, 118, 118, 68, 58, 88, 78, 93, 363); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10359, 50, 123, 123, 83, 63, 93, 73, 68, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10359, 50, 128, 128, 93, 73, 73, 73, 63, 372); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10359, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10359, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10359, 50, 173, 173, 46, 71, 46, 71, 46, 447); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10360, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10360, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10360, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10360, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10360, 50, 173, 173, 88, 133, 83, 153, 88, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10360, 50, 173, 173, 103, 128, 63, 93, 123, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10361, 5, 20, 20, 11, 10, 10, 11, 8, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10362, 17, 62, 62, 36, 32, 26, 29, 41, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10362, 17, 53, 53, 21, 21, 23, 30, 28, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10363, 18, 65, 65, 38, 34, 27, 31, 43, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10363, 18, 56, 56, 22, 22, 24, 31, 29, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10363, 18, 45, 45, 27, 43, 22, 22, 25, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10364, 28, 95, 95, 57, 50, 40, 45, 65, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10364, 28, 104, 104, 43, 43, 57, 68, 54, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10364, 28, 82, 82, 65, 40, 43, 43, 104, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10364, 28, 48, 48, 65, 40, 31, 31, 37, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10365, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10365, 50, 178, 178, 73, 73, 99, 119, 93, 390); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10365, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10365, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10366, 40, 140, 140, 83, 103, 51, 75, 99, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10366, 40, 122, 122, 95, 69, 87, 71, 87, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10366, 40, 176, 176, 75, 55, 87, 59, 55, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10366, 40, 140, 140, 87, 87, 71, 71, 47, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10366, 40, 80, 80, 27, 203, 27, 203, 23, 441); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10367, 8, 27, 27, 20, 18, 15, 13, 13, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10367, 8, 30, 30, 20, 15, 14, 14, 12, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10367, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10368, 50, 156, 156, 107, 101, 132, 108, 123, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10368, 50, 173, 173, 93, 96, 118, 113, 83, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10368, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10368, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10368, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10368, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10369, 70, 189, 189, 100, 128, 142, 142, 226, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10369, 70, 217, 217, 142, 142, 142, 142, 142, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10369, 70, 217, 217, 135, 240, 135, 240, 100, 439); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10369, 70, 217, 217, 170, 310, 100, 170, 100, 438); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10369, 70, 106, 106, 156, 93, 72, 72, 86, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10369, 70, 217, 217, 100, 170, 170, 310, 100, 413); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10370, 64, 180, 180, 143, 181, 136, 117, 104, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10370, 63, 146, 146, 78, 90, 65, 65, 65, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10370, 63, 164, 164, 147, 172, 84, 84, 71, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10370, 63, 158, 158, 109, 141, 71, 71, 46, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10370, 63, 183, 183, 153, 172, 65, 109, 65, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10370, 63, 133, 133, 84, 197, 84, 141, 65, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10371, 23, 68, 68, 54, 45, 40, 68, 31, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10371, 23, 87, 87, 36, 50, 40, 50, 36, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10371, 23, 71, 71, 43, 33, 47, 33, 56, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10372, 29, 87, 87, 58, 76, 35, 53, 64, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10372, 30, 86, 86, 69, 57, 51, 87, 39, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10373, 16, 41, 41, 23, 33, 33, 18, 29, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10373, 16, 41, 41, 31, 42, 25, 18, 23, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10374, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10374, 29, 66, 66, 38, 56, 56, 29, 50, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10374, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10375, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10375, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10376, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10376, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10377, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10377, 30, 89, 89, 54, 54, 45, 45, 69, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10378, 27, 62, 62, 36, 52, 52, 28, 47, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10378, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10378, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10378, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10379, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10379, 29, 66, 66, 53, 73, 41, 29, 38, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10379, 29, 95, 95, 68, 53, 53, 61, 54, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10380, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10380, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10380, 27, 62, 62, 39, 44, 52, 44, 60, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10380, 27, 62, 62, 36, 52, 52, 28, 47, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10380, 27, 89, 89, 52, 49, 57, 79, 68, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10381, 31, 70, 70, 56, 78, 44, 31, 40, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10381, 31, 83, 83, 75, 127, 68, 44, 59, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10382, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10382, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10382, 28, 78, 78, 51, 68, 68, 40, 62, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10382, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10383, 35, 78, 78, 49, 56, 66, 56, 77, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10384, 33, 91, 91, 59, 79, 79, 46, 72, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10384, 33, 107, 107, 63, 59, 69, 96, 82, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10385, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10386, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10386, 33, 93, 93, 58, 69, 59, 69, 55, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10387, 32, 95, 95, 58, 58, 48, 48, 74, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10387, 32, 79, 79, 42, 38, 48, 80, 61, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10387, 32, 88, 88, 58, 77, 77, 45, 70, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10388, 23, 71, 71, 56, 47, 38, 38, 52, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10389, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10389, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10390, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10391, 21, 51, 51, 39, 54, 31, 23, 29, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10391, 19, 51, 51, 27, 25, 30, 49, 38, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10391, 19, 66, 66, 38, 36, 42, 57, 49, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10392, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10393, 22, 68, 68, 32, 37, 32, 43, 32, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10394, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10395, 21, 51, 51, 31, 35, 41, 35, 48, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10396, 16, 44, 44, 23, 21, 26, 42, 33, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10396, 16, 44, 44, 23, 21, 26, 42, 33, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10396, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10396, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10396, 19, 49, 49, 36, 25, 36, 25, 36, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10396, 19, 47, 47, 28, 32, 38, 32, 44, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10397, 32, 75, 75, 58, 38, 58, 38, 58, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10397, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10398, 26, 73, 73, 48, 63, 63, 37, 58, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10398, 28, 70, 70, 37, 34, 43, 71, 54, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10398, 30, 98, 98, 57, 54, 63, 87, 75, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10398, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10399, 20, 49, 49, 30, 34, 40, 34, 46, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10399, 20, 61, 61, 42, 46, 52, 46, 58, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10400, 18, 50, 50, 35, 33, 24, 29, 34, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10400, 20, 55, 55, 39, 36, 26, 32, 37, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10400, 20, 69, 69, 49, 38, 38, 44, 39, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10401, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10401, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10402, 32, 91, 91, 64, 70, 80, 70, 90, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10402, 32, 91, 91, 64, 70, 80, 70, 90, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10403, 23, 55, 55, 61, 54, 24, 24, 36, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10404, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10404, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10404, 32, 136, 136, 70, 67, 70, 77, 54, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10405, 28, 84, 84, 40, 45, 40, 54, 40, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10405, 28, 84, 84, 40, 45, 40, 54, 40, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10405, 28, 84, 84, 40, 45, 40, 54, 40, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10405, 28, 98, 98, 54, 59, 54, 68, 54, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10406, 32, 72, 72, 42, 61, 61, 32, 54, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10406, 32, 72, 72, 42, 61, 61, 32, 54, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10406, 35, 96, 96, 63, 84, 84, 49, 77, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10407, 19, 47, 47, 28, 32, 38, 32, 44, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10407, 19, 47, 47, 36, 49, 28, 21, 27, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10408, 18, 45, 45, 34, 47, 27, 20, 25, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10408, 18, 45, 45, 34, 47, 27, 20, 25, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10408, 20, 60, 60, 37, 44, 38, 44, 35, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10409, 29, 104, 104, 64, 64, 53, 53, 35, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10409, 29, 92, 92, 76, 58, 76, 58, 41, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10409, 32, 114, 114, 70, 70, 58, 58, 38, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10410, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10410, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10411, 20, 57, 57, 33, 31, 38, 32, 34, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10411, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10412, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10412, 34, 90, 90, 81, 139, 75, 47, 64, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10413, 21, 51, 51, 29, 41, 41, 23, 37, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10413, 21, 51, 51, 29, 41, 41, 23, 37, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10414, 25, 66, 66, 47, 44, 31, 39, 45, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10414, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10414, 25, 66, 66, 47, 44, 31, 39, 45, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10415, 25, 54, 54, 19, 41, 21, 24, 54, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10415, 25, 64, 64, 34, 31, 39, 64, 49, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10415, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10416, 35, 124, 124, 105, 72, 59, 87, 74, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10417, 25, 79, 79, 24, 39, 24, 39, 34, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10417, 25, 66, 66, 47, 44, 31, 39, 45, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10417, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10418, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10418, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10419, 35, 89, 89, 64, 59, 42, 52, 61, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10420, 34, 83, 83, 37, 37, 54, 37, 75, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10420, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10421, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10421, 34, 83, 83, 37, 37, 54, 37, 75, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10422, 33, 101, 101, 30, 49, 30, 49, 43, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10422, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10422, 33, 120, 120, 49, 69, 56, 69, 49, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10423, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10424, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10424, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10425, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10426, 33, 84, 84, 76, 30, 59, 30, 59, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10426, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10426, 33, 84, 84, 76, 30, 59, 30, 59, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10427, 34, 86, 86, 62, 58, 41, 51, 60, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10427, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10428, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10429, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10429, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10430, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10430, 34, 117, 117, 58, 64, 68, 64, 47, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10431, 35, 106, 106, 101, 45, 84, 45, 84, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10432, 33, 101, 101, 30, 49, 30, 49, 43, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10432, 33, 140, 140, 63, 39, 63, 39, 56, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10432, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10433, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10433, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10434, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10434, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10435, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10436, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10437, 41, 172, 172, 77, 48, 77, 48, 68, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10438, 43, 94, 94, 59, 67, 80, 67, 93, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10438, 43, 180, 180, 80, 50, 80, 50, 72, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10439, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10439, 45, 188, 188, 84, 52, 84, 52, 75, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10439, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10440, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10440, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10441, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10442, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10442, 33, 104, 104, 41, 41, 53, 53, 61, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10442, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10443, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10443, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10443, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10444, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10444, 34, 93, 93, 61, 81, 81, 47, 75, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10445, 27, 71, 71, 63, 25, 49, 25, 49, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10446, 27, 71, 71, 63, 25, 49, 25, 49, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10447, 24, 64, 64, 45, 42, 30, 37, 43, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10447, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10447, 24, 76, 76, 23, 37, 23, 37, 32, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10447, 24, 105, 105, 47, 30, 47, 30, 42, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10448, 27, 116, 116, 52, 33, 52, 33, 47, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10449, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10449, 32, 136, 136, 61, 38, 61, 38, 54, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10449, 32, 98, 98, 42, 48, 51, 48, 32, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10450, 32, 82, 82, 74, 29, 58, 29, 58, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10450, 32, 82, 82, 74, 29, 58, 29, 58, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10450, 32, 98, 98, 42, 48, 51, 48, 32, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10450, 32, 98, 98, 93, 42, 77, 42, 77, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10451, 35, 99, 99, 52, 87, 77, 66, 63, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10452, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10452, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10453, 35, 89, 89, 80, 31, 63, 31, 63, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10454, 34, 86, 86, 62, 58, 41, 51, 60, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10454, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10455, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10455, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10455, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10456, 35, 78, 78, 45, 66, 66, 35, 59, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10457, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10457, 33, 140, 140, 63, 39, 63, 39, 56, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10457, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10458, 35, 87, 87, 38, 56, 45, 63, 85, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10459, 26, 60, 60, 35, 50, 50, 27, 45, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10459, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10460, 33, 104, 104, 41, 41, 53, 53, 61, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10460, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10460, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10461, 27, 71, 71, 63, 25, 49, 25, 49, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10462, 30, 92, 92, 87, 39, 72, 39, 72, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10463, 33, 101, 101, 96, 43, 79, 43, 79, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10464, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10464, 36, 109, 109, 104, 46, 86, 46, 86, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10465, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10465, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10466, 24, 64, 64, 45, 42, 30, 37, 43, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10466, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10466, 24, 64, 64, 45, 42, 30, 37, 43, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10467, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10468, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10469, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10469, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10470, 34, 86, 86, 62, 58, 41, 51, 60, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10471, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10472, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10472, 33, 140, 140, 63, 39, 63, 39, 56, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10473, 34, 103, 103, 98, 44, 81, 44, 81, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10474, 34, 124, 124, 51, 71, 58, 71, 51, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10475, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10475, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10475, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10476, 25, 64, 64, 34, 31, 39, 64, 49, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10476, 25, 66, 66, 59, 24, 46, 24, 46, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10477, 31, 80, 80, 71, 28, 56, 28, 56, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10477, 31, 76, 76, 34, 34, 50, 34, 68, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10477, 31, 80, 80, 71, 28, 56, 28, 56, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10478, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10479, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10480, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10480, 25, 66, 66, 47, 44, 31, 39, 45, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10481, 26, 66, 66, 35, 32, 40, 66, 50, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10482, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10482, 24, 61, 61, 32, 30, 37, 61, 47, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10483, 34, 117, 117, 58, 64, 68, 64, 47, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10484, 34, 103, 103, 98, 44, 81, 44, 81, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10485, 34, 103, 103, 30, 51, 30, 51, 44, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10486, 35, 113, 113, 66, 63, 73, 101, 87, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10487, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10487, 33, 107, 107, 63, 59, 69, 96, 82, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10488, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10489, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10490, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10491, 34, 144, 144, 64, 41, 64, 41, 58, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10492, 38, 160, 160, 71, 45, 71, 45, 64, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10493, 41, 172, 172, 77, 48, 77, 48, 68, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10494, 43, 94, 94, 59, 67, 80, 67, 93, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10494, 43, 180, 180, 80, 50, 80, 50, 72, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10495, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10495, 45, 188, 188, 84, 52, 84, 52, 75, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10495, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10496, 26, 86, 86, 50, 48, 55, 76, 66, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10497, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10498, 33, 84, 84, 61, 56, 39, 49, 58, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10498, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10499, 34, 103, 103, 44, 51, 54, 51, 34, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10500, 26, 112, 112, 50, 32, 50, 32, 45, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10501, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10501, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10502, 34, 86, 86, 78, 30, 61, 30, 61, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10503, 33, 74, 74, 43, 63, 63, 33, 56, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10503, 33, 91, 91, 59, 79, 79, 46, 72, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10504, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10505, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10506, 26, 68, 68, 49, 45, 32, 40, 47, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10507, 33, 101, 101, 30, 49, 30, 49, 43, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10507, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10508, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10509, 15, 42, 42, 22, 20, 25, 40, 31, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10510, 33, 101, 101, 43, 49, 53, 49, 33, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10510, 33, 101, 101, 96, 43, 79, 43, 79, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10511, 34, 97, 97, 51, 85, 75, 64, 61, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10512, 34, 120, 120, 102, 70, 58, 85, 72, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10513, 34, 86, 86, 78, 30, 61, 30, 61, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10514, 33, 107, 107, 63, 59, 69, 96, 82, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10514, 33, 140, 140, 63, 39, 63, 39, 56, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10515, 34, 110, 110, 79, 61, 61, 71, 63, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10516, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10516, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10517, 33, 81, 81, 43, 39, 49, 82, 63, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10517, 33, 81, 81, 36, 36, 53, 36, 72, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10518, 34, 76, 76, 44, 64, 64, 34, 58, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10519, 34, 85, 85, 37, 54, 44, 61, 83, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10520, 34, 85, 85, 37, 54, 44, 61, 83, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10521, 25, 59, 59, 34, 49, 49, 26, 44, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10521, 25, 79, 79, 24, 39, 24, 39, 34, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10522, 34, 107, 107, 43, 43, 55, 55, 62, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10523, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10524, 30, 92, 92, 87, 39, 72, 39, 72, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10525, 33, 101, 101, 96, 43, 79, 43, 79, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10526, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10526, 36, 109, 109, 104, 46, 86, 46, 86, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10527, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10527, 39, 117, 117, 112, 50, 93, 50, 93, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10528, 35, 92, 92, 54, 51, 63, 52, 56, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10528, 36, 94, 94, 55, 52, 64, 53, 57, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10528, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10529, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10529, 30, 98, 98, 71, 54, 54, 63, 56, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10530, 49, 155, 155, 112, 86, 86, 101, 89, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10530, 49, 155, 155, 112, 86, 86, 101, 89, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10531, 36, 105, 105, 50, 57, 50, 68, 50, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10531, 36, 105, 105, 50, 57, 50, 68, 50, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10531, 36, 123, 123, 68, 75, 68, 86, 68, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10532, 27, 68, 68, 41, 36, 36, 36, 63, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10532, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10532, 27, 89, 89, 64, 49, 49, 57, 51, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10532, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10532, 27, 68, 68, 41, 36, 36, 36, 63, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10533, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10533, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10533, 27, 62, 62, 39, 44, 52, 44, 60, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10533, 27, 62, 62, 36, 52, 52, 28, 47, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10533, 27, 89, 89, 52, 49, 57, 79, 68, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10534, 31, 70, 70, 56, 78, 44, 31, 40, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10534, 31, 83, 83, 75, 127, 68, 44, 59, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10535, 100, 346, 346, 181, 181, 171, 171, 131, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10535, 100, 326, 326, 191, 191, 221, 241, 181, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10536, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10536, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10536, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10537, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10537, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10537, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10537, 28, 78, 78, 51, 68, 68, 40, 62, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10538, 52, 137, 137, 91, 122, 122, 70, 112, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10538, 52, 137, 137, 91, 122, 122, 70, 112, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10538, 52, 137, 137, 91, 122, 122, 70, 112, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10538, 52, 137, 137, 91, 122, 122, 70, 112, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10539, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10539, 29, 66, 66, 53, 73, 41, 29, 38, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10539, 29, 95, 95, 68, 53, 53, 61, 54, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10540, 35, 78, 78, 49, 56, 66, 56, 77, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10541, 49, 150, 150, 59, 59, 77, 77, 88, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10541, 49, 199, 199, 79, 79, 97, 97, 88, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10542, 27, 62, 62, 36, 52, 52, 28, 47, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10542, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10542, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10542, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10543, 38, 107, 107, 75, 83, 94, 83, 106, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10544, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10545, 35, 78, 78, 63, 87, 49, 35, 45, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10545, 35, 92, 92, 84, 143, 77, 49, 66, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10545, 38, 106, 106, 66, 79, 68, 79, 62, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10546, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10546, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10547, 37, 104, 104, 73, 81, 92, 81, 103, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10548, 50, 138, 138, 98, 108, 123, 108, 138, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10549, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10549, 33, 93, 93, 58, 69, 59, 69, 55, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10550, 16, 41, 41, 23, 33, 33, 18, 29, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10550, 16, 41, 41, 31, 42, 25, 18, 23, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10551, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10551, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10552, 30, 74, 74, 45, 39, 39, 39, 69, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10552, 30, 89, 89, 54, 54, 45, 45, 69, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10553, 49, 140, 140, 86, 86, 71, 71, 110, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10553, 49, 164, 164, 115, 115, 91, 110, 91, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10554, 31, 76, 76, 47, 40, 40, 40, 71, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10554, 31, 101, 101, 73, 56, 56, 65, 58, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10555, 49, 140, 140, 86, 86, 71, 71, 110, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10555, 49, 155, 155, 112, 86, 86, 101, 89, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10556, 49, 130, 130, 150, 135, 71, 71, 96, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10556, 49, 134, 134, 84, 101, 86, 101, 79, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10557, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10558, 54, 159, 159, 46, 78, 46, 78, 67, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10559, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10559, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10559, 30, 80, 80, 72, 123, 66, 42, 57, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10560, 29, 75, 75, 54, 50, 35, 44, 51, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10560, 29, 66, 66, 38, 56, 56, 29, 50, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10560, 29, 66, 66, 41, 47, 56, 47, 64, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10561, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10561, 30, 68, 68, 54, 75, 42, 30, 39, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10562, 32, 95, 95, 58, 58, 48, 48, 74, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10562, 32, 79, 79, 42, 38, 48, 80, 61, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10562, 32, 88, 88, 58, 77, 77, 45, 70, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10563, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10564, 55, 189, 189, 162, 111, 90, 134, 113, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10565, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10565, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10565, 30, 83, 83, 54, 72, 72, 42, 66, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10566, 33, 91, 91, 59, 79, 79, 46, 72, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10566, 33, 107, 107, 63, 59, 69, 96, 82, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10567, 100, 276, 276, 121, 181, 201, 321, 181, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10568, 35, 113, 113, 82, 63, 63, 73, 65, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10569, 38, 103, 103, 117, 106, 56, 56, 75, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10570, 48, 137, 137, 84, 84, 70, 70, 108, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10570, 48, 113, 113, 60, 55, 70, 118, 89, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10570, 48, 152, 152, 89, 84, 99, 137, 118, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10571, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10571, 30, 68, 68, 39, 57, 57, 30, 51, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10572, 49, 130, 130, 86, 115, 115, 66, 105, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10572, 49, 130, 130, 86, 115, 115, 66, 105, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10573, 26, 68, 68, 24, 40, 45, 76, 40, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10573, 29, 69, 69, 53, 35, 53, 35, 53, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10573, 29, 72, 72, 38, 35, 44, 73, 56, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10574, 41, 106, 106, 36, 52, 36, 52, 36, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10574, 41, 147, 147, 60, 85, 68, 85, 60, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10575, 41, 105, 105, 59, 65, 59, 69, 73, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10575, 41, 114, 114, 60, 101, 89, 77, 73, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10576, 31, 86, 86, 56, 37, 53, 34, 68, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10577, 37, 89, 89, 40, 40, 59, 40, 81, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10577, 42, 146, 146, 91, 91, 74, 74, 49, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10577, 41, 114, 114, 60, 101, 89, 77, 73, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10578, 41, 98, 98, 44, 44, 64, 44, 89, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10578, 41, 131, 131, 95, 73, 73, 85, 75, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10579, 58, 158, 158, 83, 141, 124, 107, 101, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10579, 58, 181, 181, 132, 101, 101, 118, 104, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10580, 30, 96, 96, 44, 44, 50, 53, 36, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10580, 32, 124, 124, 69, 60, 75, 69, 41, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10581, 29, 69, 69, 53, 35, 53, 35, 53, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10581, 29, 78, 78, 45, 43, 53, 44, 47, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10582, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10583, 30, 98, 98, 65, 62, 72, 63, 66, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10583, 32, 104, 104, 69, 66, 77, 67, 70, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10584, 40, 96, 96, 51, 47, 59, 99, 75, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10584, 42, 134, 134, 89, 85, 99, 87, 91, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10585, 58, 135, 135, 72, 66, 83, 141, 107, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10585, 58, 181, 181, 121, 116, 136, 118, 124, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10586, 43, 137, 137, 91, 87, 102, 89, 93, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10587, 51, 145, 145, 69, 79, 69, 94, 69, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10587, 51, 140, 140, 99, 110, 125, 110, 140, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10588, 58, 193, 193, 107, 118, 107, 136, 107, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10588, 58, 158, 158, 112, 124, 141, 124, 159, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10589, 31, 95, 95, 28, 47, 28, 47, 40, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10589, 31, 114, 114, 47, 65, 53, 65, 47, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10590, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10590, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10590, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10590, 28, 73, 73, 52, 48, 34, 43, 50, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10591, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10591, 54, 223, 223, 116, 110, 116, 127, 89, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10592, 56, 134, 134, 58, 86, 69, 97, 133, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10592, 60, 247, 247, 128, 122, 128, 140, 98, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10593, 28, 78, 78, 51, 34, 48, 31, 62, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10593, 28, 81, 81, 48, 57, 48, 57, 59, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10593, 28, 92, 92, 66, 51, 51, 59, 53, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10594, 53, 148, 148, 151, 114, 119, 82, 82, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10595, 52, 162, 162, 112, 86, 80, 86, 97, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10595, 52, 184, 184, 75, 106, 86, 106, 75, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10595, 52, 174, 174, 86, 96, 101, 96, 70, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10596, 50, 143, 143, 68, 78, 68, 93, 68, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10596, 54, 180, 180, 100, 110, 100, 127, 100, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10597, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10597, 30, 86, 86, 45, 75, 66, 57, 54, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10598, 43, 127, 127, 79, 85, 79, 94, 98, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10599, 60, 174, 174, 109, 117, 109, 129, 135, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10600, 38, 95, 95, 33, 56, 64, 109, 56, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10600, 40, 92, 92, 71, 47, 71, 47, 71, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10600, 42, 121, 121, 53, 78, 87, 137, 78, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10601, 39, 117, 117, 34, 58, 34, 58, 50, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10601, 41, 131, 131, 87, 83, 97, 85, 89, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10601, 40, 96, 96, 43, 43, 63, 43, 87, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10602, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10603, 51, 155, 155, 62, 62, 80, 80, 91, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10603, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10604, 30, 107, 107, 90, 63, 51, 75, 64, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10604, 29, 104, 104, 87, 61, 50, 73, 62, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10604, 31, 111, 111, 93, 65, 53, 78, 66, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10605, 50, 123, 123, 43, 73, 83, 143, 73, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10605, 52, 148, 148, 65, 96, 106, 169, 96, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10606, 43, 150, 150, 127, 88, 72, 106, 90, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10607, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10608, 29, 84, 84, 44, 73, 64, 56, 53, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10608, 29, 113, 113, 60, 57, 59, 56, 50, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10609, 51, 125, 125, 115, 43, 89, 43, 89, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10609, 51, 125, 125, 115, 43, 89, 43, 89, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10609, 54, 159, 159, 154, 67, 127, 67, 127, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10610, 41, 110, 110, 73, 48, 68, 44, 89, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10610, 41, 131, 131, 77, 73, 85, 118, 101, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10611, 58, 187, 187, 147, 89, 124, 83, 159, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10611, 58, 181, 181, 107, 101, 118, 165, 141, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10612, 32, 75, 75, 58, 38, 58, 38, 58, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10612, 34, 107, 107, 88, 68, 88, 68, 47, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10612, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10613, 43, 136, 136, 93, 72, 67, 72, 81, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10613, 43, 154, 154, 63, 89, 72, 89, 63, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10614, 44, 130, 130, 81, 87, 81, 96, 100, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10614, 42, 117, 117, 62, 104, 91, 78, 74, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10615, 35, 117, 117, 91, 56, 77, 52, 98, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10616, 40, 96, 96, 43, 43, 63, 43, 87, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10616, 44, 135, 135, 113, 86, 113, 86, 60, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10616, 44, 122, 122, 64, 108, 95, 82, 78, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10617, 42, 100, 100, 45, 45, 66, 45, 91, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10617, 44, 140, 140, 101, 78, 78, 91, 80, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10618, 56, 231, 231, 103, 64, 103, 64, 92, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10618, 59, 161, 161, 85, 144, 126, 108, 102, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10618, 59, 184, 184, 134, 102, 102, 120, 106, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10619, 33, 77, 77, 59, 39, 59, 39, 59, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10619, 33, 110, 110, 86, 53, 72, 49, 92, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10620, 35, 91, 91, 51, 56, 51, 60, 63, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10621, 35, 113, 113, 66, 63, 73, 101, 87, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10622, 32, 104, 104, 69, 66, 77, 67, 70, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10622, 34, 110, 110, 73, 70, 81, 71, 75, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10623, 41, 98, 98, 52, 48, 60, 101, 77, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10623, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10624, 60, 187, 187, 110, 104, 122, 170, 146, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10624, 52, 163, 163, 109, 104, 122, 106, 112, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10624, 58, 204, 204, 130, 176, 78, 101, 89, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10625, 45, 143, 143, 95, 91, 106, 93, 97, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10626, 53, 161, 161, 135, 103, 135, 103, 71, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10626, 53, 150, 150, 92, 92, 77, 77, 119, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10627, 58, 175, 175, 147, 112, 147, 112, 78, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10627, 60, 199, 199, 116, 116, 134, 146, 110, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10628, 31, 83, 83, 48, 45, 56, 47, 50, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10628, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10629, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10629, 30, 77, 77, 56, 51, 36, 45, 53, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10629, 31, 80, 80, 57, 53, 37, 47, 55, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10629, 33, 107, 107, 77, 59, 59, 69, 61, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10630, 52, 125, 125, 54, 80, 65, 91, 124, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10630, 54, 223, 223, 116, 110, 116, 127, 89, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10631, 57, 136, 136, 59, 88, 71, 99, 136, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10631, 58, 152, 152, 89, 124, 101, 124, 66, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10631, 59, 243, 243, 126, 120, 126, 138, 97, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10632, 32, 88, 88, 58, 38, 54, 35, 70, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10632, 32, 91, 91, 54, 64, 54, 64, 67, 86); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10632, 32, 104, 104, 75, 58, 58, 67, 60, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10633, 51, 109, 109, 130, 115, 48, 48, 74, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10633, 51, 123, 123, 104, 89, 74, 59, 59, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10633, 54, 142, 142, 164, 148, 78, 78, 105, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10634, 54, 223, 223, 100, 62, 100, 62, 89, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10634, 54, 159, 159, 46, 78, 46, 78, 67, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10634, 54, 159, 159, 67, 78, 83, 78, 51, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10635, 52, 122, 122, 54, 57, 75, 77, 91, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10635, 54, 148, 148, 78, 78, 89, 100, 78, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10636, 33, 87, 87, 49, 53, 49, 57, 60, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10636, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10637, 45, 133, 133, 83, 89, 83, 98, 103, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10638, 59, 125, 125, 102, 144, 79, 55, 73, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10638, 59, 171, 171, 107, 115, 107, 127, 133, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10639, 41, 102, 102, 36, 60, 68, 118, 60, 500); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10639, 42, 96, 96, 74, 49, 74, 49, 74, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10639, 43, 124, 124, 54, 80, 89, 140, 80, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10640, 41, 123, 123, 36, 60, 36, 60, 52, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10640, 42, 100, 100, 45, 45, 66, 45, 91, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10640, 43, 137, 137, 91, 87, 102, 89, 93, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10641, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10642, 53, 177, 177, 87, 98, 103, 98, 71, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10642, 53, 199, 199, 112, 96, 121, 111, 65, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10643, 32, 114, 114, 96, 67, 54, 80, 68, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10643, 32, 114, 114, 96, 67, 54, 80, 68, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10643, 32, 114, 114, 96, 67, 54, 80, 68, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10644, 53, 129, 129, 82, 71, 92, 71, 103, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10644, 53, 150, 150, 66, 98, 108, 172, 98, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10645, 45, 156, 156, 133, 92, 75, 111, 94, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10646, 35, 113, 113, 75, 72, 84, 73, 77, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10647, 33, 94, 94, 49, 82, 72, 63, 59, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10647, 33, 128, 128, 71, 61, 77, 71, 42, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10648, 53, 129, 129, 119, 45, 92, 45, 92, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10648, 53, 129, 129, 119, 45, 92, 45, 92, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10648, 56, 164, 164, 159, 69, 131, 69, 131, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10649, 43, 141, 141, 110, 67, 93, 63, 119, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10649, 43, 137, 137, 80, 76, 89, 123, 106, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10650, 57, 161, 161, 133, 111, 88, 88, 122, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10650, 57, 184, 184, 145, 88, 122, 82, 156, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10650, 57, 178, 178, 105, 99, 116, 162, 139, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10651, 23, 71, 71, 56, 47, 38, 38, 52, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10652, 46, 146, 146, 106, 81, 81, 95, 84, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10652, 46, 146, 146, 106, 81, 81, 95, 84, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10653, 21, 51, 51, 39, 54, 31, 23, 29, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10653, 19, 51, 51, 27, 25, 30, 49, 38, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10653, 19, 66, 66, 38, 36, 42, 57, 49, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10654, 40, 144, 144, 59, 83, 67, 83, 59, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10655, 46, 104, 104, 80, 99, 89, 72, 51, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10656, 22, 68, 68, 32, 37, 32, 43, 32, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10657, 48, 152, 152, 101, 97, 113, 99, 103, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10658, 40, 128, 128, 93, 71, 71, 83, 73, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10658, 40, 112, 112, 111, 103, 71, 75, 83, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10659, 21, 51, 51, 31, 35, 41, 35, 48, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10660, 46, 132, 132, 81, 81, 67, 67, 104, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10660, 42, 134, 134, 78, 74, 87, 120, 104, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10661, 38, 122, 122, 81, 77, 90, 79, 83, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10661, 38, 111, 111, 68, 68, 56, 56, 87, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10662, 44, 157, 157, 64, 91, 73, 91, 64, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10663, 16, 44, 44, 23, 21, 26, 42, 33, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10663, 16, 44, 44, 23, 21, 26, 42, 33, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10663, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10663, 17, 46, 46, 24, 23, 28, 45, 34, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10663, 19, 49, 49, 36, 25, 36, 25, 36, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10663, 19, 47, 47, 28, 32, 38, 32, 44, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10664, 42, 96, 96, 74, 49, 74, 49, 74, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10664, 40, 108, 108, 71, 95, 95, 55, 87, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10665, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10665, 38, 92, 92, 49, 45, 56, 94, 71, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10665, 40, 128, 128, 75, 71, 83, 115, 99, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10665, 38, 95, 95, 69, 64, 45, 56, 66, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10666, 48, 123, 123, 113, 195, 103, 65, 89, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10667, 20, 49, 49, 30, 34, 40, 34, 46, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10667, 20, 61, 61, 42, 46, 52, 46, 58, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10668, 18, 50, 50, 35, 33, 24, 29, 34, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10668, 20, 55, 55, 39, 36, 26, 32, 37, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10668, 20, 69, 69, 49, 38, 38, 44, 39, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10669, 43, 150, 150, 84, 89, 106, 115, 46, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10670, 44, 121, 121, 60, 56, 51, 56, 48, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10671, 42, 117, 117, 83, 91, 104, 91, 116, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10671, 42, 117, 117, 83, 91, 104, 91, 116, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10671, 42, 117, 117, 83, 91, 104, 91, 116, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10672, 43, 115, 115, 76, 102, 102, 59, 93, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10672, 43, 150, 150, 93, 93, 76, 76, 50, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10673, 23, 55, 55, 61, 54, 24, 24, 36, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10674, 38, 94, 94, 41, 60, 49, 68, 92, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10674, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10674, 41, 101, 101, 44, 64, 52, 73, 99, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10675, 39, 117, 117, 34, 58, 34, 58, 50, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10675, 42, 176, 176, 91, 87, 91, 99, 70, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10675, 39, 117, 117, 34, 58, 34, 58, 50, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10676, 37, 108, 108, 51, 59, 51, 70, 51, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10676, 42, 142, 142, 78, 87, 78, 99, 78, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10677, 19, 47, 47, 28, 32, 38, 32, 44, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10677, 19, 47, 47, 36, 49, 28, 21, 27, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10678, 18, 45, 45, 34, 47, 27, 20, 25, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10678, 20, 60, 60, 37, 44, 38, 44, 35, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10678, 18, 45, 45, 34, 47, 27, 20, 25, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10679, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10679, 20, 75, 75, 62, 43, 36, 52, 44, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10680, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10680, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10681, 20, 57, 57, 33, 31, 38, 32, 34, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10681, 22, 59, 59, 42, 39, 28, 34, 40, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10682, 40, 88, 88, 71, 99, 55, 39, 51, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10682, 44, 113, 113, 104, 179, 95, 60, 82, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10683, 42, 146, 146, 91, 91, 74, 74, 49, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10683, 40, 124, 124, 103, 79, 103, 79, 55, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10684, 21, 51, 51, 29, 41, 41, 23, 37, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10684, 21, 51, 51, 29, 41, 41, 23, 37, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10685, 63, 133, 133, 84, 96, 115, 96, 134, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10685, 63, 146, 146, 65, 65, 96, 65, 134, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10685, 63, 221, 221, 103, 115, 134, 159, 103, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10686, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10686, 34, 107, 107, 83, 60, 83, 60, 85, 241); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10687, 34, 98, 98, 47, 51, 47, 51, 54, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10687, 34, 93, 93, 44, 51, 61, 75, 44, 600); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10688, 35, 173, 173, 70, 73, 45, 49, 63, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10689, 65, 169, 169, 99, 138, 112, 138, 73, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10690, 64, 263, 263, 117, 72, 117, 72, 104, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10690, 64, 263, 263, 117, 72, 117, 72, 104, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10691, 63, 133, 133, 109, 153, 84, 59, 78, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10691, 63, 190, 190, 75, 75, 98, 98, 112, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10691, 63, 221, 221, 103, 115, 134, 159, 103, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10692, 64, 218, 218, 136, 136, 111, 111, 72, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10692, 64, 199, 199, 133, 127, 149, 130, 136, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10693, 64, 180, 180, 85, 98, 85, 117, 85, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10693, 64, 308, 308, 124, 130, 79, 85, 111, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10694, 32, 98, 98, 75, 58, 67, 51, 79, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10694, 32, 98, 98, 75, 58, 67, 51, 79, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10694, 32, 98, 98, 75, 58, 67, 51, 79, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10694, 32, 98, 98, 75, 58, 67, 51, 79, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10695, 65, 156, 156, 145, 54, 112, 54, 112, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10695, 65, 189, 189, 184, 80, 151, 80, 151, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10696, 65, 195, 195, 77, 77, 101, 101, 115, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10696, 65, 169, 169, 137, 164, 176, 125, 96, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10697, 46, 228, 228, 104, 62, 104, 62, 76, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10698, 46, 141, 141, 118, 90, 118, 90, 62, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10699, 65, 150, 150, 80, 73, 93, 158, 119, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10699, 65, 169, 169, 163, 164, 150, 125, 96, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10700, 45, 102, 102, 79, 52, 79, 52, 79, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10700, 45, 102, 102, 79, 52, 79, 52, 79, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10701, 45, 107, 107, 48, 48, 70, 48, 97, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10701, 45, 107, 107, 48, 48, 70, 48, 97, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10702, 65, 143, 143, 111, 138, 124, 99, 70, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10702, 65, 137, 137, 112, 158, 86, 60, 80, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10703, 29, 87, 87, 70, 58, 47, 47, 64, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10703, 27, 69, 69, 42, 50, 35, 44, 41, 647); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10704, 52, 194, 194, 92, 111, 107, 126, 57, 599); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10705, 28, 76, 76, 48, 48, 48, 48, 31, 648); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10705, 28, 64, 64, 37, 54, 54, 29, 48, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10706, 19, 51, 51, 23, 23, 32, 23, 44, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10706, 21, 59, 59, 34, 32, 39, 33, 35, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10707, 28, 78, 78, 45, 62, 51, 62, 34, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10707, 28, 118, 118, 47, 47, 57, 57, 52, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10708, 27, 65, 65, 49, 33, 49, 33, 49, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10708, 27, 73, 73, 47, 47, 47, 47, 30, 648); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10708, 27, 116, 116, 52, 33, 52, 33, 47, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10709, 22, 70, 70, 39, 40, 48, 49, 39, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10710, 30, 74, 74, 39, 36, 45, 75, 57, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10711, 30, 104, 104, 54, 54, 39, 39, 24, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10712, 25, 66, 66, 47, 44, 31, 39, 45, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10712, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10713, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10713, 26, 76, 76, 40, 66, 58, 50, 48, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10714, 39, 137, 137, 116, 80, 65, 97, 82, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10715, 27, 79, 79, 41, 68, 60, 52, 49, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10716, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10716, 25, 94, 94, 39, 54, 44, 54, 39, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10717, 39, 125, 125, 73, 73, 89, 97, 73, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10718, 39, 125, 125, 83, 79, 93, 81, 85, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10719, 37, 82, 82, 51, 59, 70, 59, 81, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10719, 37, 82, 82, 51, 59, 70, 59, 81, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10720, 27, 73, 73, 40, 37, 39, 36, 47, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10721, 26, 67, 67, 55, 48, 40, 32, 32, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10721, 26, 68, 68, 61, 24, 48, 24, 48, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10722, 27, 100, 100, 41, 57, 47, 57, 41, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10723, 35, 148, 148, 66, 42, 66, 42, 59, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10723, 36, 80, 80, 50, 57, 68, 57, 79, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10723, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10724, 39, 105, 105, 61, 85, 69, 85, 46, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10725, 25, 66, 66, 47, 44, 31, 39, 45, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10725, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10726, 27, 98, 98, 82, 57, 47, 68, 58, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10727, 36, 138, 138, 74, 70, 72, 69, 61, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10727, 36, 98, 98, 64, 86, 86, 50, 79, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10728, 37, 119, 119, 70, 66, 77, 107, 92, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10728, 37, 112, 112, 107, 47, 88, 47, 88, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10729, 36, 152, 152, 68, 43, 68, 43, 61, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10729, 38, 137, 137, 56, 79, 64, 79, 56, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10730, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10730, 37, 130, 130, 110, 76, 62, 92, 78, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10731, 36, 80, 80, 50, 57, 68, 57, 79, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10731, 38, 114, 114, 109, 49, 90, 49, 90, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10732, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10733, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10734, 49, 118, 118, 52, 76, 61, 86, 117, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10734, 49, 238, 238, 96, 101, 61, 66, 86, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10735, 25, 64, 64, 34, 31, 39, 64, 49, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10735, 25, 74, 74, 39, 64, 56, 49, 46, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10736, 39, 90, 90, 68, 85, 76, 61, 44, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10737, 38, 122, 122, 81, 77, 90, 79, 83, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10737, 36, 116, 116, 84, 64, 64, 75, 66, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10738, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10738, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10738, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10739, 37, 104, 104, 55, 92, 81, 70, 66, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10739, 37, 119, 119, 86, 66, 66, 77, 68, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10740, 27, 71, 71, 63, 25, 49, 25, 49, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10741, 27, 79, 79, 41, 41, 47, 52, 41, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10742, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10742, 24, 66, 66, 36, 34, 35, 33, 42, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10742, 24, 105, 105, 47, 30, 47, 30, 42, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10743, 27, 71, 71, 50, 47, 33, 41, 48, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10744, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10744, 38, 122, 122, 71, 68, 79, 109, 94, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10745, 37, 104, 104, 55, 92, 81, 70, 66, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10745, 37, 101, 101, 66, 88, 88, 51, 81, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10746, 39, 164, 164, 73, 46, 73, 46, 65, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10747, 39, 112, 112, 112, 85, 89, 61, 61, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10748, 39, 133, 133, 65, 73, 77, 73, 54, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10749, 38, 88, 88, 67, 83, 74, 60, 43, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10749, 36, 116, 116, 84, 64, 64, 75, 66, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10750, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10750, 38, 107, 107, 56, 94, 83, 71, 68, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10751, 37, 82, 82, 51, 59, 70, 59, 81, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10751, 37, 119, 119, 70, 66, 77, 107, 92, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10752, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10753, 39, 109, 109, 77, 85, 97, 85, 108, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10754, 39, 96, 96, 42, 61, 50, 69, 94, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10755, 27, 116, 116, 52, 33, 52, 33, 47, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10756, 36, 89, 89, 39, 57, 46, 64, 87, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10756, 36, 130, 130, 53, 75, 61, 75, 53, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10756, 36, 98, 98, 57, 79, 64, 79, 43, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10757, 27, 68, 68, 36, 33, 41, 68, 52, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10758, 34, 110, 110, 64, 61, 71, 98, 85, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10759, 41, 131, 131, 77, 73, 85, 118, 101, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10760, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10761, 49, 155, 155, 91, 86, 101, 140, 120, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10761, 49, 174, 174, 81, 91, 105, 125, 81, 244); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10762, 33, 83, 83, 36, 53, 43, 59, 80, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10762, 33, 163, 163, 66, 69, 43, 46, 59, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10762, 33, 91, 91, 53, 72, 59, 72, 39, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10763, 25, 69, 69, 40, 38, 46, 39, 41, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10766, 19, 51, 51, 23, 24, 30, 31, 36, 367); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10767, 13, 39, 39, 27, 25, 18, 22, 26, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10768, 33, 107, 107, 63, 59, 69, 96, 82, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10769, 18, 52, 52, 28, 26, 28, 26, 33, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10770, 18, 52, 52, 29, 31, 29, 33, 35, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10772, 24, 66, 66, 37, 40, 37, 42, 45, 531); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10772, 25, 59, 59, 46, 64, 36, 26, 34, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10773, 24, 61, 61, 28, 28, 40, 28, 54, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10773, 25, 69, 69, 38, 35, 37, 34, 44, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10775, 18, 49, 49, 22, 31, 25, 34, 46, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10775, 18, 49, 49, 22, 31, 25, 34, 46, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10776, 29, 113, 113, 60, 57, 59, 56, 50, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10777, 25, 91, 91, 76, 53, 44, 64, 54, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10778, 18, 50, 50, 35, 33, 24, 29, 34, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10779, 30, 149, 149, 60, 63, 39, 42, 54, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10780, 19, 98, 98, 40, 42, 27, 28, 36, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10781, 19, 47, 47, 36, 49, 28, 21, 27, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10781, 19, 56, 56, 32, 44, 36, 44, 25, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10782, 18, 48, 48, 25, 24, 29, 47, 36, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10783, 16, 52, 52, 31, 31, 26, 26, 39, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10783, 16, 50, 50, 30, 36, 31, 36, 29, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10783, 15, 36, 36, 13, 26, 14, 16, 34, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10783, 15, 57, 57, 29, 29, 22, 22, 14, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10783, 15, 39, 39, 23, 26, 31, 26, 35, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10783, 16, 51, 51, 33, 29, 28, 28, 31, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10784, 20, 63, 63, 48, 38, 36, 36, 52, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10784, 17, 51, 51, 33, 43, 43, 26, 40, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10784, 15, 46, 46, 49, 44, 25, 25, 32, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10784, 17, 65, 65, 36, 48, 45, 38, 21, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10784, 15, 72, 72, 31, 23, 35, 25, 23, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10784, 16, 60, 60, 33, 36, 33, 41, 33, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10785, 50, 118, 118, 68, 58, 63, 63, 113, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10785, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10785, 50, 118, 118, 103, 58, 58, 68, 93, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10785, 50, 113, 113, 63, 123, 113, 78, 58, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10785, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10785, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10786, 50, 158, 158, 93, 88, 103, 143, 123, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10786, 50, 108, 108, 63, 93, 93, 48, 83, 36); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10786, 50, 137, 137, 86, 103, 88, 103, 81, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10786, 50, 143, 143, 128, 83, 83, 93, 118, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10786, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10786, 50, 168, 168, 118, 118, 93, 113, 93, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10787, 50, 123, 123, 90, 83, 58, 73, 86, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10787, 51, 145, 145, 69, 79, 69, 94, 69, 335); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10787, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10787, 50, 108, 108, 88, 123, 68, 48, 63, 53); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10787, 51, 115, 115, 89, 59, 89, 59, 89, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10787, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10788, 51, 160, 160, 117, 89, 89, 104, 92, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10788, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10788, 51, 206, 206, 82, 82, 100, 100, 91, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10788, 50, 143, 143, 118, 98, 78, 78, 108, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10788, 51, 171, 171, 94, 104, 94, 120, 94, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10788, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10789, 50, 168, 168, 93, 103, 93, 118, 93, 25); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10789, 51, 171, 171, 120, 120, 94, 115, 94, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10789, 54, 186, 186, 116, 116, 94, 94, 62, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10789, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10789, 51, 140, 140, 140, 130, 89, 94, 104, 340); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10789, 54, 186, 186, 105, 143, 132, 110, 56, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10790, 53, 150, 150, 66, 98, 108, 172, 98, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10790, 52, 137, 137, 80, 112, 91, 112, 60, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10790, 50, 138, 138, 113, 78, 113, 103, 133, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10790, 53, 188, 188, 98, 98, 92, 92, 71, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10790, 52, 132, 132, 122, 210, 112, 70, 96, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10790, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10791, 40, 104, 104, 95, 163, 87, 55, 75, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10791, 40, 128, 128, 83, 59, 51, 59, 39, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10791, 40, 96, 96, 51, 47, 59, 99, 75, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10791, 40, 128, 128, 75, 71, 83, 115, 99, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10791, 40, 148, 148, 103, 79, 71, 99, 59, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10792, 5, 21, 21, 9, 9, 11, 12, 8, 580); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10792, 5, 20, 20, 13, 11, 11, 11, 11, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10792, 5, 22, 22, 9, 9, 10, 12, 11, 362); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10792, 5, 21, 21, 11, 12, 14, 13, 9, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10792, 5, 22, 22, 11, 11, 9, 9, 8, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10792, 5, 19, 19, 14, 15, 12, 11, 12, 505); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10793, 5, 20, 20, 11, 10, 10, 10, 15, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10793, 5, 19, 19, 8, 8, 17, 12, 15, 458); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10793, 5, 22, 22, 10, 10, 13, 11, 10, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10793, 5, 21, 21, 11, 16, 10, 11, 10, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10793, 5, 20, 20, 13, 11, 11, 11, 11, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10793, 5, 20, 20, 12, 11, 12, 11, 13, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10794, 45, 133, 133, 83, 89, 83, 98, 103, 432); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10794, 45, 183, 183, 73, 73, 89, 89, 81, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10795, 33, 107, 107, 71, 68, 79, 69, 72, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10795, 33, 117, 117, 66, 89, 82, 69, 36, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10796, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10796, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10796, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10796, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10796, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10796, 50, 148, 148, 117, 73, 117, 73, 89, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10797, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10797, 50, 137, 137, 86, 103, 88, 103, 81, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10797, 50, 148, 148, 43, 73, 43, 73, 63, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10797, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10797, 50, 136, 136, 93, 68, 63, 68, 65, 586); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10797, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10798, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10798, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10798, 50, 128, 128, 58, 78, 48, 48, 38, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10798, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10798, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10799, 30, 73, 73, 40, 39, 45, 54, 54, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10799, 30, 86, 86, 66, 51, 66, 51, 48, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10799, 30, 86, 86, 45, 45, 51, 57, 45, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10799, 30, 86, 86, 45, 75, 66, 57, 54, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10799, 30, 80, 80, 66, 66, 48, 48, 45, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10799, 30, 95, 95, 75, 59, 69, 59, 43, 168); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10801, 39, 109, 109, 85, 72, 69, 80, 81, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10801, 39, 121, 121, 97, 93, 50, 73, 104, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10802, 33, 94, 94, 72, 62, 59, 69, 69, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10802, 33, 94, 94, 72, 62, 59, 69, 69, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10802, 33, 104, 104, 82, 89, 46, 53, 59, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10803, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10804, 34, 97, 97, 75, 64, 61, 70, 71, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10804, 34, 107, 107, 85, 92, 47, 54, 61, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10805, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10805, 44, 140, 140, 93, 89, 104, 91, 95, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10806, 39, 109, 109, 85, 72, 69, 80, 81, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10806, 39, 121, 121, 97, 93, 50, 73, 104, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10807, 33, 94, 94, 72, 62, 59, 69, 69, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10807, 33, 94, 94, 72, 62, 59, 69, 69, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10807, 33, 104, 104, 82, 89, 46, 53, 59, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10808, 48, 147, 147, 118, 127, 65, 75, 84, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10808, 48, 161, 161, 75, 94, 79, 94, 51, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10808, 49, 164, 164, 150, 96, 96, 96, 76, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10809, 52, 158, 158, 127, 138, 70, 80, 91, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10809, 52, 174, 174, 80, 101, 86, 101, 54, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10809, 55, 183, 183, 167, 107, 107, 107, 85, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10810, 43, 137, 137, 93, 102, 46, 46, 41, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10811, 34, 97, 97, 75, 64, 61, 70, 71, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10811, 34, 107, 107, 85, 92, 47, 54, 61, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10812, 44, 127, 127, 82, 73, 78, 78, 122, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10812, 44, 140, 140, 93, 89, 104, 91, 95, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10813, 50, 108, 108, 79, 58, 48, 58, 95, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10813, 50, 133, 133, 93, 68, 93, 73, 83, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10813, 50, 128, 128, 73, 118, 63, 73, 58, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10813, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10813, 50, 117, 117, 75, 66, 83, 73, 88, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10813, 50, 122, 122, 71, 88, 73, 87, 66, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10814, 51, 130, 130, 120, 206, 110, 69, 94, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10814, 52, 156, 156, 102, 101, 107, 127, 127, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10814, 53, 150, 150, 130, 98, 108, 108, 135, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10814, 52, 143, 143, 112, 95, 91, 105, 106, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10814, 51, 160, 160, 94, 89, 104, 145, 125, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10814, 50, 139, 139, 107, 88, 93, 93, 93, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10815, 51, 135, 135, 79, 74, 69, 89, 79, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10815, 51, 130, 130, 110, 79, 89, 89, 115, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10815, 51, 140, 140, 104, 135, 74, 104, 69, 131); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10815, 51, 89, 89, 79, 48, 59, 69, 120, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10815, 51, 171, 171, 79, 99, 84, 99, 53, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10815, 51, 135, 135, 105, 84, 74, 94, 122, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10816, 51, 140, 140, 115, 79, 115, 104, 135, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10816, 52, 148, 148, 122, 83, 127, 112, 120, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10816, 51, 176, 176, 94, 97, 120, 115, 84, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10816, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10816, 52, 167, 167, 106, 101, 96, 96, 128, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10816, 53, 161, 161, 130, 140, 71, 82, 92, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10817, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10817, 51, 155, 155, 125, 135, 69, 79, 89, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10817, 51, 160, 160, 107, 108, 125, 125, 104, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10817, 51, 158, 158, 109, 102, 134, 110, 125, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10817, 51, 145, 145, 130, 84, 84, 94, 120, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10817, 53, 140, 140, 161, 145, 77, 77, 103, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10818, 50, 153, 153, 123, 118, 63, 93, 133, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10818, 50, 143, 143, 123, 93, 103, 103, 128, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10818, 53, 135, 135, 151, 80, 61, 140, 116, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10818, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10818, 52, 137, 137, 107, 86, 75, 96, 124, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10818, 52, 163, 163, 132, 91, 86, 101, 158, 134); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10819, 51, 155, 155, 125, 120, 64, 94, 135, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10819, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10819, 52, 148, 148, 127, 96, 106, 106, 132, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10819, 53, 193, 193, 124, 108, 66, 108, 119, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10819, 52, 174, 174, 138, 106, 127, 106, 122, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10819, 50, 208, 208, 88, 83, 133, 118, 88, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10820, 52, 161, 161, 111, 104, 137, 112, 127, 20); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10820, 51, 160, 160, 107, 108, 125, 125, 104, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10820, 51, 135, 135, 155, 140, 74, 74, 99, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10820, 53, 156, 156, 140, 108, 82, 108, 135, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10820, 51, 115, 115, 104, 74, 74, 94, 145, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10820, 51, 145, 145, 94, 84, 89, 89, 140, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10821, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10821, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10821, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10821, 50, 138, 138, 85, 86, 103, 103, 83, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10821, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10821, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10822, 50, 133, 133, 153, 138, 73, 73, 98, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10822, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10822, 50, 148, 148, 133, 103, 78, 103, 128, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10822, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10822, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10822, 50, 143, 143, 93, 83, 88, 88, 138, 17); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10823, 36, 109, 109, 50, 52, 61, 64, 43, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10824, 32, 88, 88, 61, 51, 42, 51, 70, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10824, 36, 94, 94, 53, 86, 46, 53, 43, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10825, 35, 138, 138, 49, 31, 49, 35, 31, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10826, 41, 96, 96, 44, 53, 44, 53, 68, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10826, 43, 111, 111, 72, 59, 106, 89, 76, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10827, 45, 134, 134, 61, 64, 75, 79, 52, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10828, 41, 90, 90, 44, 44, 44, 44, 44, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10828, 31, 86, 86, 59, 50, 40, 50, 68, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10829, 43, 132, 132, 84, 67, 110, 93, 46, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10829, 43, 132, 132, 106, 77, 72, 77, 119, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10830, 49, 150, 150, 96, 76, 125, 105, 52, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10830, 49, 150, 150, 120, 87, 81, 87, 135, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10831, 55, 167, 167, 134, 97, 90, 97, 151, 141); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10831, 55, 167, 167, 107, 85, 140, 118, 57, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10832, 43, 133, 133, 76, 59, 99, 56, 98, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10832, 43, 167, 167, 59, 37, 59, 41, 37, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10833, 8, 24, 24, 13, 19, 23, 16, 15, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10833, 9, 29, 29, 16, 14, 15, 15, 24, 176); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10834, 51, 135, 135, 59, 74, 79, 135, 110, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10834, 51, 120, 120, 59, 53, 145, 94, 130, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10834, 52, 137, 137, 96, 80, 65, 80, 112, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10834, 51, 150, 150, 104, 89, 115, 89, 110, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10834, 52, 148, 148, 65, 96, 106, 169, 96, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10834, 51, 141, 141, 109, 89, 94, 94, 94, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10835, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10835, 53, 156, 156, 92, 87, 119, 103, 119, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10835, 52, 158, 158, 127, 138, 70, 80, 91, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10835, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10835, 53, 140, 140, 45, 61, 45, 71, 103, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10836, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10836, 53, 219, 219, 114, 108, 114, 124, 87, 119); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10836, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10836, 52, 210, 210, 84, 84, 102, 102, 93, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10836, 53, 177, 177, 103, 103, 119, 130, 98, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10837, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10837, 54, 180, 180, 143, 110, 132, 110, 127, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10837, 51, 150, 150, 104, 89, 115, 89, 110, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10837, 50, 133, 133, 104, 83, 73, 93, 120, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10837, 54, 186, 186, 116, 116, 94, 94, 62, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10838, 5, 21, 21, 13, 10, 13, 12, 16, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10838, 5, 20, 20, 11, 10, 10, 11, 8, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10838, 5, 20, 20, 10, 10, 11, 13, 13, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10838, 5, 22, 22, 12, 11, 11, 13, 12, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10838, 5, 23, 23, 17, 14, 12, 14, 17, 179); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10838, 5, 21, 21, 11, 10, 9, 9, 11, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10839, 5, 22, 22, 12, 11, 11, 13, 12, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10839, 5, 20, 20, 11, 11, 13, 11, 13, 462); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10839, 5, 21, 21, 15, 12, 13, 13, 15, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10839, 5, 19, 19, 12, 10, 9, 10, 14, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10839, 5, 20, 20, 15, 11, 10, 10, 14, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10839, 5, 20, 20, 10, 10, 10, 10, 10, 206); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10840, 41, 90, 90, 56, 64, 77, 64, 89, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10840, 41, 98, 98, 36, 44, 52, 85, 64, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10840, 42, 83, 83, 53, 32, 49, 49, 70, 581); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10841, 41, 94, 94, 72, 89, 80, 64, 46, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10841, 42, 104, 104, 70, 53, 78, 62, 57, 471); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10841, 41, 110, 110, 52, 52, 73, 56, 48, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10842, 39, 133, 133, 65, 73, 77, 73, 54, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10842, 39, 98, 98, 65, 42, 81, 58, 69, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10842, 40, 112, 112, 67, 67, 67, 67, 67, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10843, 40, 84, 84, 47, 75, 95, 63, 55, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10843, 40, 96, 96, 43, 59, 63, 63, 99, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10843, 41, 127, 127, 50, 50, 65, 65, 74, 469); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10844, 26, 71, 71, 47, 40, 37, 40, 35, 186); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10844, 28, 73, 73, 48, 31, 59, 43, 51, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10845, 60, 167, 167, 170, 128, 134, 92, 92, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10845, 60, 151, 151, 98, 140, 170, 110, 110, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10845, 60, 92, 92, 134, 80, 62, 62, 74, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10845, 60, 187, 187, 176, 116, 74, 140, 128, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10845, 60, 173, 173, 104, 104, 176, 164, 122, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10846, 17, 45, 45, 29, 23, 21, 21, 23, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10846, 19, 54, 54, 30, 27, 23, 23, 30, 406); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10847, 24, 76, 76, 32, 37, 40, 37, 25, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10847, 25, 66, 66, 59, 24, 46, 24, 46, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10848, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10848, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10848, 50, 118, 118, 58, 53, 143, 93, 128, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10848, 50, 79, 79, 113, 68, 53, 53, 63, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10848, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10848, 50, 151, 151, 118, 85, 108, 88, 108, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10849, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10849, 50, 148, 148, 123, 93, 128, 98, 63, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10849, 50, 148, 148, 108, 163, 108, 93, 43, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10849, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10849, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10849, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10850, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10850, 50, 133, 133, 88, 118, 118, 68, 108, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10850, 50, 158, 158, 115, 88, 88, 103, 91, 49); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10850, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10850, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10850, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10851, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10851, 50, 158, 158, 103, 113, 133, 153, 133, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10851, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10851, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10851, 50, 168, 168, 98, 108, 138, 113, 78, 156); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10851, 50, 163, 163, 103, 113, 128, 118, 83, 193); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10852, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10852, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10852, 50, 108, 108, 68, 78, 93, 78, 108, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10852, 50, 113, 113, 87, 108, 97, 78, 55, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10852, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10852, 50, 208, 208, 93, 58, 93, 58, 83, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10853, 50, 148, 148, 88, 88, 78, 78, 93, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10853, 50, 138, 138, 93, 73, 123, 73, 88, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10853, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10853, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10853, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10853, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10854, 100, 346, 346, 261, 221, 211, 221, 161, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10854, 100, 306, 306, 281, 181, 261, 181, 201, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10854, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10854, 100, 336, 336, 311, 201, 261, 201, 241, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10854, 100, 282, 282, 171, 171, 291, 271, 201, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10854, 100, 286, 286, 191, 161, 251, 161, 251, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10855, 50, 106, 106, 48, 48, 68, 58, 63, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10855, 50, 138, 138, 63, 83, 63, 83, 58, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10855, 50, 113, 113, 69, 57, 58, 68, 43, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10855, 50, 116, 116, 64, 63, 73, 88, 88, 129); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10855, 50, 98, 98, 63, 113, 53, 113, 48, 582); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10855, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10856, 100, 396, 396, 157, 157, 193, 193, 175, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10856, 100, 292, 292, 193, 191, 203, 241, 241, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10856, 100, 306, 306, 205, 241, 207, 241, 201, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10856, 100, 336, 336, 171, 261, 161, 301, 171, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10856, 100, 336, 336, 161, 199, 241, 291, 203, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10856, 100, 296, 296, 151, 181, 151, 231, 261, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10857, 50, 228, 228, 183, 123, 118, 88, 123, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10857, 50, 153, 153, 78, 93, 78, 118, 133, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10857, 50, 168, 168, 153, 103, 88, 108, 78, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10857, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10857, 50, 183, 183, 153, 143, 68, 68, 63, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10857, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10858, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10858, 50, 183, 183, 128, 98, 88, 123, 73, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10858, 50, 158, 158, 148, 98, 63, 118, 108, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10858, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10858, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10858, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10859, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10859, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10859, 50, 158, 158, 123, 103, 103, 103, 123, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10859, 50, 153, 153, 93, 113, 93, 128, 103, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10859, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10859, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10860, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10860, 50, 118, 118, 103, 123, 53, 53, 43, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10860, 50, 143, 143, 70, 78, 96, 98, 108, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10860, 50, 128, 128, 93, 123, 63, 63, 53, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10860, 50, 128, 128, 98, 108, 43, 53, 63, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10860, 50, 144, 144, 64, 100, 84, 110, 46, 426); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10861, 38, 114, 114, 87, 71, 64, 64, 71, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10862, 46, 136, 136, 104, 85, 76, 76, 85, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10862, 48, 149, 149, 137, 108, 79, 108, 68, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10863, 41, 118, 118, 91, 60, 91, 60, 106, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10864, 46, 131, 131, 102, 67, 102, 67, 119, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10864, 48, 137, 137, 142, 118, 79, 89, 89, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10865, 41, 123, 123, 81, 68, 105, 68, 105, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10866, 46, 136, 136, 90, 76, 118, 76, 118, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10866, 48, 142, 142, 108, 127, 79, 94, 113, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10867, 45, 111, 111, 97, 66, 70, 66, 79, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10867, 45, 125, 125, 97, 59, 97, 59, 103, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10867, 47, 154, 154, 85, 89, 124, 83, 121, 590); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10867, 49, 169, 169, 145, 100, 81, 120, 102, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10868, 47, 135, 135, 139, 78, 111, 78, 120, 525); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10868, 47, 167, 167, 139, 70, 120, 70, 88, 162); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10868, 49, 160, 160, 89, 93, 129, 87, 126, 590); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10868, 51, 176, 176, 150, 103, 84, 125, 105, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10869, 48, 147, 147, 108, 70, 127, 99, 113, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10870, 46, 141, 141, 104, 67, 122, 95, 108, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10870, 48, 142, 142, 137, 84, 65, 103, 142, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10871, 46, 150, 150, 104, 95, 85, 95, 141, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10871, 48, 157, 157, 110, 106, 87, 94, 92, 649); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10881, 36, 112, 112, 82, 53, 97, 75, 86, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10882, 35, 92, 92, 70, 66, 42, 66, 51, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10882, 38, 118, 118, 87, 56, 102, 79, 90, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10883, 50, 161, 161, 129, 88, 109, 88, 108, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10884, 50, 148, 148, 98, 83, 128, 83, 128, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10885, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10886, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10887, 47, 134, 134, 104, 68, 104, 68, 121, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10887, 48, 142, 142, 94, 79, 123, 79, 123, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10888, 47, 139, 139, 106, 87, 78, 78, 87, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10888, 48, 147, 147, 108, 70, 127, 99, 113, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10889, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10901, 18, 50, 50, 33, 22, 40, 29, 34, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10901, 18, 48, 48, 27, 24, 22, 25, 31, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10902, 18, 59, 59, 26, 30, 26, 30, 25, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10902, 18, 48, 48, 27, 25, 34, 25, 34, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10903, 20, 57, 57, 42, 40, 26, 40, 31, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10904, 20, 56, 56, 36, 28, 36, 28, 32, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10905, 21, 57, 57, 37, 25, 46, 33, 39, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10905, 23, 75, 75, 50, 45, 43, 47, 54, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10906, 23, 59, 59, 33, 31, 43, 31, 43, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10906, 21, 58, 58, 38, 29, 38, 29, 33, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10907, 24, 76, 76, 34, 39, 34, 39, 32, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10908, 31, 98, 98, 71, 47, 84, 65, 75, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10908, 33, 104, 104, 69, 63, 59, 66, 76, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10909, 32, 85, 85, 64, 61, 38, 61, 47, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10909, 32, 84, 84, 55, 42, 55, 42, 48, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10910, 31, 81, 81, 53, 40, 53, 40, 47, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10910, 33, 104, 104, 69, 63, 59, 66, 76, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10911, 34, 103, 103, 78, 64, 58, 58, 64, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10912, 32, 85, 85, 64, 61, 38, 61, 47, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10912, 32, 101, 101, 67, 61, 58, 64, 74, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10913, 32, 101, 101, 67, 61, 58, 64, 74, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10913, 32, 98, 98, 74, 61, 54, 54, 61, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10914, 34, 124, 124, 66, 73, 66, 73, 54, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10915, 31, 91, 91, 70, 47, 70, 47, 81, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10915, 33, 120, 120, 65, 71, 65, 71, 53, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10916, 31, 81, 81, 53, 40, 53, 40, 47, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10916, 31, 83, 83, 62, 59, 37, 59, 45, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10916, 31, 91, 91, 70, 47, 70, 47, 81, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10917, 37, 121, 121, 96, 66, 81, 66, 81, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10918, 36, 109, 109, 82, 68, 61, 61, 68, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10918, 36, 112, 112, 75, 68, 64, 71, 82, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10919, 37, 134, 134, 72, 79, 72, 79, 59, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10920, 36, 94, 94, 71, 68, 43, 68, 52, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10920, 36, 109, 109, 82, 68, 61, 61, 68, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10921, 42, 130, 130, 87, 78, 74, 83, 95, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10921, 42, 125, 125, 83, 70, 108, 70, 108, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10922, 46, 132, 132, 104, 127, 62, 127, 74, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10923, 46, 131, 131, 102, 67, 102, 67, 119, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10924, 46, 164, 164, 88, 97, 88, 97, 72, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10925, 45, 161, 161, 86, 95, 86, 95, 70, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10925, 43, 123, 123, 96, 63, 96, 63, 111, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10926, 44, 126, 126, 98, 64, 98, 64, 114, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10926, 44, 131, 131, 100, 82, 73, 73, 82, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10927, 44, 135, 135, 100, 64, 117, 91, 104, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10927, 44, 142, 142, 114, 78, 96, 78, 95, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10928, 43, 128, 128, 84, 72, 110, 72, 110, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10928, 45, 129, 129, 102, 124, 61, 124, 73, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10929, 46, 141, 141, 95, 85, 81, 90, 104, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10930, 44, 142, 142, 114, 78, 96, 78, 95, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10930, 44, 126, 126, 98, 64, 98, 64, 114, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10931, 45, 134, 134, 88, 75, 115, 75, 115, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10931, 45, 129, 129, 102, 124, 61, 124, 73, 523); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10931, 45, 138, 138, 93, 84, 79, 88, 102, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10941, 52, 141, 141, 75, 174, 122, 132, 54, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10941, 52, 179, 179, 138, 122, 65, 122, 80, 479); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10941, 52, 189, 189, 122, 101, 112, 101, 100, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10941, 52, 148, 148, 153, 127, 86, 96, 96, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10941, 52, 169, 169, 143, 106, 132, 106, 75, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10941, 54, 182, 182, 137, 121, 159, 121, 130, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10942, 22, 61, 61, 44, 28, 28, 28, 41, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10942, 22, 61, 61, 45, 43, 28, 43, 34, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10942, 22, 70, 70, 52, 32, 19, 32, 34, 478); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10942, 22, 71, 71, 38, 48, 58, 48, 55, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10943, 28, 87, 87, 73, 73, 43, 37, 26, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10943, 28, 72, 72, 43, 66, 28, 63, 20, 298); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10943, 28, 76, 76, 41, 43, 47, 43, 51, 544); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10943, 28, 70, 70, 45, 54, 40, 48, 31, 285); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10944, 52, 184, 184, 179, 148, 148, 127, 117, 650); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10944, 50, 152, 152, 131, 156, 106, 88, 55, 507); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10944, 50, 149, 149, 118, 108, 133, 118, 102, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10944, 50, 153, 153, 163, 88, 135, 88, 133, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10944, 50, 138, 138, 128, 83, 143, 83, 128, 628); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10944, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10945, 52, 184, 184, 148, 127, 179, 148, 117, 651); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10945, 50, 152, 152, 131, 156, 106, 88, 55, 507); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10945, 50, 149, 149, 118, 108, 133, 118, 102, 312); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10945, 50, 153, 153, 163, 88, 135, 88, 133, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10945, 50, 138, 138, 128, 83, 143, 83, 128, 628); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10945, 50, 138, 138, 123, 138, 93, 108, 113, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10946, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10946, 50, 153, 153, 98, 98, 148, 118, 63, 260); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10946, 50, 138, 138, 98, 123, 78, 103, 73, 216); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10946, 50, 148, 148, 93, 138, 153, 113, 83, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10946, 52, 143, 143, 127, 143, 96, 112, 117, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10947, 50, 136, 136, 73, 168, 118, 128, 53, 295); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10947, 50, 183, 183, 118, 98, 108, 98, 97, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10947, 50, 163, 163, 138, 103, 128, 103, 73, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10947, 50, 148, 148, 113, 133, 83, 98, 118, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10947, 50, 161, 161, 129, 88, 109, 88, 108, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10947, 52, 176, 176, 132, 117, 153, 117, 125, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10948, 46, 113, 113, 99, 85, 58, 58, 76, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10948, 46, 113, 113, 99, 85, 58, 58, 76, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10948, 48, 137, 137, 147, 79, 94, 79, 94, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10949, 49, 120, 120, 105, 91, 61, 61, 81, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10949, 49, 120, 120, 105, 91, 61, 61, 81, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10949, 51, 145, 145, 155, 84, 99, 84, 99, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10950, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10950, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10950, 67, 188, 188, 203, 109, 129, 109, 129, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10951, 49, 120, 120, 105, 91, 61, 61, 81, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10951, 49, 120, 120, 105, 91, 61, 61, 81, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10951, 51, 160, 160, 94, 64, 125, 84, 171, 265); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10952, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10952, 67, 208, 208, 122, 82, 163, 109, 223, 265); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10952, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10953, 49, 120, 120, 105, 91, 61, 61, 81, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10953, 49, 120, 120, 105, 91, 61, 61, 81, 255); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10953, 51, 144, 144, 140, 89, 108, 87, 89, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10954, 67, 186, 186, 183, 116, 140, 113, 116, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10954, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10954, 65, 182, 182, 190, 158, 106, 119, 119, 473); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10955, 42, 125, 125, 62, 45, 99, 133, 108, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10955, 44, 118, 118, 104, 69, 51, 86, 122, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10956, 46, 136, 136, 67, 49, 108, 145, 118, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10956, 46, 136, 136, 67, 49, 108, 145, 118, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10956, 48, 142, 142, 137, 84, 65, 103, 142, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10957, 48, 142, 142, 70, 51, 113, 151, 123, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10957, 48, 142, 142, 70, 51, 113, 151, 123, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10957, 50, 148, 148, 143, 88, 68, 108, 148, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10958, 49, 145, 145, 71, 52, 115, 154, 125, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10958, 49, 145, 145, 71, 52, 115, 154, 125, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10958, 51, 150, 150, 145, 89, 69, 110, 150, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10978, 8, 27, 27, 15, 13, 12, 14, 16, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10979, 10, 35, 35, 18, 17, 17, 26, 17, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10980, 11, 38, 38, 19, 18, 18, 28, 18, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10983, 23, 66, 66, 50, 40, 36, 45, 57, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10984, 27, 87, 87, 57, 52, 49, 55, 63, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10985, 27, 76, 76, 58, 47, 41, 52, 67, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10986, 33, 94, 94, 48, 46, 45, 76, 44, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10987, 34, 107, 107, 71, 64, 61, 68, 78, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10990, 33, 74, 74, 53, 39, 33, 39, 64, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10990, 34, 93, 93, 72, 58, 51, 64, 83, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10991, 34, 97, 97, 49, 47, 46, 78, 45, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10992, 34, 86, 86, 51, 47, 95, 54, 81, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10993, 34, 83, 83, 58, 44, 44, 44, 37, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10994, 34, 110, 110, 71, 51, 44, 51, 34, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10995, 35, 96, 96, 74, 59, 52, 66, 85, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10996, 35, 110, 110, 73, 66, 63, 70, 80, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10999, 34, 83, 83, 47, 41, 37, 44, 54, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (10999, 34, 76, 76, 41, 37, 85, 41, 71, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11001, 35, 89, 89, 52, 49, 98, 56, 84, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11002, 35, 99, 99, 51, 49, 47, 80, 47, 575); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11003, 35, 78, 78, 56, 42, 35, 42, 68, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11004, 35, 96, 96, 74, 59, 52, 66, 85, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11006, 35, 110, 110, 73, 66, 63, 70, 80, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11007, 37, 115, 115, 77, 70, 66, 73, 84, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11008, 37, 101, 101, 78, 62, 55, 70, 90, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11010, 44, 109, 109, 64, 60, 122, 69, 104, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11010, 44, 135, 135, 91, 82, 78, 86, 100, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11010, 44, 118, 118, 92, 73, 64, 82, 106, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11030, 55, 161, 161, 118, 101, 90, 101, 79, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11030, 52, 163, 163, 127, 96, 75, 86, 70, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11030, 50, 168, 168, 123, 83, 113, 83, 103, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11030, 50, 168, 168, 153, 98, 98, 98, 78, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11031, 52, 137, 137, 44, 60, 44, 70, 101, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11031, 51, 135, 135, 43, 59, 43, 69, 99, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11031, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11031, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11032, 53, 145, 145, 77, 130, 114, 98, 92, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11032, 55, 145, 145, 96, 129, 129, 74, 118, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11032, 50, 203, 203, 81, 81, 99, 99, 90, 105); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11032, 52, 143, 143, 101, 112, 127, 112, 143, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11033, 53, 145, 145, 98, 77, 130, 77, 92, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11033, 54, 132, 132, 83, 73, 94, 73, 105, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11033, 54, 148, 148, 116, 89, 78, 78, 159, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11033, 53, 161, 161, 108, 98, 92, 103, 119, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11034, 52, 132, 132, 91, 70, 112, 91, 122, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11034, 52, 163, 163, 112, 122, 54, 54, 49, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11034, 52, 163, 163, 106, 106, 80, 80, 117, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11034, 53, 159, 159, 145, 87, 87, 87, 119, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11035, 25, 65, 65, 54, 46, 39, 31, 31, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11035, 27, 68, 68, 49, 66, 47, 39, 33, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11036, 26, 76, 76, 58, 36, 58, 36, 61, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11036, 26, 68, 68, 40, 42, 53, 48, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11036, 26, 84, 84, 55, 50, 48, 53, 61, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11036, 27, 81, 81, 84, 47, 55, 47, 55, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11037, 27, 71, 71, 41, 44, 55, 49, 30, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11038, 27, 71, 71, 41, 44, 55, 49, 30, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11038, 26, 89, 89, 61, 55, 50, 55, 81, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11038, 26, 81, 81, 58, 87, 58, 50, 24, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11038, 26, 84, 84, 55, 63, 61, 66, 40, 41); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11039, 50, 143, 143, 88, 83, 133, 118, 153, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11039, 50, 143, 143, 113, 143, 108, 93, 83, 302); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11039, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11039, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11039, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11039, 50, 128, 128, 143, 76, 58, 133, 110, 526); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11040, 25, 71, 71, 61, 71, 36, 36, 31, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11040, 26, 86, 86, 58, 63, 29, 29, 27, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11040, 28, 88, 88, 68, 49, 62, 51, 62, 167); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11040, 28, 81, 81, 48, 48, 62, 62, 62, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11040, 27, 100, 100, 51, 59, 53, 61, 42, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11041, 26, 81, 81, 61, 50, 45, 45, 35, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11041, 28, 81, 81, 54, 43, 71, 43, 51, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11041, 28, 78, 78, 68, 45, 34, 57, 79, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11041, 28, 73, 73, 45, 40, 51, 40, 57, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11041, 27, 81, 81, 55, 52, 66, 52, 66, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11042, 25, 61, 61, 46, 31, 46, 31, 46, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11042, 26, 84, 84, 68, 53, 68, 53, 37, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11042, 27, 87, 87, 68, 74, 39, 44, 49, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11042, 26, 89, 89, 51, 36, 51, 36, 39, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11042, 32, 93, 93, 93, 70, 74, 51, 51, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11043, 26, 81, 81, 55, 48, 61, 48, 58, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11043, 27, 76, 76, 25, 33, 25, 39, 55, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11043, 25, 74, 74, 39, 64, 56, 49, 46, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11043, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11044, 26, 66, 66, 48, 63, 45, 37, 32, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11044, 26, 68, 68, 40, 42, 53, 48, 29, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11044, 26, 76, 76, 40, 50, 40, 61, 48, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11044, 25, 76, 76, 61, 51, 41, 41, 56, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11045, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11045, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11045, 50, 163, 163, 128, 123, 102, 106, 101, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11045, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11045, 50, 173, 173, 98, 103, 123, 133, 53, 228); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11045, 50, 163, 163, 113, 103, 93, 103, 153, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11046, 25, 74, 74, 59, 49, 44, 74, 34, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11046, 26, 73, 73, 50, 42, 35, 42, 58, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11046, 25, 76, 76, 50, 41, 37, 51, 56, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11046, 25, 76, 76, 46, 36, 51, 36, 61, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11047, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11047, 28, 81, 81, 51, 54, 62, 57, 37, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11047, 28, 84, 84, 37, 54, 59, 93, 54, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11047, 31, 98, 98, 71, 102, 53, 53, 40, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11047, 32, 104, 104, 45, 58, 74, 86, 67, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11048, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11048, 50, 158, 158, 143, 93, 133, 93, 103, 368); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11048, 50, 148, 148, 108, 88, 128, 108, 143, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11048, 50, 146, 146, 88, 88, 148, 138, 103, 109); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11048, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11048, 50, 153, 153, 103, 108, 133, 113, 73, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11049, 16, 43, 43, 20, 23, 20, 23, 29, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11049, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11050, 26, 65, 65, 29, 35, 29, 35, 45, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11050, 28, 88, 88, 48, 31, 26, 31, 29, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11051, 29, 71, 71, 32, 39, 32, 39, 50, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11051, 31, 96, 96, 53, 34, 28, 34, 31, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11052, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11052, 34, 105, 105, 58, 37, 30, 37, 34, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11053, 35, 112, 112, 66, 60, 52, 60, 87, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11053, 37, 166, 166, 107, 62, 47, 62, 55, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11054, 30, 86, 86, 51, 51, 51, 51, 51, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11054, 32, 149, 149, 118, 80, 77, 58, 80, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11055, 34, 107, 107, 64, 78, 64, 88, 71, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11055, 36, 102, 102, 61, 46, 64, 50, 43, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11056, 19, 54, 54, 34, 28, 49, 42, 36, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11056, 21, 61, 61, 52, 60, 31, 31, 27, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11057, 15, 41, 41, 19, 22, 19, 22, 28, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11057, 17, 57, 57, 31, 21, 17, 21, 19, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11058, 28, 69, 69, 31, 38, 31, 38, 48, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11058, 30, 94, 94, 51, 33, 27, 33, 30, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11059, 31, 75, 75, 34, 41, 34, 41, 53, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11059, 33, 102, 102, 56, 36, 30, 36, 33, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11060, 34, 109, 109, 64, 58, 51, 58, 85, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11060, 36, 110, 110, 61, 39, 32, 39, 35, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11061, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11061, 38, 171, 171, 109, 64, 49, 64, 56, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11062, 30, 86, 86, 51, 51, 51, 51, 51, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11062, 32, 149, 149, 118, 80, 77, 58, 80, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11063, 32, 82, 82, 42, 54, 42, 64, 48, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11063, 35, 99, 99, 59, 45, 63, 49, 42, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11064, 18, 52, 52, 33, 27, 47, 40, 34, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11064, 20, 59, 59, 50, 58, 30, 30, 26, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11065, 17, 46, 46, 21, 25, 21, 25, 31, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11065, 18, 60, 60, 33, 22, 18, 22, 20, 97); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11066, 26, 85, 85, 50, 46, 40, 46, 66, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11066, 27, 124, 124, 79, 47, 36, 47, 41, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11067, 28, 91, 91, 54, 49, 43, 49, 71, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11067, 29, 132, 132, 85, 50, 38, 50, 44, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11068, 40, 126, 126, 75, 68, 59, 68, 99, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11068, 41, 183, 183, 118, 68, 52, 68, 60, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11069, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11069, 51, 226, 226, 145, 84, 64, 84, 74, 98); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11070, 34, 97, 97, 58, 58, 58, 58, 58, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11070, 35, 162, 162, 129, 87, 84, 63, 87, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11071, 38, 118, 118, 71, 87, 71, 98, 79, 371); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11071, 39, 117, 117, 97, 73, 100, 77, 50, 73); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11072, 21, 59, 59, 37, 31, 54, 46, 39, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11072, 23, 87, 87, 36, 50, 40, 50, 36, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11073, 50, 118, 118, 93, 63, 58, 63, 83, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11073, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11073, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11073, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11073, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11073, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11075, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11075, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11075, 50, 143, 143, 88, 68, 98, 68, 118, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11075, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11075, 50, 148, 148, 117, 73, 117, 73, 89, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11077, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11077, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11077, 50, 148, 148, 85, 90, 78, 78, 79, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11077, 50, 138, 138, 73, 93, 73, 113, 88, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11077, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11077, 50, 128, 128, 108, 108, 78, 78, 73, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11078, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11078, 50, 133, 133, 43, 58, 43, 68, 98, 1); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11078, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11078, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11078, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11078, 50, 148, 148, 103, 73, 58, 58, 58, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11080, 11, 33, 33, 15, 17, 15, 17, 22, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11080, 11, 31, 31, 14, 14, 18, 16, 17, 212); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11080, 11, 40, 40, 18, 20, 18, 20, 17, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11081, 19, 56, 56, 28, 30, 28, 36, 42, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11081, 19, 73, 73, 30, 42, 34, 42, 30, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11081, 19, 73, 73, 38, 38, 36, 36, 28, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11082, 26, 77, 77, 51, 44, 42, 42, 48, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11083, 11, 32, 32, 21, 17, 19, 19, 28, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11083, 11, 35, 35, 20, 19, 23, 19, 21, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11083, 11, 33, 33, 18, 17, 16, 16, 21, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11084, 14, 47, 47, 23, 25, 30, 31, 33, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11085, 26, 81, 81, 46, 49, 42, 42, 43, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11086, 14, 47, 47, 30, 25, 23, 31, 33, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11087, 19, 70, 70, 30, 24, 34, 28, 38, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11087, 19, 61, 61, 39, 41, 26, 27, 24, 152); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11087, 19, 58, 58, 28, 38, 28, 46, 47, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11088, 50, 133, 133, 73, 68, 158, 118, 143, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11088, 50, 193, 193, 138, 108, 113, 98, 123, 384); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11088, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11089, 50, 168, 168, 108, 98, 138, 123, 138, 351); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11089, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11089, 50, 238, 238, 133, 88, 88, 133, 53, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11090, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11090, 50, 193, 193, 163, 153, 78, 78, 63, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11090, 50, 169, 169, 157, 118, 123, 123, 103, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11091, 50, 188, 188, 183, 133, 103, 133, 123, 613); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11091, 50, 169, 169, 113, 129, 153, 129, 100, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11091, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11092, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11092, 50, 193, 193, 163, 153, 78, 78, 63, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11092, 50, 169, 169, 157, 118, 123, 123, 103, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11093, 50, 188, 188, 183, 133, 103, 133, 123, 613); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11093, 50, 169, 169, 113, 129, 153, 129, 100, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11093, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11094, 50, 173, 173, 83, 102, 123, 148, 104, 83); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11094, 50, 193, 193, 163, 153, 78, 78, 63, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11094, 50, 169, 169, 157, 118, 123, 123, 103, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11095, 50, 188, 188, 183, 133, 103, 133, 123, 613); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11095, 50, 169, 169, 113, 129, 153, 129, 100, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11095, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11096, 50, 138, 138, 108, 72, 83, 72, 83, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11096, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11096, 50, 133, 133, 93, 78, 63, 78, 108, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11096, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11096, 50, 116, 116, 58, 58, 88, 78, 73, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11096, 50, 141, 141, 83, 78, 73, 73, 94, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11098, 50, 123, 123, 78, 68, 88, 68, 98, 313); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11098, 50, 108, 108, 68, 158, 68, 113, 53, 85); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11098, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11098, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11098, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11098, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11100, 22, 79, 79, 41, 41, 30, 30, 19, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11101, 34, 95, 95, 71, 79, 71, 76, 68, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11101, 34, 100, 100, 71, 112, 44, 64, 64, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11102, 17, 41, 41, 23, 34, 43, 29, 26, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11103, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11104, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11105, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11106, 37, 97, 97, 62, 88, 107, 70, 70, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11107, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11107, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11107, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11107, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11108, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11108, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11109, 17, 41, 41, 23, 34, 43, 29, 26, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11110, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11111, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11112, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11113, 37, 97, 97, 62, 88, 107, 70, 70, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11114, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11114, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11114, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11114, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11115, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11115, 35, 78, 78, 49, 56, 66, 56, 77, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11116, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11116, 25, 64, 64, 29, 29, 41, 29, 56, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11116, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11116, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11117, 18, 47, 47, 42, 27, 24, 24, 38, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11118, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11119, 31, 73, 73, 68, 44, 37, 37, 62, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11120, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11121, 37, 104, 104, 99, 70, 62, 62, 92, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11122, 36, 80, 80, 50, 57, 68, 57, 79, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11123, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11124, 42, 92, 92, 57, 66, 78, 66, 91, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11125, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11126, 48, 132, 132, 94, 103, 118, 103, 132, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11127, 7, 25, 25, 11, 14, 15, 15, 21, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11127, 7, 25, 25, 11, 14, 15, 15, 21, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11127, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11128, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11128, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11128, 7, 25, 25, 11, 14, 15, 15, 21, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11129, 36, 80, 80, 50, 57, 68, 57, 79, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11130, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11131, 42, 92, 92, 57, 66, 78, 66, 91, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11132, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11133, 48, 132, 132, 94, 103, 118, 103, 132, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11134, 18, 47, 47, 42, 27, 24, 24, 38, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11135, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11136, 31, 73, 73, 68, 44, 37, 37, 62, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11137, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11138, 37, 104, 104, 99, 70, 62, 62, 92, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11139, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11140, 28, 62, 62, 34, 54, 68, 45, 40, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11141, 31, 67, 67, 37, 59, 75, 50, 44, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11142, 34, 90, 90, 58, 81, 98, 64, 64, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11143, 37, 97, 97, 62, 88, 107, 70, 70, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11144, 27, 68, 68, 30, 30, 44, 30, 60, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11144, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11145, 15, 37, 37, 20, 31, 38, 26, 23, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11146, 14, 36, 36, 19, 29, 36, 25, 22, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11146, 14, 36, 36, 19, 29, 36, 25, 22, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11147, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11148, 30, 65, 65, 36, 57, 72, 48, 42, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11149, 33, 71, 71, 39, 63, 79, 53, 46, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11150, 36, 94, 94, 61, 86, 104, 68, 68, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11151, 39, 102, 102, 65, 93, 112, 73, 73, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11152, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11152, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11153, 26, 60, 60, 37, 42, 50, 42, 58, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11154, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11154, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11155, 26, 66, 66, 29, 29, 42, 29, 58, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11155, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11156, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11157, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11158, 31, 73, 73, 68, 44, 37, 37, 62, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11159, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11160, 37, 104, 104, 99, 70, 62, 62, 92, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11161, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11162, 35, 78, 78, 49, 56, 66, 56, 77, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11163, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11164, 42, 92, 92, 57, 66, 78, 66, 91, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11165, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11166, 48, 132, 132, 94, 103, 118, 103, 132, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11167, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11168, 6, 22, 22, 10, 13, 13, 13, 19, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11168, 6, 22, 22, 10, 13, 13, 13, 19, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11168, 14, 36, 36, 19, 29, 36, 25, 22, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11169, 14, 36, 36, 19, 29, 36, 25, 22, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11169, 14, 36, 36, 19, 29, 36, 25, 22, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11169, 6, 22, 22, 10, 13, 13, 13, 19, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11170, 21, 49, 49, 27, 41, 52, 35, 31, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11171, 35, 78, 78, 49, 56, 66, 56, 77, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11172, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11173, 42, 92, 92, 57, 66, 78, 66, 91, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11174, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11175, 48, 132, 132, 94, 103, 118, 103, 132, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11176, 26, 63, 63, 58, 37, 32, 32, 53, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11176, 26, 76, 76, 71, 50, 45, 45, 66, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11177, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11178, 28, 67, 67, 62, 40, 34, 34, 57, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11179, 31, 73, 73, 68, 44, 37, 37, 62, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11180, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11181, 37, 104, 104, 99, 70, 62, 62, 92, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11182, 17, 45, 45, 40, 26, 23, 23, 36, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11183, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11183, 33, 74, 74, 46, 53, 63, 53, 72, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11184, 37, 82, 82, 51, 59, 70, 59, 81, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11184, 37, 82, 82, 51, 59, 70, 59, 81, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11185, 39, 94, 94, 42, 42, 61, 42, 85, 70); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11185, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11185, 39, 86, 86, 54, 61, 73, 61, 85, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11186, 41, 114, 114, 60, 101, 89, 77, 73, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11186, 41, 90, 90, 56, 64, 77, 64, 89, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11186, 41, 90, 90, 56, 64, 77, 64, 89, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11187, 43, 120, 120, 63, 106, 93, 80, 76, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11187, 43, 120, 120, 84, 93, 106, 93, 119, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11187, 43, 120, 120, 84, 93, 106, 93, 119, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11188, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11189, 17, 41, 41, 23, 34, 43, 29, 26, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11190, 17, 46, 46, 21, 28, 29, 29, 45, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11191, 27, 68, 68, 30, 41, 44, 44, 68, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11192, 34, 97, 97, 51, 64, 71, 71, 112, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11193, 42, 117, 117, 62, 78, 87, 87, 137, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11193, 42, 117, 117, 87, 99, 78, 91, 62, 250); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11194, 49, 135, 135, 71, 91, 101, 101, 159, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11194, 49, 135, 135, 120, 135, 91, 105, 110, 259); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11195, 27, 116, 116, 52, 33, 52, 33, 47, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11196, 39, 105, 105, 69, 93, 93, 54, 85, 39); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11197, 39, 141, 141, 58, 81, 65, 81, 58, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11198, 17, 53, 53, 24, 28, 36, 40, 43, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11199, 18, 47, 47, 42, 27, 24, 24, 38, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11200, 27, 65, 65, 60, 39, 33, 33, 55, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11201, 34, 97, 97, 92, 64, 58, 58, 85, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11202, 41, 114, 114, 109, 77, 68, 68, 101, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11203, 48, 132, 132, 127, 89, 79, 79, 118, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11203, 50, 168, 168, 133, 103, 123, 103, 118, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11204, 36, 102, 102, 71, 79, 89, 79, 100, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11205, 41, 114, 114, 81, 89, 101, 89, 114, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11206, 45, 125, 125, 88, 97, 111, 97, 124, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11207, 49, 159, 159, 125, 76, 105, 71, 135, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11207, 49, 135, 135, 96, 105, 120, 105, 135, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11208, 14, 40, 40, 18, 24, 25, 25, 38, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11208, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11209, 39, 125, 125, 73, 69, 81, 112, 97, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11210, 37, 119, 119, 79, 76, 88, 77, 81, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11210, 37, 119, 119, 70, 66, 77, 107, 92, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11211, 17, 53, 53, 28, 24, 40, 36, 43, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11212, 25, 109, 109, 49, 31, 49, 31, 44, 78); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11212, 25, 79, 79, 34, 39, 41, 39, 26, 463); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11213, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11214, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11215, 27, 84, 84, 25, 41, 25, 41, 36, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11216, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11217, 13, 40, 40, 14, 20, 14, 20, 14, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11217, 13, 40, 40, 14, 20, 14, 20, 14, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11218, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11218, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11219, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11219, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11220, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11220, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11221, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11221, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11222, 14, 39, 39, 18, 21, 18, 21, 26, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11223, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11224, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11225, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11226, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11227, 12, 38, 38, 14, 18, 14, 18, 14, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11227, 12, 43, 43, 14, 21, 14, 21, 18, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11228, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11229, 12, 35, 35, 18, 17, 21, 33, 26, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11229, 12, 35, 35, 18, 17, 21, 33, 26, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11230, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11231, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11232, 13, 45, 45, 14, 22, 14, 22, 20, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11233, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11234, 12, 38, 38, 14, 18, 14, 18, 14, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11234, 12, 38, 38, 14, 18, 14, 18, 14, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11235, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11235, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11236, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11236, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11237, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11237, 32, 98, 98, 29, 48, 29, 48, 42, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11238, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11238, 35, 127, 127, 52, 73, 59, 73, 52, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11239, 13, 37, 37, 17, 20, 17, 20, 25, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11240, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11241, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11242, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11243, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11244, 12, 38, 38, 14, 18, 14, 18, 14, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11244, 12, 43, 43, 14, 21, 14, 21, 18, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11245, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11245, 34, 76, 76, 47, 54, 64, 54, 75, 51); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11245, 34, 76, 76, 88, 78, 34, 34, 51, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11245, 34, 76, 76, 88, 78, 34, 34, 51, 535); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11246, 34, 83, 83, 51, 44, 44, 44, 78, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11246, 35, 103, 103, 63, 63, 52, 52, 80, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11246, 34, 83, 83, 51, 44, 44, 44, 78, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11247, 47, 135, 135, 83, 83, 68, 68, 106, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11247, 47, 135, 135, 83, 83, 68, 68, 106, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11247, 47, 111, 111, 68, 59, 59, 59, 106, 333); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11248, 100, 236, 236, 175, 161, 111, 141, 167, 48); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11249, 24, 66, 66, 23, 32, 23, 32, 23, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11249, 24, 76, 76, 23, 37, 23, 37, 32, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11250, 23, 77, 77, 52, 40, 38, 40, 45, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11251, 40, 127, 127, 87, 67, 63, 67, 76, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11252, 55, 171, 171, 118, 90, 85, 90, 102, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11253, 43, 98, 98, 76, 50, 76, 50, 76, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11254, 43, 98, 98, 76, 50, 76, 50, 76, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11255, 26, 73, 73, 48, 32, 45, 29, 58, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11256, 19, 64, 64, 30, 30, 33, 35, 24, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11256, 21, 70, 70, 32, 32, 36, 38, 26, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11256, 20, 67, 67, 31, 31, 35, 37, 25, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11257, 28, 90, 90, 41, 41, 47, 49, 34, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11257, 27, 87, 87, 40, 40, 45, 48, 33, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11257, 29, 93, 93, 43, 43, 48, 51, 35, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11258, 52, 196, 196, 110, 94, 119, 109, 64, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11258, 53, 199, 199, 112, 96, 121, 111, 65, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11258, 51, 192, 192, 108, 92, 117, 107, 63, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11259, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11259, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11260, 29, 93, 93, 43, 43, 48, 51, 35, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11260, 29, 93, 93, 43, 43, 48, 51, 35, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11261, 27, 73, 73, 25, 36, 25, 36, 25, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11261, 31, 114, 114, 47, 65, 53, 65, 47, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11261, 29, 90, 90, 27, 44, 27, 44, 38, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11262, 28, 87, 87, 26, 43, 26, 43, 37, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11263, 45, 161, 161, 66, 93, 75, 93, 66, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11264, 54, 191, 191, 78, 110, 89, 110, 78, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11265, 44, 100, 100, 78, 51, 78, 51, 78, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11266, 44, 100, 100, 78, 51, 78, 51, 78, 347); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11267, 32, 104, 104, 70, 54, 51, 54, 61, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11268, 25, 82, 82, 38, 38, 42, 45, 31, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11268, 25, 82, 82, 38, 38, 42, 45, 31, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11268, 26, 84, 84, 39, 39, 44, 46, 32, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11269, 32, 102, 102, 47, 47, 53, 56, 38, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11269, 32, 102, 102, 47, 47, 53, 56, 38, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11269, 32, 102, 102, 47, 47, 53, 56, 38, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11270, 51, 192, 192, 108, 92, 117, 107, 63, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11270, 51, 192, 192, 108, 92, 117, 107, 63, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11270, 51, 192, 192, 108, 92, 117, 107, 63, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11271, 31, 95, 95, 28, 47, 28, 47, 40, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11271, 33, 101, 101, 30, 49, 30, 49, 43, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11272, 31, 99, 99, 45, 45, 51, 54, 37, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11272, 33, 105, 105, 48, 48, 54, 57, 39, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11273, 26, 97, 97, 40, 55, 45, 55, 40, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11274, 28, 72, 72, 59, 51, 43, 34, 34, 435); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11275, 38, 94, 94, 41, 60, 49, 68, 92, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11276, 26, 97, 97, 40, 55, 45, 55, 40, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11277, 14, 43, 43, 15, 21, 15, 21, 15, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11278, 26, 81, 81, 24, 40, 24, 40, 35, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11279, 33, 101, 101, 30, 49, 30, 49, 43, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11280, 40, 120, 120, 35, 59, 35, 59, 51, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11281, 50, 178, 178, 73, 103, 83, 103, 73, 68); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11282, 38, 94, 94, 41, 60, 49, 68, 92, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11283, 14, 39, 39, 18, 21, 18, 21, 26, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11284, 26, 85, 85, 50, 46, 40, 46, 66, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11285, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11286, 40, 126, 126, 75, 68, 59, 68, 99, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11287, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11288, 14, 43, 43, 15, 21, 15, 21, 15, 420); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11289, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11289, 50, 158, 158, 123, 93, 73, 83, 68, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11289, 50, 133, 133, 98, 73, 63, 63, 103, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11289, 50, 128, 128, 103, 118, 33, 68, 33, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11289, 50, 138, 138, 68, 73, 113, 103, 93, 40); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11289, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11291, 50, 146, 146, 113, 88, 73, 78, 105, 234); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11291, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11291, 50, 148, 148, 88, 83, 113, 98, 113, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11291, 50, 158, 158, 128, 88, 123, 93, 93, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11291, 50, 138, 138, 85, 73, 85, 83, 63, 140); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11291, 50, 133, 133, 63, 108, 103, 128, 63, 422); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11292, 50, 148, 148, 108, 93, 83, 93, 73, 445); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11292, 50, 143, 143, 98, 128, 58, 88, 108, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11292, 50, 128, 128, 88, 68, 108, 88, 118, 444); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11292, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11292, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11292, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11294, 10, 31, 31, 20, 16, 16, 16, 14, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11294, 10, 31, 31, 12, 14, 16, 24, 19, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11295, 35, 113, 113, 91, 63, 87, 66, 66, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11295, 35, 110, 110, 73, 77, 94, 80, 52, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11296, 31, 89, 89, 65, 47, 47, 47, 40, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11296, 31, 107, 107, 53, 53, 40, 40, 40, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11297, 16, 54, 54, 25, 26, 29, 31, 21, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11297, 16, 68, 68, 25, 17, 25, 18, 17, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11298, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11298, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11299, 16, 50, 50, 26, 23, 37, 34, 41, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11299, 16, 50, 50, 23, 26, 34, 37, 41, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11300, 27, 79, 79, 41, 36, 60, 55, 66, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11300, 27, 79, 79, 36, 41, 55, 60, 66, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11301, 30, 86, 86, 45, 39, 66, 60, 72, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11301, 30, 86, 86, 39, 45, 60, 66, 72, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11302, 33, 94, 94, 49, 43, 72, 66, 79, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11302, 33, 94, 94, 43, 49, 66, 72, 79, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11303, 36, 102, 102, 53, 46, 79, 71, 86, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11303, 36, 102, 102, 46, 53, 71, 79, 86, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11304, 8, 27, 27, 14, 15, 12, 12, 12, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11304, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11305, 27, 79, 79, 52, 41, 68, 41, 49, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11305, 27, 79, 79, 41, 52, 41, 63, 49, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11306, 20, 62, 62, 32, 21, 32, 21, 23, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11306, 20, 62, 62, 32, 21, 32, 21, 23, 437); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11307, 15, 48, 48, 25, 22, 35, 32, 38, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11307, 15, 48, 48, 22, 25, 32, 35, 38, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11308, 27, 79, 79, 41, 36, 60, 55, 66, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11308, 27, 79, 79, 36, 41, 55, 60, 66, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11309, 30, 86, 86, 45, 39, 66, 60, 72, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11309, 30, 86, 86, 39, 45, 60, 66, 72, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11310, 33, 94, 94, 49, 43, 72, 66, 79, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11310, 33, 94, 94, 43, 49, 66, 72, 79, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11311, 36, 102, 102, 53, 46, 79, 71, 86, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11311, 36, 102, 102, 46, 53, 71, 79, 86, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11312, 6, 22, 22, 11, 13, 10, 10, 10, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11312, 6, 22, 22, 10, 10, 11, 13, 10, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11313, 26, 76, 76, 50, 40, 66, 40, 48, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11313, 26, 76, 76, 40, 50, 40, 61, 48, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11314, 19, 58, 58, 34, 34, 34, 34, 34, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11314, 19, 58, 58, 34, 34, 34, 34, 34, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11315, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11315, 22, 90, 90, 32, 21, 32, 23, 21, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11316, 28, 87, 87, 40, 41, 48, 51, 34, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11316, 28, 112, 112, 40, 26, 40, 29, 26, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11317, 100, 276, 276, 171, 161, 261, 231, 301, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11317, 100, 276, 276, 171, 161, 301, 231, 261, 266); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11318, 37, 112, 112, 51, 53, 62, 66, 44, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11318, 37, 112, 112, 51, 53, 62, 66, 44, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11319, 49, 145, 145, 66, 69, 81, 86, 56, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11319, 49, 145, 145, 66, 69, 81, 86, 56, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11320, 29, 72, 72, 45, 40, 50, 44, 53, 59); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11320, 29, 74, 74, 43, 53, 44, 52, 40, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11321, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11321, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11322, 19, 54, 54, 42, 47, 15, 28, 15, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11323, 9, 33, 33, 16, 20, 16, 24, 25, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11323, 9, 33, 33, 16, 20, 16, 24, 25, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11324, 21, 67, 67, 31, 32, 37, 39, 27, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11324, 21, 53, 53, 35, 29, 33, 33, 50, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11325, 40, 120, 120, 55, 57, 67, 71, 47, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11325, 40, 92, 92, 63, 51, 59, 59, 91, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11326, 60, 205, 205, 110, 114, 140, 134, 98, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11326, 60, 163, 163, 134, 92, 134, 122, 158, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11327, 22, 61, 61, 48, 54, 17, 32, 17, 456); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11328, 11, 38, 38, 18, 24, 18, 28, 29, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11328, 11, 38, 38, 18, 24, 18, 28, 29, 144); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11329, 23, 73, 73, 33, 35, 40, 43, 29, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11329, 23, 57, 57, 38, 31, 36, 36, 54, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11330, 44, 131, 131, 60, 63, 73, 78, 51, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11330, 44, 100, 100, 69, 56, 64, 64, 100, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11331, 60, 205, 205, 110, 114, 140, 134, 98, 187); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11331, 60, 163, 163, 134, 92, 134, 122, 158, 142); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11332, 10, 31, 31, 20, 16, 16, 16, 14, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11332, 10, 31, 31, 12, 14, 16, 24, 19, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11333, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11333, 35, 86, 86, 62, 49, 52, 52, 52, 56); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11334, 41, 114, 114, 60, 52, 89, 81, 97, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11334, 41, 114, 114, 52, 60, 81, 89, 97, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11335, 47, 149, 149, 120, 83, 115, 87, 87, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11335, 47, 144, 144, 97, 101, 125, 106, 68, 3); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11336, 41, 143, 143, 89, 89, 73, 73, 48, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11336, 41, 143, 143, 89, 89, 73, 73, 48, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11337, 48, 166, 166, 103, 103, 84, 84, 55, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11337, 48, 166, 166, 103, 103, 84, 84, 55, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11338, 53, 182, 182, 114, 114, 92, 92, 61, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11338, 53, 182, 182, 114, 114, 92, 92, 61, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11339, 55, 189, 189, 118, 118, 96, 96, 63, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11339, 55, 189, 189, 118, 118, 96, 96, 63, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11340, 39, 109, 109, 81, 58, 58, 58, 50, 404); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11340, 39, 133, 133, 65, 65, 50, 50, 50, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11341, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11341, 15, 46, 46, 22, 22, 29, 23, 20, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11342, 15, 51, 51, 16, 25, 16, 25, 22, 54); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11342, 15, 46, 46, 22, 22, 29, 23, 20, 226); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11343, 64, 173, 173, 92, 79, 136, 124, 149, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11343, 64, 173, 173, 79, 92, 124, 136, 149, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11344, 10, 31, 31, 18, 16, 18, 16, 21, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11344, 10, 31, 31, 18, 16, 18, 16, 21, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11345, 16, 46, 46, 27, 33, 23, 29, 24, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11345, 16, 46, 46, 27, 33, 23, 29, 24, 579); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11346, 60, 163, 163, 86, 74, 128, 116, 140, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11346, 60, 163, 163, 74, 86, 116, 128, 140, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11347, 9, 27, 27, 13, 13, 13, 13, 13, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11347, 9, 27, 27, 13, 13, 13, 13, 13, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11348, 38, 95, 95, 49, 64, 49, 75, 56, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11348, 38, 95, 95, 49, 64, 49, 75, 56, 414); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11349, 33, 103, 103, 82, 56, 82, 56, 59, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11349, 33, 103, 103, 92, 56, 56, 56, 76, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11350, 20, 53, 53, 23, 36, 27, 32, 38, 484); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11350, 20, 55, 55, 26, 32, 40, 32, 24, 488); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11351, 11, 38, 38, 19, 17, 27, 25, 29, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11351, 11, 38, 38, 17, 19, 25, 27, 29, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11352, 53, 169, 169, 108, 115, 114, 103, 100, 596); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11352, 53, 189, 189, 100, 100, 129, 118, 54, 597); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11353, 16, 50, 50, 26, 23, 37, 34, 41, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11353, 16, 50, 50, 23, 26, 34, 37, 41, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11354, 26, 76, 76, 40, 35, 58, 53, 63, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11354, 26, 76, 76, 35, 40, 53, 58, 63, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11355, 33, 94, 94, 49, 43, 72, 66, 79, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11355, 33, 94, 94, 43, 49, 66, 72, 79, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11356, 40, 112, 112, 59, 51, 87, 79, 95, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11356, 40, 112, 112, 51, 59, 79, 87, 95, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11357, 50, 138, 138, 73, 63, 108, 98, 118, 415); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11357, 50, 138, 138, 63, 73, 98, 108, 118, 416); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11358, 9, 29, 29, 13, 13, 15, 17, 13, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11358, 9, 29, 29, 15, 17, 13, 13, 13, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11359, 35, 99, 99, 66, 52, 87, 52, 63, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11359, 35, 99, 99, 52, 66, 52, 80, 63, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11360, 24, 63, 63, 28, 40, 32, 44, 60, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11360, 24, 69, 69, 40, 54, 44, 54, 30, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11361, 15, 60, 60, 11, 11, 14, 29, 19, 652); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11361, 15, 57, 57, 19, 14, 22, 16, 14, 421); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11362, 50, 118, 118, 43, 53, 63, 103, 78, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11362, 50, 108, 108, 53, 53, 53, 53, 53, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11362, 50, 193, 193, 68, 43, 68, 48, 43, 116); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11362, 50, 113, 113, 58, 63, 58, 78, 73, 360); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11362, 50, 113, 113, 78, 63, 73, 73, 113, 52); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11362, 50, 148, 148, 68, 71, 83, 88, 58, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11363, 50, 133, 133, 58, 73, 78, 133, 108, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11363, 50, 133, 133, 78, 73, 68, 88, 78, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11363, 50, 128, 128, 108, 78, 88, 88, 113, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11363, 50, 128, 128, 88, 113, 58, 58, 38, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11363, 50, 138, 138, 103, 73, 63, 63, 53, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11363, 50, 148, 148, 85, 90, 78, 78, 79, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11364, 20, 55, 55, 36, 25, 32, 25, 42, 494); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11365, 52, 137, 137, 101, 75, 65, 65, 106, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11365, 54, 164, 164, 110, 100, 94, 105, 121, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11365, 53, 145, 145, 77, 130, 114, 98, 92, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11366, 58, 187, 187, 165, 107, 83, 95, 141, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11366, 58, 187, 187, 130, 118, 107, 118, 176, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11366, 58, 158, 158, 83, 141, 124, 107, 101, 72); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11367, 54, 160, 160, 113, 93, 93, 88, 145, 171); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11367, 54, 142, 142, 127, 148, 73, 73, 62, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11367, 54, 164, 164, 110, 100, 94, 105, 121, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11368, 26, 73, 73, 48, 32, 45, 29, 58, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11368, 26, 81, 81, 55, 48, 61, 48, 58, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11368, 26, 86, 86, 66, 50, 40, 45, 37, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11369, 38, 103, 103, 68, 45, 64, 41, 83, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11369, 40, 120, 120, 83, 71, 91, 71, 87, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11369, 39, 125, 125, 97, 73, 58, 65, 54, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11370, 58, 187, 187, 147, 89, 124, 83, 159, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11370, 59, 172, 172, 120, 102, 132, 102, 126, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11370, 60, 199, 199, 182, 122, 104, 128, 92, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11371, 47, 153, 153, 134, 87, 68, 78, 115, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11371, 47, 175, 175, 127, 132, 85, 89, 66, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11372, 45, 143, 143, 84, 79, 93, 129, 111, 28); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11372, 45, 143, 143, 129, 138, 70, 79, 61, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11372, 48, 155, 155, 104, 106, 128, 119, 79, 632); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11373, 23, 73, 73, 50, 36, 29, 29, 29, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11373, 23, 67, 67, 24, 52, 24, 52, 23, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11374, 33, 81, 81, 63, 43, 39, 43, 56, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11374, 35, 96, 96, 84, 98, 49, 49, 42, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11374, 34, 114, 114, 98, 64, 51, 58, 85, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11375, 56, 180, 180, 104, 73, 104, 73, 78, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11375, 56, 186, 186, 159, 159, 92, 92, 81, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11375, 56, 170, 170, 137, 131, 69, 103, 148, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11376, 54, 166, 166, 116, 79, 83, 79, 94, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11376, 54, 186, 186, 116, 116, 94, 94, 62, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11376, 54, 148, 148, 94, 89, 164, 105, 143, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11377, 53, 193, 193, 135, 103, 92, 130, 77, 67); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11377, 53, 156, 156, 119, 98, 87, 87, 98, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11377, 56, 186, 186, 86, 109, 92, 109, 58, 182); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11378, 59, 162, 162, 132, 79, 85, 85, 215, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11378, 59, 166, 166, 179, 97, 114, 97, 114, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11378, 62, 280, 280, 225, 151, 145, 107, 151, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11379, 54, 164, 164, 121, 175, 89, 89, 67, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11379, 54, 186, 186, 159, 109, 89, 132, 111, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11379, 54, 200, 200, 145, 151, 97, 102, 75, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11380, 32, 95, 95, 51, 90, 80, 42, 54, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11380, 32, 85, 85, 70, 51, 58, 58, 74, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11380, 32, 88, 88, 58, 38, 54, 35, 70, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11381, 44, 127, 127, 69, 122, 108, 56, 73, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11381, 44, 127, 127, 108, 82, 91, 91, 113, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11381, 44, 144, 144, 113, 69, 95, 64, 122, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11382, 60, 193, 193, 152, 92, 128, 86, 164, 166); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11382, 60, 169, 169, 146, 110, 122, 122, 152, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11382, 60, 211, 211, 146, 176, 158, 86, 86, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11383, 47, 153, 153, 134, 87, 68, 78, 115, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11383, 47, 177, 177, 101, 111, 97, 111, 68, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11384, 46, 150, 150, 95, 85, 145, 90, 104, 486); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11384, 46, 164, 164, 113, 136, 122, 67, 67, 281); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11384, 46, 149, 149, 100, 102, 123, 114, 76, 632); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11385, 28, 92, 92, 71, 54, 43, 48, 40, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11385, 28, 80, 80, 28, 63, 28, 63, 27, 194); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11386, 34, 83, 83, 64, 44, 41, 44, 58, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11386, 34, 114, 114, 98, 64, 51, 58, 85, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11386, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11387, 57, 150, 150, 117, 93, 82, 105, 136, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11387, 58, 262, 262, 118, 76, 130, 88, 118, 148); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11387, 59, 196, 196, 144, 97, 132, 97, 120, 79); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11388, 53, 145, 145, 124, 108, 87, 108, 55, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11388, 54, 196, 196, 164, 154, 73, 73, 67, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11388, 55, 156, 156, 129, 87, 134, 118, 127, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11389, 64, 180, 180, 111, 104, 168, 149, 194, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11389, 64, 193, 193, 156, 168, 85, 98, 111, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11389, 64, 180, 180, 130, 207, 79, 117, 117, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11389, 65, 228, 228, 202, 171, 151, 158, 107, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11390, 39, 137, 137, 104, 81, 73, 81, 58, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11390, 39, 144, 144, 93, 77, 85, 77, 76, 251); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11390, 40, 120, 120, 127, 103, 67, 103, 35, 619); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11391, 42, 131, 131, 120, 95, 70, 95, 60, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11392, 64, 161, 161, 149, 258, 136, 85, 117, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11392, 64, 190, 190, 125, 124, 131, 156, 156, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11392, 65, 195, 195, 162, 132, 119, 132, 148, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11393, 39, 121, 121, 86, 71, 101, 71, 65, 485); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11393, 39, 191, 191, 77, 81, 50, 54, 69, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11393, 40, 120, 120, 59, 43, 95, 127, 103, 311); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11394, 40, 117, 117, 113, 75, 51, 59, 73, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11394, 41, 119, 119, 115, 77, 52, 60, 74, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11395, 45, 147, 147, 142, 138, 75, 93, 43, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11395, 46, 150, 150, 127, 95, 118, 95, 67, 304); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11396, 35, 106, 106, 82, 63, 73, 56, 86, 287); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11396, 35, 110, 110, 86, 61, 86, 61, 88, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11397, 64, 225, 225, 143, 194, 85, 111, 98, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11397, 64, 161, 161, 92, 181, 130, 130, 66, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11397, 64, 180, 180, 104, 168, 194, 149, 111, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11397, 65, 216, 216, 202, 151, 158, 158, 132, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11398, 62, 212, 212, 182, 125, 101, 151, 127, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11398, 62, 230, 230, 194, 101, 89, 107, 136, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11398, 62, 199, 199, 138, 126, 114, 126, 188, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11398, 62, 189, 189, 176, 138, 101, 138, 86, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11398, 62, 199, 199, 194, 188, 101, 126, 58, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11398, 63, 297, 297, 166, 109, 109, 166, 65, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11399, 44, 135, 135, 86, 86, 130, 104, 56, 260); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11399, 44, 144, 144, 106, 78, 113, 78, 78, 282); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11399, 45, 134, 134, 75, 88, 120, 88, 102, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11400, 55, 178, 178, 173, 167, 90, 112, 52, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11400, 55, 156, 156, 112, 178, 68, 101, 101, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11401, 63, 177, 177, 109, 103, 166, 147, 191, 47); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11401, 63, 190, 190, 153, 166, 84, 96, 109, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11401, 63, 177, 177, 128, 204, 78, 115, 115, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11401, 63, 221, 221, 196, 166, 147, 153, 104, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11402, 55, 164, 164, 88, 112, 138, 112, 131, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11402, 55, 178, 178, 123, 112, 101, 112, 167, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11403, 64, 193, 193, 156, 149, 79, 117, 168, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11403, 64, 205, 205, 143, 130, 117, 130, 194, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11403, 64, 191, 191, 166, 198, 134, 111, 69, 507); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11404, 55, 205, 205, 96, 140, 85, 129, 112, 292); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11404, 55, 167, 167, 178, 96, 148, 96, 145, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11405, 68, 218, 218, 192, 124, 97, 111, 165, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11405, 68, 238, 238, 151, 206, 90, 117, 104, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11405, 68, 231, 231, 188, 138, 117, 124, 154, 534); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11406, 64, 218, 218, 188, 129, 104, 156, 131, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11406, 64, 231, 231, 149, 130, 79, 130, 143, 124); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11406, 64, 193, 193, 207, 111, 171, 111, 168, 499); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11407, 55, 194, 194, 160, 107, 87, 107, 112, 294); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11407, 55, 166, 166, 143, 171, 116, 96, 60, 507); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11408, 44, 127, 127, 123, 82, 56, 64, 79, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11408, 44, 137, 137, 126, 100, 73, 100, 63, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11408, 44, 110, 110, 97, 73, 47, 56, 71, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11409, 68, 204, 204, 158, 158, 158, 158, 145, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11409, 68, 190, 190, 138, 219, 83, 124, 124, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11409, 68, 224, 224, 192, 192, 111, 111, 97, 388); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11410, 54, 154, 154, 150, 100, 67, 78, 96, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11410, 54, 161, 161, 116, 100, 94, 100, 87, 653); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11410, 54, 169, 169, 132, 110, 110, 110, 132, 222); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11411, 45, 130, 130, 126, 84, 57, 66, 81, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11411, 45, 140, 140, 129, 102, 75, 102, 64, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11412, 63, 177, 177, 103, 166, 191, 147, 109, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11412, 63, 171, 171, 93, 239, 86, 201, 65, 605); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11412, 63, 240, 240, 204, 191, 96, 96, 78, 314); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11412, 63, 183, 183, 141, 166, 103, 122, 147, 165); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11413, 46, 133, 133, 129, 85, 58, 67, 83, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11414, 70, 238, 238, 219, 142, 184, 142, 170, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11415, 51, 135, 135, 110, 79, 74, 79, 84, 635); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11415, 51, 145, 145, 150, 125, 79, 94, 110, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11415, 51, 160, 160, 150, 99, 64, 120, 110, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11415, 51, 155, 155, 128, 104, 94, 104, 117, 262); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11415, 51, 140, 140, 125, 114, 79, 93, 137, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11416, 66, 237, 237, 148, 111, 148, 125, 118, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11416, 66, 165, 165, 94, 187, 134, 134, 68, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11416, 66, 198, 198, 101, 121, 101, 154, 173, 210); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11417, 54, 164, 164, 132, 92, 110, 92, 149, 230); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11417, 54, 164, 164, 159, 105, 56, 105, 116, 476); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11417, 54, 148, 148, 105, 116, 132, 116, 148, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11418, 66, 192, 192, 107, 110, 134, 137, 107, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11418, 66, 192, 192, 121, 180, 200, 147, 107, 198); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11418, 66, 180, 180, 139, 114, 121, 121, 121, 42); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11418, 66, 225, 225, 127, 173, 160, 134, 68, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11419, 45, 130, 130, 126, 84, 57, 66, 81, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11419, 45, 140, 140, 129, 102, 75, 102, 64, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11420, 44, 127, 127, 123, 82, 56, 64, 79, 245); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11420, 44, 137, 137, 126, 100, 73, 100, 63, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11420, 44, 110, 110, 97, 73, 47, 56, 71, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11421, 64, 205, 205, 143, 130, 117, 130, 194, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11421, 64, 193, 193, 149, 113, 188, 149, 134, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11421, 64, 180, 180, 168, 194, 104, 111, 149, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11422, 63, 221, 221, 141, 191, 84, 109, 96, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11422, 63, 158, 158, 90, 178, 128, 128, 65, 95); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11422, 63, 177, 177, 103, 166, 191, 147, 109, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11422, 63, 210, 210, 196, 147, 153, 153, 128, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11423, 62, 212, 212, 182, 125, 101, 151, 127, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11423, 62, 292, 292, 163, 107, 107, 163, 64, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11423, 62, 199, 199, 138, 126, 114, 126, 188, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11423, 62, 189, 189, 176, 138, 101, 138, 86, 249); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11423, 62, 230, 230, 194, 101, 89, 107, 136, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11423, 62, 199, 199, 194, 188, 101, 126, 58, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11424, 64, 199, 199, 117, 117, 143, 156, 117, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11424, 64, 193, 193, 185, 113, 149, 136, 149, 200); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11424, 64, 193, 193, 143, 207, 104, 104, 79, 391); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11425, 54, 186, 186, 143, 110, 100, 110, 78, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11425, 54, 213, 213, 132, 116, 56, 116, 73, 477); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11425, 54, 179, 179, 158, 110, 83, 110, 83, 279); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11426, 70, 245, 245, 217, 184, 163, 170, 115, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11427, 63, 183, 183, 178, 109, 84, 134, 185, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11427, 63, 217, 217, 235, 103, 109, 90, 100, 180); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11427, 63, 200, 200, 161, 109, 136, 109, 134, 293); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11427, 63, 183, 183, 166, 254, 103, 103, 90, 387); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11428, 57, 161, 161, 93, 150, 173, 133, 99, 611); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11428, 59, 279, 279, 156, 102, 102, 156, 61, 342); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11429, 57, 160, 160, 156, 99, 120, 97, 99, 211); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11429, 59, 166, 166, 156, 179, 97, 102, 138, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11430, 55, 156, 156, 112, 178, 68, 101, 101, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11430, 55, 189, 189, 96, 145, 90, 167, 96, 283); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11430, 57, 150, 150, 82, 76, 179, 133, 162, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11431, 61, 188, 188, 125, 113, 117, 111, 180, 321); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11432, 55, 203, 203, 148, 154, 99, 104, 76, 601); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11432, 57, 227, 227, 113, 107, 138, 130, 91, 623); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11433, 57, 184, 184, 150, 112, 99, 119, 89, 654); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11433, 59, 190, 190, 185, 179, 97, 120, 55, 481); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11434, 59, 187, 187, 169, 166, 107, 95, 110, 624); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11435, 30, 89, 89, 93, 51, 60, 51, 60, 107); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11436, 30, 71, 71, 51, 42, 39, 48, 48, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11436, 31, 76, 76, 44, 37, 34, 40, 50, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11437, 47, 158, 158, 134, 92, 78, 78, 64, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11437, 47, 120, 120, 111, 191, 101, 64, 87, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11437, 47, 149, 149, 134, 144, 73, 83, 64, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11437, 47, 130, 130, 83, 78, 144, 92, 125, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11438, 46, 136, 136, 99, 150, 99, 85, 39, 110); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11438, 46, 155, 155, 122, 95, 113, 95, 108, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11439, 47, 153, 153, 125, 106, 64, 106, 97, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11439, 47, 127, 127, 97, 107, 97, 103, 92, 519); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11440, 59, 166, 166, 120, 191, 73, 108, 108, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11440, 59, 202, 202, 173, 119, 97, 144, 121, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11441, 46, 127, 127, 90, 99, 113, 99, 127, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11441, 46, 144, 144, 96, 86, 89, 85, 137, 321); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11443, 61, 178, 178, 173, 106, 81, 130, 179, 301); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11443, 61, 196, 196, 161, 119, 106, 127, 95, 654); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11443, 61, 184, 184, 142, 108, 179, 142, 128, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11444, 61, 184, 184, 177, 108, 142, 130, 142, 200); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11444, 61, 294, 294, 118, 124, 75, 81, 106, 258); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11444, 61, 178, 178, 100, 118, 161, 118, 136, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11445, 30, 68, 68, 36, 33, 75, 36, 63, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11445, 30, 86, 86, 54, 51, 93, 60, 81, 138); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11445, 30, 77, 77, 45, 42, 84, 48, 72, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11448, 20, 62, 62, 31, 33, 37, 36, 39, 533); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11449, 20, 57, 57, 36, 36, 36, 36, 24, 648); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11450, 20, 64, 64, 45, 37, 30, 31, 29, 641); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11451, 20, 55, 55, 32, 34, 42, 38, 24, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11452, 20, 62, 62, 32, 35, 41, 33, 41, 642); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11453, 20, 55, 55, 46, 32, 34, 32, 38, 253); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11454, 20, 55, 55, 47, 36, 24, 28, 35, 278); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11455, 20, 59, 59, 34, 32, 30, 38, 34, 45); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11456, 20, 62, 62, 31, 38, 35, 35, 31, 655); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11457, 20, 53, 53, 28, 26, 32, 52, 40, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11458, 20, 61, 61, 48, 40, 36, 60, 28, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11459, 20, 63, 63, 38, 31, 37, 35, 33, 643); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11460, 20, 49, 49, 30, 35, 24, 27, 35, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11461, 20, 57, 57, 38, 46, 26, 26, 34, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11462, 36, 98, 98, 53, 46, 46, 46, 71, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11462, 36, 102, 102, 46, 61, 86, 61, 57, 276); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11463, 63, 139, 139, 108, 134, 120, 96, 68, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11463, 63, 157, 157, 96, 80, 80, 74, 134, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11463, 63, 196, 196, 172, 128, 109, 96, 144, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11464, 11, 34, 34, 22, 18, 14, 18, 21, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11465, 60, 133, 133, 103, 128, 115, 92, 65, 403); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11465, 60, 150, 150, 92, 77, 77, 71, 128, 170); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11465, 60, 187, 187, 164, 122, 104, 92, 138, 277); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11466, 43, 123, 123, 96, 63, 96, 63, 111, 256); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11467, 22, 70, 70, 32, 34, 39, 41, 28, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11468, 25, 79, 79, 36, 38, 44, 46, 31, 115); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11469, 25, 71, 71, 45, 59, 39, 54, 35, 491); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11470, 64, 161, 161, 94, 89, 111, 92, 98, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11470, 64, 180, 180, 168, 194, 104, 111, 149, 612); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11471, 36, 98, 98, 53, 46, 46, 46, 71, 482); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11471, 36, 109, 109, 61, 71, 97, 71, 82, 272); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11472, 10, 32, 32, 19, 16, 15, 16, 17, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11472, 10, 31, 31, 18, 16, 18, 16, 21, 614); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11473, 60, 181, 181, 140, 107, 176, 140, 126, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11473, 60, 199, 199, 158, 122, 146, 122, 140, 23); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11473, 60, 163, 163, 92, 134, 200, 134, 122, 306); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11474, 30, 73, 73, 36, 36, 54, 48, 45, 154); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11475, 63, 191, 191, 109, 84, 143, 80, 142, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11475, 63, 226, 226, 142, 107, 142, 119, 113, 103); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11475, 63, 250, 250, 124, 118, 152, 143, 100, 623); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11476, 31, 92, 92, 40, 59, 65, 102, 59, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11476, 31, 86, 86, 62, 53, 62, 53, 80, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11476, 31, 96, 96, 52, 65, 80, 65, 76, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11477, 33, 91, 91, 79, 92, 46, 46, 39, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11478, 29, 69, 69, 41, 108, 32, 41, 56, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11478, 33, 104, 104, 72, 148, 53, 59, 36, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11479, 7, 25, 25, 18, 21, 11, 11, 10, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11479, 7, 24, 24, 13, 29, 11, 13, 17, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11480, 33, 97, 97, 82, 63, 69, 69, 86, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11481, 31, 95, 95, 65, 47, 37, 37, 37, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11481, 31, 101, 101, 78, 59, 47, 53, 44, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11482, 31, 73, 73, 44, 115, 34, 44, 59, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11483, 29, 69, 69, 41, 108, 32, 41, 56, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11483, 29, 69, 69, 41, 108, 32, 41, 56, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11484, 33, 104, 104, 72, 148, 53, 59, 36, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11485, 28, 67, 67, 40, 104, 31, 40, 54, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11485, 28, 67, 67, 40, 104, 31, 40, 54, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11485, 28, 67, 67, 40, 104, 31, 40, 54, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11486, 9, 34, 34, 22, 17, 14, 14, 14, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11487, 27, 68, 68, 57, 68, 30, 30, 25, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11487, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11487, 31, 73, 73, 44, 115, 34, 44, 59, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11488, 31, 73, 73, 44, 115, 34, 44, 59, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11488, 31, 86, 86, 75, 87, 44, 44, 37, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11489, 37, 115, 115, 81, 166, 59, 66, 40, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11490, 33, 81, 81, 69, 82, 36, 36, 30, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11490, 33, 81, 81, 69, 82, 36, 36, 30, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11490, 36, 116, 116, 89, 68, 53, 61, 50, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11491, 6, 22, 22, 16, 19, 10, 10, 9, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11491, 8, 32, 32, 20, 15, 13, 13, 13, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11492, 35, 103, 103, 84, 57, 87, 77, 82, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11493, 33, 101, 101, 69, 49, 39, 39, 39, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11493, 33, 107, 107, 82, 63, 49, 56, 46, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11494, 37, 78, 78, 44, 70, 88, 59, 51, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11495, 35, 75, 75, 42, 66, 84, 56, 49, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11495, 35, 75, 75, 42, 66, 84, 56, 49, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11496, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11496, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11496, 32, 69, 69, 38, 61, 77, 51, 45, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11497, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11497, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11497, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11498, 9, 29, 29, 22, 26, 13, 13, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11499, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11499, 36, 76, 76, 43, 68, 86, 57, 50, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11500, 34, 73, 73, 41, 64, 81, 54, 47, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11500, 34, 93, 93, 81, 95, 47, 47, 41, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11500, 34, 103, 103, 71, 51, 41, 41, 41, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11501, 33, 99, 99, 54, 53, 67, 53, 92, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11502, 32, 93, 93, 44, 48, 44, 48, 51, 273); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11502, 32, 88, 88, 45, 44, 51, 44, 62, 502); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11503, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11503, 34, 131, 131, 109, 58, 51, 61, 77, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11504, 35, 134, 134, 112, 59, 52, 63, 79, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11505, 32, 93, 93, 65, 56, 48, 43, 58, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11505, 32, 93, 93, 65, 56, 48, 43, 58, 489); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11506, 29, 84, 84, 63, 41, 41, 41, 58, 274); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11507, 24, 66, 66, 39, 36, 39, 36, 44, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11507, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11508, 28, 90, 90, 51, 45, 51, 45, 53, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11508, 28, 81, 81, 62, 37, 31, 40, 53, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11509, 25, 86, 86, 66, 56, 34, 39, 34, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11510, 24, 66, 66, 39, 36, 39, 36, 44, 475); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11510, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11511, 17, 51, 51, 36, 40, 19, 19, 16, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11511, 17, 51, 51, 36, 40, 19, 19, 16, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11511, 17, 58, 58, 38, 29, 19, 23, 23, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11512, 35, 104, 104, 57, 56, 71, 56, 97, 231); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11513, 64, 212, 212, 104, 117, 124, 117, 85, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11513, 64, 199, 199, 130, 130, 130, 130, 130, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11514, 24, 59, 59, 37, 37, 44, 42, 34, 501); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11514, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11515, 34, 114, 114, 88, 75, 44, 51, 44, 524); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11515, 34, 103, 103, 88, 88, 51, 44, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11516, 33, 101, 101, 86, 86, 49, 43, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11516, 33, 101, 101, 86, 86, 49, 43, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11516, 33, 101, 101, 86, 86, 49, 43, 30, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11517, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11517, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11517, 24, 59, 59, 37, 37, 44, 42, 34, 501); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11518, 18, 54, 54, 38, 42, 20, 20, 16, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11518, 18, 61, 61, 40, 31, 20, 24, 24, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11519, 19, 64, 64, 42, 32, 21, 25, 25, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11520, 28, 76, 76, 55, 34, 34, 34, 51, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11520, 28, 81, 81, 62, 37, 31, 40, 53, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11521, 64, 161, 161, 136, 136, 98, 98, 92, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11521, 64, 237, 237, 200, 104, 92, 111, 140, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11522, 24, 66, 66, 39, 36, 39, 36, 44, 474); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11522, 24, 78, 78, 52, 40, 25, 30, 30, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11523, 19, 64, 64, 42, 32, 21, 25, 25, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11524, 60, 157, 157, 140, 164, 80, 80, 68, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11524, 60, 133, 133, 80, 218, 62, 80, 110, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11524, 60, 187, 187, 170, 182, 92, 104, 80, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11525, 60, 157, 157, 116, 128, 56, 56, 44, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11525, 60, 157, 157, 140, 164, 80, 80, 68, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11525, 60, 223, 223, 188, 98, 86, 104, 132, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11526, 62, 183, 183, 99, 126, 155, 126, 147, 280); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11527, 31, 83, 83, 60, 37, 37, 37, 56, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11528, 60, 139, 139, 122, 146, 62, 62, 50, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11528, 60, 181, 181, 128, 266, 92, 104, 62, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11528, 60, 175, 175, 152, 152, 86, 74, 50, 480); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11529, 61, 105, 105, 94, 57, 69, 81, 142, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11529, 61, 202, 202, 185, 124, 106, 130, 94, 125); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11530, 12, 37, 37, 27, 18, 26, 22, 29, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11530, 12, 35, 35, 24, 32, 23, 20, 17, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11531, 60, 157, 157, 140, 164, 80, 80, 68, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11531, 60, 133, 133, 80, 218, 62, 80, 110, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11531, 60, 181, 181, 128, 266, 92, 104, 62, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11532, 61, 202, 202, 100, 112, 118, 112, 81, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11532, 61, 190, 190, 124, 124, 124, 124, 124, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11532, 76, 280, 280, 153, 169, 176, 169, 131, 267); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11533, 31, 89, 89, 68, 40, 34, 44, 58, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11534, 12, 37, 37, 22, 18, 17, 18, 19, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11534, 12, 37, 37, 24, 18, 24, 22, 32, 532); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11535, 61, 153, 153, 118, 118, 106, 106, 87, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11535, 61, 135, 135, 124, 87, 87, 112, 173, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11536, 12, 35, 35, 26, 18, 17, 18, 23, 503); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11536, 12, 37, 37, 23, 20, 15, 20, 22, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11537, 30, 74, 74, 39, 48, 39, 57, 48, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11537, 30, 80, 80, 59, 36, 36, 36, 54, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11538, 31, 76, 76, 40, 50, 40, 59, 50, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11539, 30, 86, 86, 66, 39, 33, 42, 56, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11539, 30, 74, 74, 39, 48, 39, 57, 48, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11540, 61, 190, 190, 148, 112, 87, 100, 81, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11540, 61, 202, 202, 139, 118, 139, 130, 100, 215); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11541, 60, 223, 223, 188, 98, 86, 104, 132, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11541, 60, 188, 188, 149, 119, 128, 116, 128, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11541, 60, 217, 217, 182, 170, 80, 80, 74, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11542, 60, 145, 145, 62, 44, 128, 104, 104, 553); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11542, 60, 163, 163, 110, 152, 110, 170, 116, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11542, 60, 139, 139, 68, 62, 170, 110, 152, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11543, 17, 58, 58, 38, 29, 19, 23, 23, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11544, 29, 84, 84, 64, 38, 32, 41, 54, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11544, 29, 72, 72, 38, 47, 38, 56, 47, 424); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11544, 29, 78, 78, 57, 35, 35, 35, 53, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11545, 30, 80, 80, 59, 36, 36, 36, 54, 495); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11545, 30, 86, 86, 66, 39, 33, 42, 56, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11546, 61, 153, 153, 130, 130, 94, 94, 87, 74); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11546, 61, 227, 227, 191, 100, 87, 106, 134, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11547, 61, 190, 190, 124, 124, 124, 124, 124, 189); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11547, 61, 208, 208, 161, 124, 112, 124, 87, 296); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11548, 17, 53, 53, 40, 24, 21, 26, 34, 229); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11549, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11550, 46, 123, 123, 108, 127, 62, 62, 53, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11550, 47, 125, 125, 111, 130, 64, 64, 54, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11550, 48, 152, 152, 137, 147, 75, 84, 65, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11551, 50, 138, 138, 78, 168, 98, 173, 63, 205); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11552, 22, 44, 44, 37, 23, 28, 32, 54, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11553, 21, 61, 61, 44, 48, 23, 23, 18, 551); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11554, 22, 70, 70, 48, 34, 28, 28, 28, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11555, 58, 164, 164, 110, 89, 80, 112, 124, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11555, 58, 181, 181, 78, 101, 130, 153, 118, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11555, 57, 167, 167, 93, 96, 116, 119, 93, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11556, 62, 181, 181, 126, 107, 138, 107, 132, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11556, 62, 150, 150, 101, 64, 126, 89, 107, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11556, 63, 164, 164, 71, 90, 96, 166, 134, 398); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11556, 62, 168, 168, 163, 114, 101, 101, 151, 91); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11557, 100, 336, 336, 201, 251, 121, 181, 241, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11557, 100, 302, 302, 181, 163, 141, 163, 241, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11557, 100, 306, 306, 201, 221, 261, 301, 261, 382); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11557, 100, 316, 316, 221, 201, 181, 201, 301, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11557, 100, 148, 148, 221, 131, 101, 101, 121, 318); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11557, 100, 346, 346, 241, 241, 241, 241, 241, 380); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11558, 50, 133, 133, 127, 128, 117, 98, 75, 395); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11558, 50, 138, 138, 73, 93, 103, 103, 163, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11558, 50, 133, 133, 107, 128, 137, 98, 75, 385); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11558, 50, 178, 178, 113, 153, 68, 88, 78, 400); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11558, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11558, 50, 153, 153, 128, 98, 128, 98, 68, 401); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11559, 50, 148, 148, 83, 85, 103, 105, 83, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11559, 50, 139, 139, 113, 68, 73, 73, 183, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11559, 50, 151, 151, 138, 83, 83, 83, 113, 69); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11559, 50, 138, 138, 108, 83, 73, 73, 148, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11559, 50, 148, 148, 103, 88, 113, 88, 108, 127); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11559, 50, 153, 153, 103, 93, 88, 98, 113, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11560, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11560, 50, 148, 148, 143, 63, 118, 63, 118, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11560, 50, 138, 138, 153, 103, 83, 83, 93, 319); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11560, 50, 118, 118, 63, 63, 93, 63, 43, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11560, 50, 218, 218, 93, 68, 108, 73, 68, 99); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11560, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11561, 50, 123, 123, 118, 73, 63, 73, 98, 358); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11561, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11561, 50, 248, 248, 113, 68, 113, 68, 83, 2); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11561, 50, 158, 158, 108, 118, 53, 53, 48, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11561, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11561, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11562, 50, 128, 128, 93, 73, 73, 73, 93, 221); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11562, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11562, 50, 133, 133, 118, 138, 68, 68, 58, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11562, 50, 148, 148, 78, 78, 103, 83, 68, 155); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11562, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11562, 50, 148, 148, 107, 93, 88, 93, 74, 224); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11563, 50, 156, 156, 107, 101, 132, 108, 123, 377); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11563, 50, 143, 143, 148, 123, 78, 93, 108, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11563, 50, 164, 164, 104, 120, 104, 130, 66, 5); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11563, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11563, 50, 143, 143, 98, 93, 118, 93, 118, 381); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11563, 50, 138, 138, 113, 163, 73, 73, 63, 81); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11564, 50, 138, 138, 83, 83, 83, 83, 83, 102); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11564, 50, 162, 162, 94, 66, 94, 66, 71, 90); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11564, 50, 156, 156, 93, 84, 73, 84, 123, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11564, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11564, 50, 178, 178, 93, 93, 88, 88, 68, 178); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11564, 50, 163, 163, 99, 87, 68, 78, 113, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11565, 50, 138, 138, 108, 83, 108, 83, 78, 419); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11565, 50, 177, 177, 91, 106, 95, 110, 74, 108); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11565, 50, 138, 138, 113, 93, 83, 143, 63, 88); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11565, 50, 188, 188, 101, 96, 99, 94, 83, 464); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11565, 50, 133, 133, 118, 78, 58, 98, 138, 135); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11565, 50, 178, 178, 96, 106, 96, 106, 78, 197); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11566, 50, 118, 118, 83, 63, 63, 63, 53, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11566, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11566, 50, 158, 158, 103, 73, 63, 73, 48, 326); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11566, 50, 118, 118, 63, 58, 73, 123, 93, 511); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11566, 50, 118, 118, 88, 118, 83, 68, 58, 338); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11566, 50, 128, 128, 83, 68, 123, 103, 88, 71); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11567, 16, 50, 50, 18, 21, 33, 36, 29, 417); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11567, 16, 39, 39, 21, 33, 41, 28, 25, 225); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11567, 16, 50, 50, 29, 23, 31, 25, 21, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11568, 50, 158, 158, 68, 88, 113, 133, 103, 235); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11568, 50, 128, 128, 83, 118, 143, 93, 93, 33); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11568, 50, 138, 138, 83, 63, 88, 68, 58, 7); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11569, 100, 326, 326, 241, 221, 291, 211, 221, 339); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11569, 100, 286, 286, 211, 171, 251, 211, 281, 369); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11570, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11570, 50, 173, 173, 108, 108, 88, 88, 58, 34); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11570, 50, 148, 148, 138, 83, 138, 83, 78, 80); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11570, 50, 153, 153, 123, 133, 68, 78, 88, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11570, 50, 138, 138, 93, 128, 93, 143, 98, 93); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11570, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11571, 60, 169, 169, 140, 116, 92, 92, 128, 418); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11571, 60, 175, 175, 134, 110, 98, 98, 74, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11571, 61, 202, 202, 185, 118, 118, 118, 94, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11572, 68, 231, 231, 199, 136, 111, 165, 139, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11572, 68, 245, 245, 206, 192, 90, 90, 83, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11572, 68, 184, 184, 131, 145, 165, 145, 185, 38); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11572, 68, 190, 190, 83, 124, 138, 219, 124, 286); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11572, 68, 197, 197, 131, 111, 172, 111, 172, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11573, 30, 95, 95, 63, 57, 54, 60, 69, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11573, 30, 98, 98, 75, 57, 45, 51, 42, 123); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11574, 50, 128, 128, 118, 203, 108, 68, 93, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11574, 50, 163, 163, 83, 88, 158, 128, 123, 559); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11574, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11574, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11575, 50, 186, 186, 153, 118, 103, 108, 125, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11575, 50, 158, 158, 93, 93, 113, 123, 93, 87); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11575, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11575, 50, 170, 170, 128, 113, 148, 113, 121, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11575, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11575, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11576, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11576, 50, 186, 186, 153, 118, 103, 108, 125, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11576, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11576, 50, 170, 170, 128, 113, 148, 113, 121, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11576, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11576, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11577, 50, 168, 168, 98, 98, 113, 123, 93, 348); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11577, 50, 153, 153, 118, 118, 118, 118, 108, 117); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11577, 50, 192, 192, 108, 93, 108, 103, 53, 629); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11577, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11577, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11577, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11578, 50, 186, 186, 153, 118, 103, 108, 125, 558); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11578, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11578, 50, 148, 148, 153, 123, 78, 103, 88, 196); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11578, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11578, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11579, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11579, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11579, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11579, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11579, 50, 168, 168, 113, 108, 148, 113, 123, 346); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11579, 50, 189, 189, 106, 91, 115, 105, 62, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11580, 50, 169, 169, 113, 129, 153, 129, 100, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11580, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11580, 50, 192, 192, 108, 93, 108, 103, 53, 629); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11580, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11580, 50, 173, 173, 148, 102, 83, 123, 104, 158); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11580, 50, 189, 189, 106, 91, 115, 105, 62, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11581, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11581, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11581, 50, 163, 163, 83, 88, 158, 128, 123, 559); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11581, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11581, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11582, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11582, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11582, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11582, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11582, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11583, 50, 188, 188, 158, 83, 73, 88, 111, 290); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11583, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11583, 50, 189, 189, 106, 91, 115, 105, 62, 143); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11583, 50, 173, 173, 158, 103, 133, 103, 123, 161); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11583, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11583, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11584, 50, 128, 128, 98, 98, 88, 88, 73, 75); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11584, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11584, 50, 170, 170, 128, 113, 148, 113, 121, 563); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11584, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11584, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11584, 50, 128, 128, 73, 100, 118, 100, 114, 270); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11585, 50, 178, 178, 157, 133, 118, 123, 84, 114); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11585, 50, 158, 158, 158, 153, 118, 113, 93, 164); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11585, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11585, 50, 158, 158, 113, 103, 153, 133, 133, 461); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11585, 50, 178, 178, 133, 113, 108, 113, 83, 370); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11586, 50, 128, 128, 118, 118, 58, 133, 93, 442); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11586, 50, 198, 198, 93, 143, 98, 153, 108, 565); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11586, 50, 169, 169, 152, 113, 95, 113, 131, 521); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11586, 50, 169, 169, 113, 129, 153, 129, 100, 564); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11586, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11587, 32, 98, 98, 58, 58, 51, 51, 61, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11587, 32, 98, 98, 64, 54, 83, 54, 83, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11588, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11588, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11589, 27, 81, 81, 40, 44, 54, 55, 60, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11589, 27, 81, 81, 54, 44, 40, 55, 60, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11590, 30, 89, 89, 44, 48, 59, 60, 66, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11590, 30, 89, 89, 59, 48, 44, 60, 66, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11591, 33, 97, 97, 47, 53, 65, 66, 72, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11591, 33, 97, 97, 65, 53, 47, 66, 72, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11592, 36, 105, 105, 51, 57, 70, 71, 79, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11592, 36, 105, 105, 70, 57, 51, 71, 79, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11593, 39, 113, 113, 55, 61, 75, 77, 85, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11593, 39, 113, 113, 75, 61, 55, 77, 85, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11594, 31, 95, 95, 56, 56, 50, 50, 59, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11594, 31, 95, 95, 62, 53, 81, 53, 81, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11595, 25, 76, 76, 50, 41, 37, 51, 56, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11595, 25, 76, 76, 37, 41, 50, 51, 56, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11596, 30, 89, 89, 59, 48, 44, 60, 66, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11596, 30, 89, 89, 44, 48, 59, 60, 66, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11597, 33, 97, 97, 65, 53, 47, 66, 72, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11597, 33, 97, 97, 47, 53, 65, 66, 72, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11598, 36, 105, 105, 70, 57, 51, 71, 79, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11598, 36, 105, 105, 51, 57, 70, 71, 79, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11599, 39, 113, 113, 75, 61, 55, 77, 85, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11599, 39, 113, 113, 55, 61, 75, 77, 85, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11600, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11600, 45, 109, 109, 48, 70, 57, 79, 108, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11601, 27, 79, 79, 41, 52, 41, 63, 49, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11601, 27, 79, 79, 52, 41, 68, 41, 49, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11602, 100, 326, 326, 301, 191, 191, 191, 151, 122); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11602, 100, 316, 316, 193, 169, 131, 151, 221, 233); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11603, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11603, 50, 128, 128, 75, 71, 88, 73, 78, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11605, 30, 87, 87, 59, 50, 48, 48, 54, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11605, 30, 92, 92, 53, 56, 48, 48, 49, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11606, 55, 173, 173, 137, 109, 118, 107, 118, 14); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11606, 55, 183, 183, 126, 120, 107, 118, 108, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11607, 29, 87, 87, 73, 56, 61, 61, 76, 32); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11607, 29, 91, 91, 59, 58, 62, 73, 73, 9); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11608, 19, 58, 58, 44, 27, 44, 27, 46, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11608, 19, 58, 58, 34, 34, 44, 44, 44, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11609, 19, 62, 62, 42, 30, 25, 25, 25, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11609, 19, 47, 47, 27, 32, 27, 32, 34, 466); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11610, 23, 68, 68, 52, 32, 52, 32, 55, 428); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11610, 23, 68, 68, 40, 40, 52, 52, 52, 147); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11611, 23, 66, 66, 43, 33, 33, 39, 52, 219); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11611, 23, 66, 66, 43, 29, 40, 27, 52, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11612, 22, 61, 61, 54, 92, 50, 32, 43, 22); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11612, 22, 55, 55, 32, 83, 26, 32, 43, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11613, 43, 102, 102, 54, 63, 46, 46, 46, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11613, 43, 102, 102, 46, 46, 54, 63, 46, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11614, 41, 98, 98, 48, 44, 118, 77, 105, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11614, 46, 118, 118, 69, 65, 81, 67, 72, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11615, 45, 107, 107, 52, 48, 129, 84, 115, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11615, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11616, 48, 113, 113, 55, 51, 137, 89, 123, 92); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11616, 52, 163, 163, 109, 104, 122, 106, 112, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11617, 54, 142, 142, 78, 73, 170, 127, 154, 172); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11617, 56, 175, 175, 117, 112, 131, 114, 120, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11618, 44, 127, 127, 104, 71, 108, 95, 102, 199); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11618, 43, 132, 132, 84, 67, 110, 93, 46, 364); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11619, 36, 109, 109, 64, 64, 57, 57, 68, 84); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11619, 36, 109, 109, 71, 61, 93, 61, 93, 66); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11620, 51, 176, 176, 104, 130, 64, 94, 125, 183); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11620, 51, 155, 155, 125, 120, 64, 94, 135, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11621, 29, 87, 87, 42, 47, 57, 58, 64, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11621, 29, 87, 87, 57, 47, 42, 58, 64, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11622, 34, 100, 100, 49, 54, 66, 68, 75, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11622, 34, 100, 100, 66, 54, 49, 68, 75, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11623, 41, 119, 119, 58, 64, 79, 81, 89, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11623, 41, 119, 119, 79, 64, 58, 81, 89, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11624, 45, 129, 129, 63, 70, 86, 88, 97, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11624, 45, 129, 129, 86, 70, 63, 88, 97, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11625, 51, 145, 145, 71, 79, 97, 99, 110, 383); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11625, 51, 145, 145, 97, 79, 71, 99, 110, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11626, 27, 79, 79, 52, 41, 68, 41, 49, 175); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11626, 27, 79, 79, 41, 52, 41, 63, 49, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11627, 11, 31, 31, 21, 16, 14, 16, 24, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11627, 11, 32, 32, 22, 18, 17, 20, 21, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11628, 14, 40, 40, 26, 18, 18, 18, 29, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11629, 10, 29, 29, 19, 15, 13, 15, 23, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11629, 10, 29, 29, 19, 15, 13, 15, 23, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11629, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11630, 14, 37, 37, 25, 19, 17, 19, 30, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11630, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11630, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11631, 15, 39, 39, 27, 20, 17, 20, 32, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11631, 15, 42, 42, 28, 19, 19, 19, 31, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11632, 17, 63, 63, 33, 33, 24, 24, 16, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11633, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11633, 14, 43, 43, 31, 33, 15, 18, 21, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11635, 21, 53, 53, 37, 31, 29, 35, 35, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11636, 18, 56, 56, 37, 32, 31, 31, 34, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11637, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11637, 19, 51, 51, 28, 25, 23, 27, 32, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11638, 17, 43, 43, 30, 23, 19, 23, 35, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11638, 17, 43, 43, 30, 23, 19, 23, 35, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11638, 17, 51, 51, 38, 31, 28, 34, 44, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11639, 24, 66, 66, 49, 54, 23, 28, 32, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11640, 6, 21, 21, 13, 11, 10, 11, 15, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11640, 8, 27, 27, 15, 13, 12, 14, 16, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11641, 10, 34, 34, 17, 17, 13, 13, 11, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11642, 10, 31, 31, 24, 15, 15, 17, 22, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11642, 12, 28, 28, 22, 15, 17, 20, 32, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11643, 33, 104, 104, 82, 89, 46, 53, 59, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11643, 33, 110, 110, 76, 69, 63, 69, 102, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11644, 33, 91, 91, 70, 56, 49, 63, 80, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11644, 33, 94, 94, 72, 62, 59, 69, 69, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11645, 4, 17, 17, 10, 9, 8, 9, 12, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11646, 15, 39, 39, 27, 20, 17, 20, 32, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11647, 21, 61, 61, 46, 37, 33, 41, 53, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11648, 30, 83, 83, 64, 51, 45, 57, 74, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11649, 37, 101, 101, 78, 62, 55, 70, 90, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11650, 2, 14, 14, 7, 7, 7, 7, 7, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11650, 4, 17, 17, 10, 9, 8, 9, 12, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11651, 35, 96, 96, 66, 49, 66, 52, 59, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11652, 7, 23, 23, 15, 12, 11, 12, 17, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11652, 10, 33, 33, 23, 25, 12, 14, 16, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11652, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11652, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11653, 35, 103, 103, 80, 63, 60, 60, 87, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11654, 5, 20, 20, 12, 10, 9, 9, 10, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11654, 3, 16, 16, 9, 7, 7, 7, 11, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11655, 19, 50, 50, 23, 27, 23, 27, 34, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11656, 6, 22, 22, 11, 13, 10, 10, 10, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11656, 8, 27, 27, 16, 12, 12, 12, 21, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11657, 5, 20, 20, 9, 10, 9, 10, 12, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11658, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11659, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11659, 30, 97, 97, 57, 52, 45, 52, 75, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11660, 31, 89, 89, 68, 53, 47, 47, 93, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11660, 33, 106, 106, 63, 57, 49, 57, 82, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11661, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11661, 32, 104, 104, 67, 67, 51, 51, 74, 100); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11661, 36, 115, 115, 68, 61, 53, 61, 89, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11662, 20, 57, 57, 40, 52, 28, 28, 24, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11663, 14, 39, 39, 18, 21, 18, 21, 26, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11663, 16, 43, 43, 20, 23, 20, 23, 29, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11664, 8, 26, 26, 12, 14, 12, 14, 17, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11664, 10, 37, 37, 24, 18, 15, 15, 15, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11665, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11665, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11665, 6, 22, 22, 16, 19, 10, 10, 9, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11666, 18, 50, 50, 47, 27, 27, 27, 15, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11666, 20, 68, 68, 40, 36, 32, 36, 52, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11667, 12, 34, 34, 22, 17, 16, 16, 17, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11667, 16, 47, 47, 33, 42, 23, 23, 20, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11667, 14, 40, 40, 22, 21, 28, 21, 28, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11668, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11669, 4, 18, 18, 8, 9, 8, 9, 11, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11669, 3, 16, 16, 9, 7, 7, 7, 11, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11670, 17, 46, 46, 21, 25, 21, 25, 31, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11670, 17, 56, 56, 25, 29, 25, 29, 24, 542); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11671, 5, 20, 20, 9, 10, 9, 10, 12, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11671, 7, 25, 25, 13, 14, 11, 11, 11, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11672, 5, 20, 20, 12, 10, 9, 9, 10, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11673, 27, 84, 84, 63, 52, 47, 47, 52, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11674, 28, 81, 81, 62, 48, 43, 43, 85, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11674, 30, 92, 92, 69, 57, 51, 51, 57, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11675, 31, 89, 89, 68, 53, 47, 47, 93, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11675, 29, 94, 94, 56, 50, 44, 50, 73, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11675, 33, 101, 101, 76, 63, 56, 56, 63, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11676, 34, 97, 97, 75, 58, 51, 51, 102, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11676, 32, 103, 103, 61, 55, 48, 55, 80, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11676, 36, 109, 109, 82, 68, 61, 61, 68, 153); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11677, 14, 39, 39, 18, 21, 18, 21, 26, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11677, 14, 43, 43, 29, 38, 21, 21, 18, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11677, 14, 40, 40, 22, 21, 28, 21, 28, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11678, 25, 63, 63, 29, 34, 29, 34, 44, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11678, 25, 64, 64, 36, 34, 46, 34, 46, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11679, 19, 54, 54, 38, 49, 27, 27, 23, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11680, 14, 39, 39, 18, 21, 18, 21, 26, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11680, 16, 43, 43, 20, 23, 20, 23, 29, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11681, 19, 52, 52, 49, 28, 28, 28, 15, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11682, 9, 34, 34, 22, 17, 14, 14, 14, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11683, 8, 30, 30, 14, 17, 14, 17, 13, 450); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11683, 8, 27, 27, 12, 12, 14, 15, 12, 448); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11684, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11685, 15, 45, 45, 31, 40, 22, 22, 19, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11685, 13, 38, 38, 21, 20, 26, 20, 26, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11686, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11686, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11687, 11, 31, 31, 21, 16, 14, 16, 24, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11687, 11, 32, 32, 22, 18, 17, 20, 21, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11688, 17, 43, 43, 30, 23, 19, 23, 35, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11688, 17, 45, 45, 31, 26, 24, 29, 29, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11689, 28, 78, 78, 60, 48, 43, 54, 69, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11689, 28, 67, 67, 48, 39, 37, 45, 45, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11690, 48, 128, 128, 100, 79, 70, 89, 115, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11690, 48, 132, 132, 103, 88, 84, 98, 99, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11691, 14, 40, 40, 26, 18, 18, 18, 29, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11692, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11692, 14, 43, 43, 31, 33, 15, 18, 21, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11693, 20, 51, 51, 36, 29, 28, 33, 34, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11693, 20, 57, 57, 42, 46, 20, 24, 28, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11694, 28, 81, 81, 62, 53, 51, 59, 59, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11694, 28, 76, 76, 57, 62, 26, 31, 37, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11695, 48, 132, 132, 103, 88, 84, 98, 99, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11695, 48, 147, 147, 118, 127, 65, 75, 84, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11696, 100, 276, 276, 251, 161, 161, 181, 231, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11696, 100, 336, 336, 191, 261, 241, 201, 101, 121); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11698, 17, 63, 63, 33, 33, 24, 24, 16, 330); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11699, 18, 56, 56, 37, 32, 31, 31, 34, 13); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11700, 48, 128, 128, 100, 79, 70, 89, 115, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11700, 48, 135, 135, 79, 75, 70, 70, 90, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11701, 53, 140, 140, 109, 87, 77, 98, 126, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11701, 53, 170, 170, 108, 103, 98, 98, 131, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11702, 19, 54, 54, 40, 44, 19, 23, 27, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11702, 19, 51, 51, 28, 25, 23, 27, 32, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11703, 21, 53, 53, 37, 31, 29, 35, 35, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11704, 15, 39, 39, 27, 20, 17, 20, 32, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11704, 15, 42, 42, 28, 19, 19, 19, 31, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11705, 33, 77, 77, 56, 45, 43, 52, 53, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11705, 33, 77, 77, 56, 45, 43, 52, 53, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11705, 34, 93, 93, 72, 58, 51, 64, 83, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11706, 10, 29, 29, 19, 15, 13, 15, 23, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11706, 10, 29, 29, 19, 15, 13, 15, 23, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11706, 10, 31, 31, 17, 15, 14, 16, 19, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11707, 47, 135, 135, 106, 68, 101, 64, 73, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11707, 47, 135, 135, 106, 68, 101, 64, 73, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11707, 49, 155, 155, 125, 86, 120, 91, 91, 31); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11708, 14, 43, 43, 31, 33, 15, 18, 21, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11708, 14, 38, 38, 26, 22, 21, 25, 25, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11709, 19, 56, 56, 42, 34, 30, 38, 48, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11709, 19, 49, 49, 34, 28, 27, 32, 32, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11709, 19, 51, 51, 28, 25, 23, 27, 32, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11710, 27, 76, 76, 58, 47, 41, 52, 67, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11710, 27, 65, 65, 47, 38, 36, 43, 44, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11710, 27, 87, 87, 57, 52, 49, 55, 63, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11711, 52, 137, 137, 107, 86, 75, 96, 124, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11711, 52, 143, 143, 112, 95, 91, 105, 106, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11711, 52, 158, 158, 106, 96, 91, 101, 117, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11713, 17, 43, 43, 30, 23, 19, 23, 35, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11713, 17, 43, 43, 30, 23, 19, 23, 35, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11713, 17, 51, 51, 38, 31, 28, 34, 44, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11714, 22, 53, 53, 37, 28, 23, 28, 44, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11714, 22, 64, 64, 48, 39, 34, 43, 55, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11714, 22, 64, 64, 48, 39, 34, 43, 55, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11715, 47, 125, 125, 98, 78, 68, 87, 113, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11715, 47, 125, 125, 98, 78, 68, 87, 113, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11715, 47, 125, 125, 98, 78, 68, 87, 113, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11716, 15, 42, 42, 26, 19, 19, 19, 28, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11716, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11716, 18, 50, 50, 32, 27, 32, 27, 33, 577); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11717, 7, 24, 24, 11, 13, 11, 13, 11, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11718, 19, 65, 65, 44, 31, 32, 31, 36, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11719, 31, 99, 99, 68, 47, 50, 47, 56, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11720, 55, 169, 169, 118, 80, 85, 80, 96, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11721, 8, 27, 27, 20, 23, 12, 12, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11721, 8, 26, 26, 15, 33, 12, 15, 19, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11722, 27, 62, 62, 33, 30, 68, 33, 57, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11722, 29, 75, 75, 44, 41, 82, 47, 70, 137); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11723, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11724, 5, 21, 21, 13, 10, 10, 10, 11, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11725, 5, 22, 22, 11, 10, 10, 10, 9, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11725, 5, 20, 20, 11, 10, 9, 10, 12, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11726, 16, 51, 51, 30, 25, 23, 23, 34, 539); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11726, 16, 56, 56, 26, 26, 29, 30, 21, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11726, 16, 56, 56, 37, 27, 28, 27, 31, 457); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11727, 7, 29, 29, 18, 14, 12, 12, 12, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11728, 5, 20, 20, 12, 9, 9, 9, 12, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11729, 19, 51, 51, 32, 23, 23, 23, 34, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11730, 31, 86, 86, 62, 47, 40, 40, 65, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11731, 40, 108, 108, 79, 59, 51, 51, 83, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11732, 5, 18, 18, 7, 12, 8, 8, 14, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11732, 5, 20, 20, 12, 9, 9, 9, 12, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11733, 13, 43, 43, 21, 20, 18, 20, 17, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11733, 14, 40, 40, 22, 19, 18, 21, 25, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11733, 15, 46, 46, 31, 26, 22, 26, 35, 191); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11734, 18, 56, 56, 42, 29, 33, 29, 33, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11734, 18, 54, 54, 34, 24, 33, 22, 42, 203); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11734, 21, 65, 65, 44, 56, 27, 39, 48, 202); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11735, 8, 28, 28, 18, 13, 14, 13, 15, 576); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11736, 22, 66, 66, 50, 34, 39, 34, 39, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11736, 22, 74, 74, 50, 39, 37, 39, 44, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11737, 32, 91, 91, 70, 47, 54, 47, 54, 159); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11737, 32, 104, 104, 70, 54, 51, 54, 61, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11737, 32, 88, 88, 77, 90, 45, 45, 38, 89); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11738, 50, 158, 158, 143, 102, 118, 102, 93, 218); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11738, 50, 157, 157, 108, 83, 78, 83, 94, 174); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11738, 50, 158, 158, 143, 153, 78, 88, 68, 316); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11738, 50, 163, 163, 143, 93, 73, 83, 123, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11739, 9, 29, 29, 22, 26, 13, 13, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11739, 9, 28, 28, 16, 37, 13, 16, 20, 133); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11740, 20, 49, 49, 26, 24, 52, 26, 44, 136); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11740, 22, 79, 79, 34, 27, 39, 32, 43, 540); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11741, 11, 33, 33, 26, 30, 15, 15, 13, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11742, 5, 20, 20, 9, 11, 9, 11, 10, 516); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11743, 7, 24, 24, 11, 13, 11, 13, 11, 571); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11743, 6, 22, 22, 12, 11, 10, 11, 13, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11744, 20, 65, 65, 49, 32, 49, 32, 38, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11744, 21, 70, 70, 39, 31, 51, 30, 50, 602); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11744, 19, 54, 54, 30, 28, 29, 27, 34, 375); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11745, 8, 32, 32, 20, 15, 13, 13, 13, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11746, 5, 20, 20, 12, 9, 9, 9, 12, 549); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11747, 24, 69, 69, 49, 37, 32, 32, 52, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11748, 35, 117, 117, 101, 66, 52, 59, 87, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11749, 45, 147, 147, 129, 84, 66, 75, 111, 209); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11750, 8, 24, 24, 9, 16, 10, 11, 20, 572); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11751, 17, 51, 51, 36, 28, 24, 24, 38, 163); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11751, 20, 57, 57, 46, 34, 38, 38, 48, 128); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11751, 20, 67, 67, 31, 31, 35, 37, 25, 598); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11752, 6, 21, 21, 13, 11, 10, 11, 15, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11752, 8, 27, 27, 15, 13, 12, 14, 16, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11753, 10, 34, 34, 17, 17, 13, 13, 11, 460); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11754, 10, 31, 31, 24, 15, 15, 17, 22, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11754, 12, 28, 28, 22, 15, 17, 20, 32, 334); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11755, 27, 68, 68, 57, 33, 33, 39, 52, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11755, 33, 77, 77, 69, 49, 49, 63, 96, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11756, 38, 111, 111, 98, 64, 64, 71, 90, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11756, 40, 92, 92, 83, 59, 59, 75, 115, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11757, 47, 135, 135, 120, 78, 78, 87, 111, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11757, 58, 129, 129, 118, 83, 83, 107, 165, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11758, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11758, 42, 138, 138, 95, 87, 78, 87, 129, 190); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11759, 42, 113, 113, 88, 70, 62, 78, 101, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11759, 42, 117, 117, 91, 78, 74, 86, 87, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11759, 42, 117, 117, 99, 87, 70, 87, 45, 24); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11760, 4, 17, 17, 10, 9, 8, 9, 12, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11761, 34, 93, 93, 72, 58, 51, 64, 83, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11762, 40, 108, 108, 84, 67, 59, 75, 97, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11763, 54, 142, 142, 111, 89, 78, 100, 129, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11764, 2, 14, 14, 7, 7, 7, 7, 7, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11764, 4, 17, 17, 10, 9, 8, 9, 12, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11765, 44, 118, 118, 82, 60, 82, 64, 73, 227); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11766, 40, 124, 124, 83, 75, 71, 79, 91, 389); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11766, 40, 112, 112, 59, 75, 83, 83, 131, 37); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11767, 7, 23, 23, 15, 12, 11, 12, 17, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11767, 10, 33, 33, 23, 25, 12, 14, 16, 331); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11767, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11767, 8, 27, 27, 17, 12, 12, 12, 19, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11768, 38, 111, 111, 87, 68, 65, 65, 94, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11768, 42, 113, 113, 88, 70, 62, 78, 101, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11769, 63, 146, 146, 103, 65, 66, 66, 115, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11769, 63, 177, 177, 141, 109, 104, 104, 153, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11769, 63, 193, 193, 115, 104, 90, 104, 153, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11770, 24, 66, 66, 36, 37, 41, 37, 44, 544); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11770, 24, 66, 66, 44, 54, 30, 30, 40, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11771, 63, 134, 134, 84, 141, 65, 65, 78, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11771, 63, 183, 183, 146, 90, 146, 90, 110, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11771, 63, 158, 158, 52, 96, 59, 59, 65, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11772, 7, 25, 25, 15, 12, 12, 12, 13, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11773, 7, 25, 25, 15, 12, 12, 12, 13, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11773, 7, 25, 25, 15, 12, 12, 12, 13, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11773, 7, 25, 25, 15, 13, 11, 13, 15, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11774, 13, 40, 40, 22, 20, 22, 20, 26, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11774, 13, 40, 40, 22, 20, 22, 20, 26, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11774, 13, 40, 40, 22, 20, 22, 20, 26, 630); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11775, 24, 61, 61, 40, 61, 32, 51, 36, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11775, 24, 66, 66, 49, 35, 32, 35, 42, 645); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11776, 63, 171, 171, 96, 90, 78, 96, 84, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11776, 63, 183, 183, 109, 103, 141, 122, 141, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11776, 63, 164, 164, 129, 103, 90, 115, 149, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11777, 65, 195, 195, 151, 106, 112, 106, 177, 610); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11778, 63, 177, 177, 109, 84, 122, 84, 147, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11778, 63, 146, 146, 52, 65, 78, 128, 96, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11778, 63, 172, 172, 141, 84, 90, 90, 229, 459); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11779, 30, 95, 95, 89, 56, 72, 66, 72, 200); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11780, 30, 80, 80, 54, 66, 36, 36, 48, 492); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11780, 30, 95, 95, 74, 53, 74, 53, 76, 239); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11781, 16, 41, 41, 25, 29, 20, 23, 29, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11781, 16, 55, 55, 36, 28, 18, 21, 21, 504); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11782, 29, 92, 92, 53, 47, 53, 47, 55, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11782, 29, 78, 78, 38, 64, 38, 53, 29, 617); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11782, 29, 84, 84, 73, 67, 47, 55, 80, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11783, 7, 25, 25, 15, 13, 11, 13, 15, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11784, 61, 141, 141, 100, 75, 75, 75, 63, 573); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11784, 61, 147, 147, 63, 69, 51, 51, 81, 568); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11784, 61, 153, 153, 106, 136, 69, 69, 45, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11784, 61, 178, 178, 100, 102, 124, 127, 100, 315); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11784, 61, 166, 166, 148, 135, 94, 111, 163, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11785, 14, 37, 37, 22, 26, 18, 20, 26, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11785, 14, 41, 41, 26, 22, 17, 22, 25, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11786, 16, 47, 47, 28, 26, 22, 20, 24, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11786, 16, 46, 46, 28, 23, 21, 23, 24, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11787, 60, 139, 139, 98, 62, 63, 63, 110, 548); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11787, 60, 169, 169, 134, 104, 99, 99, 146, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11787, 60, 185, 185, 110, 99, 86, 99, 146, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11788, 60, 181, 181, 104, 92, 104, 92, 109, 275); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11788, 60, 247, 247, 104, 98, 158, 140, 104, 46); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11788, 60, 149, 149, 99, 74, 99, 74, 86, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11789, 33, 110, 110, 89, 76, 46, 76, 69, 232); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11789, 33, 94, 94, 56, 49, 43, 49, 66, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11789, 33, 94, 94, 56, 49, 43, 49, 66, 616); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11790, 60, 151, 151, 68, 92, 56, 56, 44, 467); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11790, 60, 151, 151, 68, 92, 56, 56, 44, 555); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11790, 60, 163, 163, 146, 133, 92, 109, 161, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11791, 37, 97, 97, 73, 51, 47, 51, 62, 645); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11791, 37, 97, 97, 47, 81, 47, 66, 36, 617); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11791, 37, 97, 97, 53, 55, 60, 55, 66, 544); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11791, 37, 104, 104, 92, 84, 59, 69, 101, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11792, 61, 129, 129, 95, 69, 57, 69, 114, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11792, 61, 135, 135, 83, 68, 69, 81, 51, 407); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11792, 61, 139, 139, 63, 76, 63, 76, 100, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11792, 61, 164, 164, 81, 75, 69, 75, 64, 517); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11792, 61, 166, 166, 130, 111, 100, 111, 120, 257); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11793, 42, 130, 130, 104, 112, 57, 66, 74, 8); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11794, 63, 171, 171, 103, 103, 71, 71, 65, 106); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11794, 63, 284, 284, 229, 153, 147, 109, 153, 104); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11795, 60, 139, 139, 122, 68, 68, 80, 110, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11795, 60, 163, 163, 122, 86, 74, 74, 62, 512); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11795, 60, 167, 167, 170, 128, 134, 92, 92, 538); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11796, 6, 23, 23, 13, 11, 11, 11, 12, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11796, 6, 24, 24, 13, 12, 14, 13, 13, 332); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11797, 60, 163, 163, 92, 86, 74, 92, 80, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11797, 60, 175, 175, 104, 98, 134, 116, 134, 547); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11797, 60, 157, 157, 123, 98, 86, 110, 143, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11798, 13, 39, 39, 25, 21, 16, 21, 23, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11799, 61, 172, 172, 136, 75, 81, 124, 118, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11799, 61, 166, 166, 87, 112, 87, 136, 106, 397); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11799, 61, 172, 172, 116, 94, 84, 118, 130, 396); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11799, 61, 178, 178, 141, 87, 141, 87, 107, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11799, 61, 166, 166, 148, 135, 94, 111, 163, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11800, 60, 199, 199, 98, 98, 74, 74, 74, 436); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11800, 60, 133, 133, 128, 80, 68, 68, 116, 308); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11800, 60, 169, 169, 134, 104, 99, 99, 146, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11801, 9, 30, 30, 18, 15, 14, 15, 15, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11801, 9, 30, 30, 19, 16, 12, 16, 18, 603); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11802, 4, 19, 19, 10, 9, 9, 9, 9, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11803, 22, 61, 61, 37, 34, 28, 26, 31, 487); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11804, 4, 19, 19, 10, 9, 9, 9, 9, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11805, 13, 39, 39, 23, 19, 18, 19, 20, 618); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11806, 39, 94, 94, 58, 89, 42, 61, 69, 149); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11806, 39, 119, 119, 97, 65, 97, 65, 69, 217); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11807, 27, 81, 81, 49, 39, 55, 39, 66, 173); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11807, 27, 84, 84, 65, 41, 65, 41, 50, 160); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11807, 27, 68, 68, 44, 68, 36, 57, 40, 588); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11808, 10, 32, 32, 26, 12, 21, 12, 21, 6); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11808, 10, 37, 37, 25, 21, 17, 18, 17, 641); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11809, 5, 20, 20, 9, 10, 9, 10, 12, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11810, 10, 31, 31, 12, 14, 16, 24, 19, 430); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11811, 12, 38, 38, 22, 20, 22, 20, 24, 510); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11812, 11, 35, 35, 22, 17, 22, 17, 19, 493); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11812, 13, 44, 44, 33, 20, 21, 30, 29, 192); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11813, 48, 132, 132, 118, 107, 75, 88, 129, 252); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11813, 48, 137, 137, 142, 118, 75, 89, 103, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11814, 3, 16, 16, 8, 8, 7, 7, 8, 515); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11814, 3, 16, 16, 9, 8, 8, 8, 9, 508); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11815, 12, 33, 33, 20, 23, 16, 18, 23, 604); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11815, 12, 38, 38, 27, 26, 17, 26, 20, 483); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11816, 10, 32, 32, 13, 20, 14, 14, 14, 656); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11817, 4, 18, 18, 10, 9, 8, 8, 9, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11817, 2, 14, 14, 7, 6, 6, 6, 9, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11818, 17, 46, 46, 26, 24, 33, 24, 33, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11819, 4, 18, 18, 9, 10, 8, 8, 8, 376); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11819, 6, 22, 22, 13, 10, 10, 10, 17, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11820, 4, 18, 18, 8, 9, 8, 9, 11, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11821, 12, 35, 35, 16, 19, 16, 19, 23, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11822, 13, 38, 38, 23, 17, 17, 17, 31, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11822, 15, 41, 41, 19, 22, 19, 22, 28, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11823, 25, 74, 74, 56, 44, 39, 39, 76, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11823, 27, 88, 88, 52, 47, 41, 47, 68, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11824, 47, 130, 130, 101, 78, 68, 68, 139, 76); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11824, 47, 147, 147, 87, 79, 68, 79, 115, 82); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11824, 47, 177, 177, 101, 111, 97, 111, 68, 214); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11825, 17, 46, 46, 24, 24, 34, 24, 17, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11826, 21, 59, 59, 41, 54, 29, 29, 25, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11827, 14, 37, 37, 22, 35, 18, 18, 21, 405); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11827, 14, 40, 40, 32, 38, 18, 18, 15, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11828, 17, 46, 46, 29, 21, 21, 21, 40, 365); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11829, 7, 24, 24, 11, 13, 11, 13, 15, 410); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11829, 9, 34, 34, 22, 17, 14, 14, 14, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11830, 7, 25, 25, 18, 21, 11, 11, 10, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11830, 9, 29, 29, 22, 26, 13, 13, 11, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11831, 19, 52, 52, 49, 28, 28, 28, 15, 77); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11831, 19, 51, 51, 28, 27, 36, 27, 36, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11832, 12, 34, 34, 22, 17, 16, 16, 17, 434); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11832, 13, 40, 40, 27, 35, 20, 20, 17, 470); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11832, 14, 40, 40, 22, 21, 28, 21, 28, 96); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11833, 10, 31, 31, 24, 28, 14, 14, 12, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11834, 15, 43, 43, 32, 21, 31, 26, 35, 541); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11836, 3, 15, 15, 9, 8, 7, 8, 10, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11837, 7, 26, 26, 10, 15, 11, 11, 11, 570); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11841, 59, 155, 155, 114, 97, 114, 97, 147, 288); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11841, 59, 172, 172, 167, 73, 138, 73, 138, 94); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11841, 59, 202, 202, 138, 126, 173, 102, 91, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11841, 59, 178, 178, 138, 105, 173, 138, 124, 201); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11841, 59, 178, 178, 144, 138, 73, 108, 156, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11842, 27, 62, 62, 44, 33, 28, 33, 53, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11842, 27, 65, 65, 47, 38, 36, 43, 44, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11842, 28, 70, 70, 40, 34, 31, 37, 45, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11843, 15, 49, 49, 28, 26, 25, 25, 31, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11843, 15, 45, 45, 32, 20, 31, 19, 22, 30); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11843, 15, 48, 48, 29, 29, 34, 34, 28, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11843, 15, 42, 42, 23, 20, 19, 22, 26, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11843, 15, 42, 42, 34, 40, 19, 19, 16, 443); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11844, 16, 52, 52, 28, 47, 42, 23, 29, 64); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11844, 16, 50, 50, 30, 36, 31, 36, 29, 18); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11844, 18, 52, 52, 29, 45, 25, 29, 24, 496); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11844, 18, 66, 66, 45, 45, 36, 43, 36, 344); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11844, 16, 51, 51, 29, 28, 26, 26, 33, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11844, 16, 52, 52, 50, 42, 28, 33, 37, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11845, 25, 64, 64, 36, 34, 31, 31, 42, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11845, 26, 60, 60, 43, 32, 27, 32, 51, 529); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11845, 25, 68, 68, 38, 38, 38, 38, 38, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11845, 26, 68, 68, 39, 39, 48, 48, 37, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11845, 26, 63, 63, 45, 37, 35, 42, 42, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11845, 25, 64, 64, 36, 31, 29, 34, 41, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11846, 26, 66, 66, 37, 35, 32, 32, 43, 536); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11846, 26, 66, 66, 32, 29, 24, 24, 40, 567); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11846, 26, 70, 70, 39, 39, 39, 39, 39, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11846, 27, 71, 71, 41, 41, 49, 49, 39, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11846, 26, 63, 63, 50, 42, 37, 42, 27, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11846, 26, 66, 66, 37, 32, 29, 35, 42, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11847, 50, 123, 123, 72, 72, 88, 88, 68, 57); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11847, 50, 113, 113, 83, 67, 63, 77, 78, 545); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11847, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11847, 50, 123, 123, 73, 78, 98, 88, 53, 126); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11847, 50, 113, 113, 93, 78, 68, 78, 48, 118); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11847, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11848, 50, 138, 138, 85, 86, 103, 103, 83, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11848, 50, 138, 138, 108, 92, 88, 102, 103, 543); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11848, 50, 118, 118, 68, 58, 53, 63, 78, 373); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11848, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11848, 50, 138, 138, 63, 103, 83, 68, 63, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11848, 50, 138, 138, 78, 73, 63, 78, 68, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11849, 5, 20, 20, 8, 13, 10, 13, 8, 366); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11849, 5, 20, 20, 10, 16, 15, 12, 10, 497); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11849, 5, 19, 19, 9, 9, 9, 9, 9, 359); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11849, 5, 20, 20, 10, 10, 13, 10, 8, 323); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11849, 5, 21, 21, 11, 13, 11, 13, 11, 60); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11849, 5, 20, 20, 14, 10, 10, 11, 13, 546); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11850, 5, 22, 22, 12, 11, 10, 12, 11, 349); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11850, 5, 21, 21, 13, 15, 10, 10, 8, 408); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11850, 5, 20, 20, 9, 11, 12, 12, 16, 336); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11850, 5, 23, 23, 14, 11, 10, 10, 10, 449); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11850, 5, 22, 22, 10, 14, 12, 11, 10, 35); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11850, 5, 24, 24, 15, 16, 9, 9, 9, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11851, 55, 184, 184, 172, 129, 134, 134, 112, 341); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11851, 50, 113, 113, 103, 73, 73, 93, 143, 15); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11851, 50, 148, 148, 123, 138, 53, 88, 53, 146); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11851, 50, 153, 153, 108, 223, 78, 88, 53, 150); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11851, 50, 158, 158, 105, 101, 118, 103, 108, 50); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11851, 50, 143, 143, 103, 163, 63, 93, 93, 101); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11852, 50, 153, 153, 113, 73, 133, 103, 118, 392); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11852, 50, 138, 138, 85, 86, 103, 103, 83, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11852, 50, 123, 123, 83, 53, 103, 73, 88, 513); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11852, 50, 158, 158, 105, 123, 106, 123, 103, 379); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11852, 50, 173, 173, 118, 108, 148, 88, 78, 21); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11852, 50, 158, 158, 105, 106, 123, 123, 103, 58); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11853, 51, 140, 140, 86, 87, 104, 104, 84, 12); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11853, 51, 135, 135, 69, 74, 69, 89, 104, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11853, 51, 143, 143, 84, 79, 74, 74, 95, 530); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11853, 51, 150, 150, 86, 91, 79, 79, 80, 132); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11853, 51, 128, 128, 72, 72, 72, 72, 72, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11853, 51, 160, 160, 150, 99, 64, 120, 110, 411); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11854, 51, 171, 171, 145, 99, 84, 84, 69, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11854, 50, 148, 148, 113, 93, 83, 83, 63, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11854, 54, 142, 142, 164, 148, 78, 78, 105, 27); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11854, 51, 128, 128, 72, 72, 72, 72, 72, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11854, 50, 143, 143, 113, 88, 84, 84, 123, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11854, 54, 169, 169, 116, 127, 56, 56, 51, 16); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11855, 50, 161, 161, 103, 98, 93, 93, 124, 62); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11855, 53, 177, 177, 121, 116, 103, 114, 104, 61); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11855, 50, 126, 126, 71, 71, 71, 71, 71, 337); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11855, 52, 137, 137, 107, 86, 75, 96, 124, 130); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11855, 52, 148, 148, 153, 127, 80, 96, 112, 181); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11855, 53, 150, 150, 135, 87, 87, 98, 124, 169); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11856, 52, 174, 174, 148, 101, 86, 86, 70, 184); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11856, 52, 153, 153, 117, 96, 86, 86, 65, 399); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11856, 51, 166, 166, 130, 125, 103, 108, 102, 378); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11856, 52, 148, 148, 117, 91, 87, 87, 127, 328); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11856, 51, 186, 186, 155, 145, 69, 69, 64, 120); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11856, 52, 158, 158, 127, 122, 65, 96, 138, 65); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11858, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11858, 50, 133, 133, 78, 108, 88, 108, 58, 423); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11858, 50, 138, 138, 88, 93, 108, 98, 63, 11); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11858, 50, 121, 121, 53, 78, 63, 88, 120, 361); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11858, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11859, 50, 143, 143, 113, 73, 108, 68, 78, 10); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11859, 50, 133, 133, 68, 73, 68, 88, 103, 55); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11859, 50, 168, 168, 83, 93, 98, 93, 68, 429); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11859, 50, 138, 138, 73, 73, 83, 93, 73, 402); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11859, 50, 143, 143, 88, 88, 73, 73, 113, 43); +INSERT INTO pokemon.pokemon_trainer (trainerID, pokelevel, hp, maxhp, attack, defense, spatk, spdef, speed, pokemon_id) VALUES (11859, 50, 148, 148, 43, 73, 43, 73, 63, 54); \ No newline at end of file diff --git a/pokemon_sql/pokemon_pokemons.sql b/pokemon_sql/pokemon_pokemons.sql new file mode 100644 index 0000000..e69de29 diff --git a/pokemon_sql/pokemon_trainers.sql b/pokemon_sql/pokemon_trainers.sql new file mode 100644 index 0000000..85392fb --- /dev/null +++ b/pokemon_sql/pokemon_trainers.sql @@ -0,0 +1,11861 @@ +create table trainers(trainerID int not null primary key,trainername text null); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (0, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (12, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (13, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (14, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (15, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (16, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (17, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (18, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (19, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (20, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (21, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (22, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (23, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (24, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (25, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (26, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (27, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (28, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (29, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (30, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (31, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (32, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (33, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (34, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (35, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (36, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (37, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (38, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (39, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (40, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (41, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (42, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (43, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (44, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (45, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (46, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (47, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (48, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (49, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (50, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (51, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (52, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (53, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (54, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (55, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (56, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (57, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (58, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (59, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (60, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (61, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (62, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (63, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (64, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (65, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (66, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (67, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (68, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (69, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (70, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (71, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (72, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (73, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (74, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (75, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (76, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (77, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (78, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (79, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (80, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (81, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (82, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (83, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (84, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (85, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (86, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (87, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (88, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (89, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (90, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (91, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (92, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (93, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (94, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (95, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (96, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (97, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (98, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (99, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (100, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (101, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (102, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (103, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (104, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (105, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (106, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (107, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (108, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (109, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (110, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (111, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (112, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (113, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (114, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (115, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (116, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (117, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (118, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (119, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (120, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (121, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (122, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (123, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (124, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (125, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (126, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (127, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (128, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (129, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (130, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (131, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (132, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (133, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (134, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (135, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (136, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (137, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (138, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (139, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (140, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (141, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (142, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (143, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (144, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (145, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (146, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (147, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (148, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (149, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (150, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (151, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (152, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (153, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (154, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (155, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (156, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (157, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (158, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (159, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (160, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (161, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (162, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (163, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (164, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (165, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (166, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (167, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (168, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (169, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (170, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (171, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (172, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (173, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (174, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (175, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (176, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (177, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (178, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (179, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (180, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (181, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (182, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (183, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (184, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (185, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (186, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (187, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (188, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (189, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (190, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (191, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (192, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (193, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (194, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (195, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (196, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (197, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (198, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (199, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (200, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (201, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (202, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (203, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (204, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (205, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (206, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (207, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (208, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (209, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (210, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (211, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (212, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (213, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (214, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (215, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (216, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (217, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (218, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (219, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (220, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (221, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (222, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (223, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (224, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (225, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (226, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (227, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (228, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (229, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (230, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (231, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (232, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (233, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (234, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (235, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (236, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (237, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (238, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (239, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (240, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (241, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (242, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (243, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (244, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (245, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (246, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (247, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (248, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (249, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (250, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (251, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (252, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (253, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (254, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (255, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (256, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (257, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (258, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (259, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (260, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (261, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (262, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (263, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (264, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (265, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (266, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (267, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (268, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (269, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (270, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (271, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (272, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (273, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (274, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (275, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (276, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (277, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (278, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (279, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (280, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (281, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (282, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (283, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (284, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (285, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (286, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (287, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (288, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (289, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (290, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (291, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (292, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (293, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (294, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (295, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (296, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (297, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (298, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (299, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (300, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (301, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (302, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (303, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (304, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (305, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (306, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (307, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (308, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (309, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (310, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (311, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (312, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (313, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (314, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (315, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (316, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (317, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (318, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (319, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (320, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (321, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (322, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (323, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (324, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (325, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (326, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (327, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (328, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (329, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (330, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (331, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (332, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (333, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (334, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (335, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (336, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (337, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (338, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (339, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (340, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (341, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (342, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (343, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (344, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (345, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (346, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (347, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (348, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (349, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (350, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (351, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (352, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (353, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (354, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (355, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (356, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (357, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (358, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (359, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (360, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (361, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (362, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (363, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (364, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (365, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (366, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (367, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (368, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (369, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (370, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (371, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (372, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (373, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (374, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (375, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (376, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (377, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (378, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (379, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (380, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (381, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (382, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (383, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (384, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (385, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (386, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (387, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (388, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (389, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (390, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (391, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (392, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (393, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (394, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (395, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (396, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (397, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (398, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (399, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (400, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (401, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (402, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (403, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (404, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (405, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (406, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (407, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (408, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (409, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (410, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (411, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (412, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (413, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (414, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (415, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (416, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (417, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (418, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (419, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (420, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (421, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (422, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (423, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (424, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (425, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (426, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (427, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (428, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (429, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (430, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (431, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (432, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (433, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (434, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (435, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (436, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (437, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (438, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (439, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (440, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (441, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (442, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (443, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (444, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (445, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (446, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (447, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (448, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (449, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (450, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (451, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (452, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (453, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (454, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (455, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (456, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (457, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (458, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (459, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (460, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (461, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (462, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (463, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (464, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (465, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (466, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (467, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (468, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (469, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (470, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (471, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (472, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (473, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (474, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (475, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (476, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (477, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (478, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (479, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (480, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (481, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (482, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (483, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (484, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (485, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (486, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (487, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (488, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (489, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (490, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (491, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (492, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (493, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (494, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (495, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (496, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (497, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (498, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (499, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (500, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (501, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (502, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (503, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (504, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (505, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (506, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (507, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (508, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (509, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (510, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (511, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (512, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (513, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (514, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (515, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (516, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (517, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (518, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (519, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (520, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (521, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (522, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (523, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (524, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (525, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (526, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (527, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (528, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (529, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (530, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (531, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (532, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (533, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (534, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (535, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (536, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (537, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (538, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (539, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (540, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (541, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (542, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (543, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (544, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (545, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (546, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (547, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (548, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (549, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (550, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (551, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (552, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (553, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (554, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (555, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (556, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (557, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (558, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (559, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (560, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (561, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (562, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (563, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (564, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (565, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (566, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (567, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (568, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (569, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (570, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (571, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (572, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (573, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (574, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (575, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (576, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (577, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (578, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (579, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (580, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (581, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (582, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (583, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (584, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (585, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (586, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (587, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (588, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (589, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (590, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (591, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (592, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (593, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (594, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (595, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (596, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (597, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (598, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (599, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (600, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (601, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (602, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (603, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (604, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (605, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (606, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (607, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (608, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (609, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (610, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (611, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (612, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (613, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (614, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (615, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (616, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (617, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (618, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (619, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (620, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (621, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (622, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (623, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (624, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (625, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (626, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (627, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (628, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (629, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (630, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (631, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (632, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (633, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (634, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (635, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (636, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (637, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (638, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (639, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (640, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (641, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (642, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (643, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (644, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (645, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (646, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (647, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (648, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (649, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (650, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (651, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (652, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (653, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (654, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (655, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (656, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (657, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (658, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (659, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (660, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (661, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (662, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (663, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (664, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (665, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (666, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (667, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (668, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (669, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (670, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (671, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (672, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (673, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (674, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (675, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (676, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (677, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (678, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (679, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (680, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (681, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (682, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (683, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (684, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (685, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (686, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (687, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (688, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (689, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (690, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (691, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (692, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (693, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (694, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (695, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (696, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (697, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (698, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (699, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (700, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (701, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (702, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (703, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (704, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (705, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (706, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (707, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (708, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (709, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (710, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (711, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (712, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (713, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (714, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (715, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (716, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (717, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (718, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (719, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (720, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (721, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (722, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (723, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (724, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (725, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (726, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (727, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (728, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (729, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (730, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (731, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (732, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (733, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (734, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (735, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (736, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (737, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (738, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (739, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (740, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (741, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (742, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (743, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (744, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (745, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (746, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (747, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (748, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (749, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (750, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (751, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (752, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (753, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (754, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (755, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (756, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (757, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (758, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (759, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (760, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (761, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (762, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (763, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (764, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (765, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (766, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (767, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (768, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (769, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (770, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (771, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (772, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (773, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (774, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (775, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (776, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (777, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (778, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (779, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (780, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (781, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (782, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (783, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (784, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (785, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (786, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (787, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (788, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (789, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (790, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (791, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (792, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (793, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (794, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (795, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (796, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (797, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (798, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (799, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (800, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (801, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (802, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (803, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (804, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (805, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (806, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (807, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (808, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (809, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (810, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (811, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (812, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (813, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (814, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (815, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (816, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (817, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (818, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (819, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (820, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (821, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (822, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (823, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (824, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (825, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (826, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (827, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (828, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (829, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (830, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (831, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (832, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (833, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (834, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (835, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (836, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (837, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (838, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (839, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (840, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (841, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (842, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (843, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (844, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (845, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (846, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (847, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (848, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (849, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (850, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (851, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (852, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (853, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (854, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (855, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (856, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (857, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (858, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (859, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (860, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (861, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (862, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (863, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (864, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (865, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (866, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (867, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (868, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (869, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (870, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (871, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (872, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (873, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (874, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (875, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (876, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (877, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (878, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (879, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (880, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (881, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (882, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (883, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (884, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (885, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (886, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (887, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (888, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (889, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (890, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (891, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (892, 'Cooltrainer♀ Allyson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (893, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (894, 'Cooltrainer♂ Colby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (895, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (896, 'Cooltrainer♀ Kathleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (897, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (898, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (899, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (900, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (901, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (902, 'Cooltrainer♀ Naomi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (903, 'Cooltrainer♂ Rolando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (904, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (905, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (906, 'Cooltrainer♂ Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (907, 'Ace Trainer♂ Abel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (908, 'Ace Trainer♀ Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (909, 'Ace Trainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (910, 'Ace Trainer♀ Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (911, 'Ace Trainer♂ Anton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (912, 'Ace Trainer♀ Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (913, 'Ace Trainer♀ Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (914, 'Ace Trainer♂ Arthur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (915, 'Ace Trainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (916, 'Ace Trainer♀ Brandi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (917, 'Ace Trainer♀ Breanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (918, 'Ace Trainer♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (919, 'Ace Trainer♀ Brenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (920, 'Ace Trainer♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (921, 'Ace Trainer♂ Cesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (922, 'Ace Trainer♀ Clarice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (923, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (924, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (925, 'Ace Trainer♀ Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (926, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (927, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (928, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (929, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (930, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (931, 'Ace Trainer♀ Destiny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (932, 'Ace Trainer♂ Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (933, 'Ace Trainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (934, 'Ace Trainer♂ Garrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (935, 'Ace Trainer♂ Graham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (936, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (937, 'Ace Trainer♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (938, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (939, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (940, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (941, 'Ace Trainer♀ Jasmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (942, 'Ace Trainer♂ Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (943, 'Ace Trainer♂ Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (944, 'Ace Trainer♀ Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (945, 'Ace Trainer♂ Keenan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (946, 'Ace Trainer♀ Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (947, 'Ace Trainer♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (948, 'Ace Trainer♀ Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (949, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (950, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (951, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (952, 'Ace Trainer♀ Meagan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (953, 'Ace Trainer♂ Micah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (954, 'Ace Trainer♀ Mikayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (955, 'Ace Trainer♀ Monique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (956, 'Ace Trainer♀ Natasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (957, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (958, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (959, 'Ace Trainer♂ Omar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (960, 'Ace Trainer♂ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (961, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (962, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (963, 'Ace Trainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (964, 'Ace Trainer♀ Sandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (965, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (966, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (967, 'Ace Trainer♀ Savannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (968, 'Ace Trainer♂ Sergio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (969, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (970, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (971, 'Ace Trainer♂ Skylar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (972, 'Ace Trainer♂ Stefan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (973, 'Ace Trainer♀ Sydney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (974, 'Ace Trainer♂ Zachery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (975, 'Ace Trainer♂ Abel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (976, 'Ace Trainer♀ Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (977, 'Ace Trainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (978, 'Ace Trainer♀ Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (979, 'Ace Trainer♂ Anton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (980, 'Ace Trainer♂ Arthur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (981, 'Ace Trainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (982, 'Ace Trainer♀ Brandi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (983, 'Ace Trainer♀ Breanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (984, 'Ace Trainer♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (985, 'Ace Trainer♀ Brenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (986, 'Ace Trainer♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (987, 'Ace Trainer♂ Cesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (988, 'Ace Trainer♀ Clarice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (989, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (990, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (991, 'Ace Trainer♀ Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (992, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (993, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (994, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (995, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (996, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (997, 'Ace Trainer♀ Destiny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (998, 'Ace Trainer♂ Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (999, 'Ace Trainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1000, 'Ace Trainer♂ Garrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1001, 'Ace Trainer♂ Graham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1002, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1003, 'Ace Trainer♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1004, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1005, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1006, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1007, 'Ace Trainer♀ Jasmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1008, 'Ace Trainer♂ Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1009, 'Ace Trainer♂ Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1010, 'Ace Trainer♀ Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1011, 'Ace Trainer♂ Keenan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1012, 'Ace Trainer♀ Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1013, 'Ace Trainer♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1014, 'Ace Trainer♀ Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1015, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1016, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1017, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1018, 'Ace Trainer♀ Meagan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1019, 'Ace Trainer♂ Micah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1020, 'Ace Trainer♀ Mikayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1021, 'Ace Trainer♀ Monique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1022, 'Ace Trainer♀ Moira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1023, 'Ace Trainer♀ Moira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1024, 'Ace Trainer♀ Natasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1025, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1026, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1027, 'Ace Trainer♂ Omar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1028, 'Ace Trainer♂ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1029, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1030, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1031, 'Ace Trainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1032, 'Ace Trainer♀ Sandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1033, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1034, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1035, 'Ace Trainer♀ Savannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1036, 'Ace Trainer♂ Sergio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1037, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1038, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1039, 'Ace Trainer♂ Skylar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1040, 'Ace Trainer♂ Stefan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1041, 'Ace Trainer♀ Sydney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1042, 'Ace Trainer♂ Zachery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1043, 'Ace Trainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1044, 'Ace Trainer♂ Alton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1045, 'Ace Trainer♂ Arabella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1046, 'Ace Trainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1047, 'Ace Trainer♂ Bonita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1048, 'Ace Trainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1049, 'Ace Trainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1050, 'Ace Trainer♂ Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1051, 'Ace Trainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1052, 'Ace Trainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1053, 'Ace Trainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1054, 'Ace Trainer♂ French'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1055, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1056, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1057, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1058, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1059, 'Ace Trainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1060, 'Ace Trainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1061, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1062, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1063, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1064, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1065, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1066, 'Ace Trainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1067, 'Ace Trainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1068, 'Ace Trainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1069, 'Ace Trainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1070, 'Ace Trainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1071, 'Ace Trainer♂ Kobe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1072, 'Ace Trainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1073, 'Ace Trainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1074, 'Ace Trainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1075, 'Ace Trainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1076, 'Ace Trainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1077, 'Ace Trainer♂ Paulo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1078, 'Ace Trainer♀ Piper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1079, 'Ace Trainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1080, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1081, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1082, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1083, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1084, 'Ace Trainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1085, 'Ace Trainer♀ Salma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1086, 'Ace Trainer♂ Shaye*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1087, 'Ace Trainer♀ Allison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1088, 'Ace Trainer♂ Austin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1089, 'Ace Trainer♂ Beckett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1090, 'Ace Trainer♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1091, 'Ace Trainer♀ Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1092, 'Ace Trainer♀ Cathy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1093, 'Ace Trainer♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1094, 'Ace Trainer♀ Cheyenne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1095, 'Ace Trainer♀ Clara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1096, 'Ace Trainer♂ Corky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1097, 'Ace Trainer♀ Dara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1098, 'Ace Trainer♂ David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1099, 'Ace Trainer♂ Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1100, 'Ace Trainer♀ EileenB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1101, 'Ace Trainer♀ EileenW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1102, 'Ace Trainer♂ Elmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1103, 'Ace Trainer♀ Glinda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1104, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1105, 'Ace Trainer♂ Jesse'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1106, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1107, 'Ace Trainer♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1108, 'Ace Trainer♂ Johan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1109, 'Ace Trainer♂ Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1110, 'Ace Trainer♀ Junko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1111, 'Ace Trainer♀ Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1112, 'Ace Trainer♂ Kipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1113, 'Ace Trainer♀ LenaB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1114, 'Ace Trainer♂ LouB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1115, 'Ace Trainer♂ LouW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1116, 'Ace Trainer♀ Lucille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1117, 'Ace Trainer♀ Mariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1118, 'Ace Trainer♀ Olwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1119, 'Ace Trainer♀ Shanta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1120, 'Ace Trainer♀ Stella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1121, 'Ace Trainer♂ Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1122, 'Ace Trainer♂ Tom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1123, 'Ace Trainer♂ VincentB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1124, 'Ace Trainer♂ Webster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1125, 'Ace Trainer♂ Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1126, 'Ace Trainer♀ Angi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1127, 'Ace Trainer♂ Beckett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1128, 'Ace Trainer♀ Belle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1129, 'Ace Trainer♂ Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1130, 'Ace Trainer♀ Chandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1131, 'Ace Trainer♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1132, 'Ace Trainer♀ Cheyenne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1133, 'Ace Trainer♀ Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1134, 'Ace Trainer♂ Corky*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1135, 'Ace Trainer♂ Doyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1136, 'Ace Trainer♂ Enzio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1137, 'Ace Trainer♀ Eve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1138, 'Ace Trainer♂ Geoff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1139, 'Ace Trainer♂ Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1140, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1141, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1142, 'Ace Trainer♀ Jacqueline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1143, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1144, 'Ace Trainer♀ Jeanne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1145, 'Ace Trainer♀ Juliet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1146, 'Ace Trainer ♀ Junko*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1147, 'Ace Trainer♀ Kathrine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1148, 'Ace Trainer♂ Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1149, 'Ace Trainer♂ Kipp*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1150, 'Ace Trainer♀ Layla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1151, 'Ace Trainer♀ Lucca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1152, 'Ace Trainer♀ Lucille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1153, 'Ace Trainer♀ Mariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1154, 'Ace Trainer♀ Mariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1155, 'Ace Trainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1156, 'Ace Trainer♀ Melina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1157, 'Ace Trainer♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1158, 'Ace Trainer♀ Miki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1159, 'Ace Trainer♀ Natasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1160, 'Ace Trainer♀ Nina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1161, 'Ace Trainer♂ Pierce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1162, 'Ace Trainer♂ Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1163, 'Ace Trainer♀ Sable'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1164, 'Ace Trainer♂ Santino'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1165, 'Ace Trainer♂ Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1166, 'Ace Trainer♀ Shanta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1167, 'Ace Trainer♂ Shaye'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1168, 'Ace Trainer♂ Shel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1169, 'Ace Trainer♀ Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1170, 'Ace Trainer♀ Summer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1171, 'Ace Trainer♂ Tom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1172, 'Ace Trainer♀ Trish'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1173, 'Ace Trainer♀ Vicki*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1174, 'Ace Trainer♂ Webster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1175, 'Ace Trainer♂ Adelbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1176, 'Ace Trainer♀ Alanza'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1177, 'Ace Trainer♂ Anton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1178, 'Ace Trainer♂ Bence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1179, 'Ace Trainer♀ Cordelia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1180, 'Ace Trainer♂ Emil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1181, 'Ace Trainer♂ Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1182, 'Ace Trainer♀ Hilde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1183, 'Ace Trainer♀ Imelda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1184, 'Ace Trainer♂ Mathis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1185, 'Ace Trainer♂ Maxim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1186, 'Ace Trainer♀ Michele'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1187, 'Ace Trainer♀ Mireille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1188, 'Ace Trainer♀ Monique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1189, 'Ace Trainer♂ Neil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1190, 'Ace Trainer♂ Rico'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1191, 'Ace Trainer♂ Robbie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1192, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1193, 'Ace Trainer♂ Theo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1194, 'Ace Trainer♂ Viktor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1195, 'Ace Trainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1196, 'Ace Trainer♂ Benedict'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1197, 'Ace Trainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1198, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1199, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1200, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1201, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1202, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1203, 'Ace Trainer♀ Claudia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1204, 'Ace Trainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1205, 'Ace Trainer♀ Constance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1206, 'Ace Trainer♂ Cornelius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1207, 'Ace Trainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1208, 'Ace Trainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1209, 'Ace Trainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1210, 'Ace Trainer♀ Harriet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1211, 'Ace Trainer♂ Hisato'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1212, 'Ace Trainer♀ Honor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1213, 'Ace Trainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1214, 'Ace Trainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1215, 'Ace Trainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1216, 'Ace Trainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1217, 'Ace Trainer♂ Leopold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1218, 'Ace Trainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1219, 'Ace Trainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1220, 'Ace Trainer♀ Melba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1221, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1222, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1223, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1224, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1225, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1226, 'Ace Trainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1227, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1228, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1229, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1230, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1231, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1232, 'Ace Trainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1233, 'Ace Trainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1234, 'Ace Trainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1235, 'Ace Trainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1236, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1237, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1238, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1239, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1240, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1241, 'Ace Trainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1242, 'Ace Trainer♀ Alexis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1243, 'Ace Trainer♀ Angela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1244, 'Ace Trainer♂ Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1245, 'Ace Trainer♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1246, 'Ace Trainer♀ Eileen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1247, 'Ace Trainer♂ Hiroshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1248, 'Ace Trainer♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1249, 'Ace Trainer♂ Jim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1250, 'Ace Trainer♀ Junko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1251, 'Ace Trainer♀ Karla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1252, 'Ace Trainer♂ Kekoa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1253, 'Ace Trainer♀ Lindsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1254, 'Ace Trainer♀ Makana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1255, 'Ace Trainer♀ Tori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1256, 'Ace Trainer♀ Tori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1257, 'Ace Trainer♂ Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1258, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1259, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1260, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1261, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1262, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1263, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1264, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1265, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1266, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1267, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1268, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1269, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1270, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1271, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1272, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1273, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1274, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1275, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1276, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1277, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1278, 'Cooltrainer♀ Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1279, 'Cooltrainer♂ Conner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1280, 'Cooltrainer♀ Floria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1281, 'Cooltrainer♀ Floria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1282, 'Cooltrainer♀ Gloria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1283, 'Cooltrainer♀ Gloria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1284, 'Cooltrainer♂ Marty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1285, 'Cooltrainer♂ Marty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1286, 'Cooltrainer♂ Vince'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1287, 'Cooltrainer♂ Vince'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1288, 'Cooltrainer♂ Bedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1289, 'Cooltrainer♂ Boda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1290, 'Cooltrainer♂ Botan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1291, 'Cooltrainer♀ Buna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1292, 'Cooltrainer♂ Daras'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1293, 'Cooltrainer♂ Dury'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1294, 'Cooltrainer♀ Ferda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1295, 'Cooltrainer♂ Herton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1296, 'Cooltrainer♀ Lehan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1297, 'Cooltrainer♀ Liqui'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1298, 'Cooltrainer♀ Lomen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1299, 'Cooltrainer♀ Neira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1300, 'Cooltrainer♂ Rewn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1301, 'Cooltrainer♂ Stum'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1302, 'Cooltrainer♂ Tock'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1303, 'Cooltrainer♂ Trilo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1304, 'Cooltrainer♀ Atilo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1305, 'Cooltrainer♂ Berki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1306, 'Cooltrainer♂ Cruik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1307, 'Cooltrainer♂ Dazon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1308, 'Cooltrainer♂ Desid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1309, 'Cooltrainer♀ Detta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1310, 'Cooltrainer♂ Dillot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1311, 'Cooltrainer♂ Farfin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1312, 'Cooltrainer♂ Forgon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1313, 'Cooltrainer♀ Gilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1314, 'Cooltrainer♀ Gosney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1315, 'Cooltrainer♂ Hebel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1316, 'Cooltrainer♀ Levens'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1317, 'Cooltrainer♀ Moden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1318, 'Cooltrainer♂ Morfon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1319, 'Cooltrainer♂ Moril'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1320, 'Cooltrainer♀ Rask'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1321, 'Cooltrainer♀ Rateis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1322, 'Cooltrainer♀ Rosno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1323, 'Cooltrianer♂ Shadd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1324, 'Cooltrainer♀ Tynan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1325, 'Cooltrianer♂ Vanhub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1326, 'Cooltrainer♀ Veron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1327, 'Cooltrainer♀ Zoel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1328, 'Cooltrainer♂ Bardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1329, 'Cooltrainer♂ Carben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1330, 'Cooltrainer♀ Cida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1331, 'Cooltrainer♀ Cida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1332, 'Cooltrainer♀ Cida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1333, 'Cooltrainer♂ Degin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1334, 'Cooltrainer♀ Dibsin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1335, 'Cooltrainer♀ Dodin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1336, 'Cooltrainer♀ Ebson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1337, 'Cooltrainer♀ Equin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1338, 'Cooltrainer♀ Equin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1339, 'Cooltrainer♀ Flostin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1340, 'Cooltrainer♀ Gabsen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1341, 'Cooltrainer♂ Gorps'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1342, 'Cooltrainer♀ Halsion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1343, 'Cooltrainer♀ Hileon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1344, 'Cooltrainer♂ Klept'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1345, 'Cooltrainer♂ Lask'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1346, 'Cooltrainer♂ Malex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1347, 'Cooltrainer♂ Mopar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1348, 'Cooltrainer♂ Niled'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1349, 'Cooltrainer♂ Noxon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1350, 'Cooltrainer♀ Quelor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1351, 'Cooltrainer♀ Rapeel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1352, 'Cooltrainer♀ Roze'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1353, 'Cooltrainer♀ Tensin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1354, 'Cooltrainer♂ Teslor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1355, 'Cooltrainer♂ Tetil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1356, 'Actor Fabio*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1357, 'Actor Lars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1358, 'Actor Lars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1359, 'Actress Ingmar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1360, 'Actress Ingmar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1361, 'Actress Isabella*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1362, 'Actress Tallulah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1363, 'Actress Tallulah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1364, 'Aether Foundation Faba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1365, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1366, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1367, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1368, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1369, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1370, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1371, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1372, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1373, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1374, 'Aether Foundation Employee ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1375, 'Aether Foundation Employee ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1376, 'Aether Foundation Employee ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1377, 'Aether Foundation Employee ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1378, 'Aether Foundation Employee ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1379, 'Aether Foundation Employee *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1380, 'Aether Foundation Employee *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1381, 'Aether Foundation Employee *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1382, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1383, 'Aether Foundation Employee ♀ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1384, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1385, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1386, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1387, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1388, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1389, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1390, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1391, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1392, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1393, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1394, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1395, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1396, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1397, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1398, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1399, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1400, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1401, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1402, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1403, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1404, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1405, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1406, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1407, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1408, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1409, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1410, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1411, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1412, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1413, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1414, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1415, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1416, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1417, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1418, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1419, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1420, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1421, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1422, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1423, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1424, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1425, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1426, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1427, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1428, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1429, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1430, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1431, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1432, 'Area Leader Arth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1433, 'Area Leader Athey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1434, 'Area Leader Loko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1435, 'Area Leader Norus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1436, 'Area Leader Renson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1437, 'Area Leader Shobon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1438, 'Area Leader Trinch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1439, 'Area Leader Vander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1440, 'Area Leader Zentin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1441, 'Area Leader Axley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1442, 'Area Leader Cryal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1443, 'Area Leader Dessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1444, 'Area Leader Erben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1445, 'Area Leader Glydin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1446, 'Area Leader Leven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1447, 'Area Leader Slewis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1448, 'Area Leader Vannos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1449, 'Area Leader Vario'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1450, 'Area Leader Altor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1451, 'Area Leader Atrice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1452, 'Area Leader Elion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1453, 'Area Leader Konaik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1454, 'Area Leader Kucher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1455, 'Area Leader Langot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1456, 'Area Leader Mortac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1457, 'Area Leader Neblek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1458, 'Area Leader Vernice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1459, 'Area Leader Boyden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1460, 'Area Leader Calus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1461, 'Area Leader Eldof'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1462, 'Area Leader Hampy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1463, 'Area Leader Naday'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1464, 'Area Leader Nocom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1465, 'Area Leader Ragen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1466, 'Area Leader Taria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1467, 'Area Leader Vander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1468, 'Aroma Lady Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1469, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1470, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1471, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1472, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1473, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1474, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1475, 'Aroma Lady Celina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1476, 'Aroma Lady Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1477, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1478, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1479, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1480, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1481, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1482, 'Aroma Lady Shayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1483, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1484, 'Aroma Lady Miah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1485, 'Aroma Lady Natalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1486, 'Aroma Lady Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1487, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1488, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1489, 'Aroma Lady Alison(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1490, 'Aroma Lady Angela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1491, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1492, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1493, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1494, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1495, 'Aroma Lady Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1496, 'Aroma Lady Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1497, 'Aroma Lady Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1498, 'Aroma Lady Alison(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1499, 'Aroma Lady Angela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1500, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1501, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1502, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1503, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1504, 'Aroma Lady Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1505, 'Aroma Lady Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1506, 'Aroma Lady Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1507, 'Aroma Lady Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1508, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1509, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1510, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1511, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1512, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1513, 'Aroma Lady Thyme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1514, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1515, 'Artist Ismael(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1516, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1517, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1518, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1519, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1520, 'Artist Ismael(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1521, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1522, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1523, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1524, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1525, 'Artist Horton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1526, 'Artist Pierre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1527, 'Artist Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1528, 'Artist Gough'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1529, 'Artist Horton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1530, 'Artist Pierre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1531, 'Artist♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1532, 'Artist♂ Pierre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1533, 'Artist♂ Salvador'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1534, 'Artist♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1535, 'Artist Family Mona & Paolo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1536, 'Assistant ♂ Manuelo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1537, 'Assistant ♂ Manuelo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1538, 'Assistant ♀ Simone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1539, 'Assistant ♀ Simone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1540, 'Assistant ♂ Strange'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1541, 'Athlete♀ Adel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1542, 'Athlete♀ Aidel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1543, 'Athlete♀ Aidel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1544, 'Athlete♂ Albac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1545, 'Athlete♂ Bilal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1546, 'Athlete♀ Caden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1547, 'Athlete♀ Crisom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1548, 'Athlete♀ Dian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1549, 'Athlete♂ Dobel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1550, 'Athlete♀ Emia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1551, 'Athlete♂ Lorge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1552, 'Athlete♂ Magro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1553, 'Athlete♂ Meton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1554, 'Athlete♂ Raus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1555, 'Athlete♂ Rinos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1556, 'Athlete♀ Wina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1557, 'Athlete♀ Aleja'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1558, 'Athlete♂ Busik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1559, 'Athlete♂ Deron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1560, 'Athlete♀ Dilasi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1561, 'Athlete♂ Gatik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1562, 'Athlete♂ Gulor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1563, 'Athlete♀ Kimber'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1564, 'Athlete♂ Latrin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1565, 'Athlete♀ Mazzel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1566, 'Athlete♂ Menzon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1567, 'Athlete♂ Naga'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1568, 'Athlete♀ Nomol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1569, 'Athlete♀ Pasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1570, 'Athlete♀ Sano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1571, 'Athlete♂ Senton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1572, 'Athlete♂ Taot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1573, 'Athlete♂ Tria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1574, 'Athlete♂ Varian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1575, 'Athlete♀ Ziale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1576, 'Athletic Siblings Alyssa and Sho'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1577, 'Backers♀ Ai & Ciel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1578, 'Backers♂ Alf & Fred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1579, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1580, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1581, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1582, 'Backers♀ Cam & Abby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1583, 'Backers♀ Fey & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1584, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1585, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1586, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1587, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1588, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1589, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1590, 'Backers♀ Kat & Phae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1591, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1592, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1593, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1594, 'Backers♂ Les & Web'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1595, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1596, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1597, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1598, 'Backers♀ Ai & Ciel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1599, 'Backers♂ Alf & Fred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1600, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1601, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1602, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1603, 'Backers♀ Ava & Aya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1604, 'Backers♀ Cam & Abby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1605, 'Backers♀ Cleo & Rio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1606, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1607, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1608, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1609, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1610, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1611, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1612, 'Backers♀ Kat & Phae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1613, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1614, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1615, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1616, 'Backers♂ Les & Web'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1617, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1618, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1619, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1620, 'Backers♀ May & Mal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1621, 'Backers♂ Stu & Art'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1622, 'Backpacker♂ Alexander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1623, 'Backpacker♀ Anna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1624, 'Backpacker♂ CarlosB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1625, 'Backpacker♀ Corin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1626, 'Backpacker♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1627, 'Backpacker♀ EmiB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1628, 'Backpacker♂ HermanB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1629, 'Backpacker♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1630, 'Backpacker♀ Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1631, 'Backpacker♂ Keane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1632, 'Backpacker♂ Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1633, 'Backpacker♂ KiyoB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1634, 'Backpacker♀ Kumiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1635, 'Backpacker♀ Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1636, 'Backpacker♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1637, 'Backpacker♀ Lora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1638, 'Backpacker♂ Michael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1639, 'Backpacker♀ MollyB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1640, 'Backpacker♂ Nate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1641, 'Backpacker♀ Patty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1642, 'Backpacker♂ Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1643, 'Backpacker♀ Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1644, 'Backpacker♂ Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1645, 'Backpacker♂ Stephen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1646, 'Backpacker♂ Talon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1647, 'Backpacker♂ Terrance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1648, 'Backpacker♂ Toru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1649, 'Backpacker♀ Vicki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1650, 'Backpacker♂ Waylon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1651, 'Backpacker♂ Alexander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1652, 'Backpacker♀ Annie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1653, 'Backpacker♀ Blossom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1654, 'Backpacker♂ Boone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1655, 'Backpacker♀ Clara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1656, 'Backpacker♂ CliffordW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1657, 'Backpacker♀ Corin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1658, 'Backpacker♀ Eileen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1659, 'Backpacker♂ Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1660, 'Backpacker♀ Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1661, 'Backpacker♂ Kendall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1662, 'Backpacker♂ Kiyo(Tag battle w/Hiker Markus)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1663, 'Backpacker♀ Kumiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1664, 'Backpacker♂ Lowell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1665, 'Backpacker♀ Mae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1666, 'Backpacker♂ Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1667, 'Backpacker♀ Mitzi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1668, 'Backpacker♀ Myra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1669, 'Backpacker♀ Patty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1670, 'Backpacker♀ RachelW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1671, 'Backpacker♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1672, 'Backpacker♂ Reece'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1673, 'Backpacker♂ RolandW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1674, 'Backpacker♂ Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1675, 'Backpacker♂ Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1676, 'Backpacker♂ Talon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1677, 'Backpacker♀ Tami'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1678, 'Backpacker♂ Tim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1679, 'Backpacker♂ Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1680, 'Backpacker Farid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1681, 'Backpacker Heike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1682, 'Backpacker Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1683, 'Backpacker Joren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1684, 'Backpacker Lane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1685, 'Backpacker Roderick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1686, 'Backpacker Darnell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1687, 'Backpacker Deon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1688, 'Backpacker Emory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1689, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1690, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1691, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1692, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1693, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1694, 'Backpacker Grayson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1695, 'Backpacker Ashley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1696, 'Backpacker Mikiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1697, 'Backpacker Kiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1698, 'Backpacker Perdy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1699, 'Backpacker Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1700, 'Backpacker Yuho'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1701, 'Baker Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1702, 'Baker Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1703, 'Baker Lilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1704, 'Baker Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1705, 'Baker Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1706, 'Baker Lilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1707, 'Bandana Guy Burge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1708, 'Bandana Guy Crudo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1709, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1710, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1711, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1712, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1713, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1714, 'Bandana Guy Geats'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1715, 'Bandana Guy Geats'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1716, 'Bandana Guy Hanel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1717, 'Bandana Guy Klest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1718, 'Bandana Guy Loba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1719, 'Bandana Guy Loba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1720, 'Bandana Guy Lobert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1721, 'Bandana Guy Noxy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1722, 'Bandana Guy Noxy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1723, 'Bandana Guy Vilch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1724, 'Bandana Guy Crace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1725, 'Bandana Guy Crag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1726, 'Bandana Guy Delav'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1727, 'Bandana Guy Feek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1728, 'Bandana Guy Kaler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1729, 'Bandana Guy Kitel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1730, 'Bandana Guy Norel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1731, 'Bandana Guy Omak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1732, 'Bandana Guy Roblin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1733, 'Bandana Guy Venez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1734, 'Baron Denis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1735, 'Baron Evran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1736, 'Baron Herisson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1737, 'Baron Lyon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1738, 'Baron Marseille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1739, 'Baron Moray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1740, 'Baron Orvault'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1741, 'Baroness Renée'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1742, 'Baroness Cadette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1743, 'Baroness Camille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1744, 'Baroness Estelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1745, 'Baroness Francine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1746, 'Baroness Maelys'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1747, 'Baroness Maryline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1748, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1749, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1750, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1751, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1752, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1753, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1754, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1755, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1756, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1757, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1758, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1759, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1760, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1761, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1762, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1763, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1764, ' Battle Girl Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1765, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1766, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1767, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1768, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1769, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1770, ' Battle Girl Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1771, ' Battle Girl Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1772, ' Battle Girl Sadie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1773, 'Battle Girl Tessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1774, ' Battle Girl Vivian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1775, ' Battle Girl Aisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1776, ' Battle Girl Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1777, ' Battle Girl Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1778, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1779, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1780, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1781, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1782, ' Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1783, ' Battle Girl Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1784, ' Battle Girl Helene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1785, 'Battle Girl Jocelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1786, ' Battle Girl Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1787, ' Battle Girl Lilith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1788, ' Battle Girl Paula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1789, ' Battle Girl Reyna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1790, ' Battle Girl Vivian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1791, ' Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1792, ' Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1793, ' Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1794, ' Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1795, ' Battle Girl Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1796, ' Battle Girl Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1797, ' Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1798, ' Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1799, ' Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1800, ' Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1801, ' Battle Girl Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1802, ' Battle Girl Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1803, 'Battle Girl Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1804, 'Battle Girl Chandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1805, 'Battle Girl Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1806, 'Battle Girl Janie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1807, 'Battle Girl Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1808, 'Battle Girl Maggie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1809, 'Battle Girl Mikiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1810, 'Battle Girl Miriam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1811, 'Battle Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1812, 'Battle Girl Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1813, 'Battle Girl Xiao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1814, 'Battle Girl Alize'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1815, 'Battle Girl Azra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1816, 'Battle Girl Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1817, 'Battle Girl Chalina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1818, 'Battle Girl Chan*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1819, 'Battle Girl Glinda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1820, 'Battle Girl Janie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1821, 'Battle Girl Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1822, 'Battle Girl Maggie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1823, 'Battle Girl Maki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1824, 'Battle Girl Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1825, 'Battle Girl Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1826, 'Battle Girl Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1827, 'Battle Girl Xiao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1828, 'Battle Girl Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1829, 'Battle Girl Gabrielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1830, 'Battle Girl Gerardine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1831, 'Battle Girl Hailey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1832, 'Battle Girl Hedvig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1833, 'Battle Girl Justine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1834, 'Battle Girl Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1835, 'Battle Girl Sigrid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1836, 'Battle Girl Veronique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1837, 'Battle Girl Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1838, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1839, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1840, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1841, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1842, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1843, 'Battle Girl Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1844, 'Battle Girl Sadie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1845, 'Battle Girl Tess'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1846, 'Battle Girl Tessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1847, 'Battle Girl Vivian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1848, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1849, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1850, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1851, 'BeautyRB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1852, 'BeautyY'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1853, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1854, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1855, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1856, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1857, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1858, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1859, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1860, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1861, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1862, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1863, 'Beauty Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1864, 'Beauty Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1865, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1866, 'Beauty Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1867, 'Beauty Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1868, 'Beauty Victoria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1869, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1870, 'Beauty Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1871, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1872, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1873, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1874, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1875, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1876, 'Beauty Johanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1877, 'Beauty Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1878, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1879, 'Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1880, 'Beauty Shirley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1881, 'Beauty Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1882, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1883, 'Beauty Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1884, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1885, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1886, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1887, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1888, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1889, 'Beauty Johanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1890, 'Beauty Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1891, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1892, 'Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1893, 'Beauty Shirley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1894, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1895, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1896, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1897, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1898, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1899, 'Beauty Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1900, ' Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1901, ' Beauty Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1902, ' Beauty Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1903, ' Beauty Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1904, ' Beauty Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1905, ' Beauty Maura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1906, ' Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1907, ' Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1908, ' Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1909, ' Beauty Tamia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1910, ' Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1911, ' Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1912, ' Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1913, ' Beauty Devon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1914, ' Beauty Gabriella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1915, ' Beauty Harley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1916, ' Beauty Lindsay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1917, ' Beauty Nicola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1918, ' Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1919, ' Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1920, ' Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1921, ' Beauty Devon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1922, ' Beauty Gabriella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1923, ' Beauty Harley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1924, ' Beauty Nicola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1925, 'Beauty Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1926, 'Beauty Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1927, 'Beauty Charlotte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1928, 'Beauty Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1929, 'Beauty Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1930, 'Beauty Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1931, ' Beauty Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1932, 'Beauty Victoria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1933, 'Beauty Ampère'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1934, 'Beauty December*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1935, 'Beauty Fleming'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1936, 'Beauty Nikola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1937, 'Beauty Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1938, 'Beauty Anais'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1939, 'Beauty Brigitte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1940, 'Beauty Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1941, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1942, 'Beauty Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1943, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1944, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1945, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1946, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1947, 'Beauty Johanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1948, 'Beauty Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1949, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1950, 'Beauty Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1951, 'Beauty Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1952, 'Beauty Brittney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1953, 'Beauty Carolyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1954, 'Beauty Carolyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1955, 'Beauty Krystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1956, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1957, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1958, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1959, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1960, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1961, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1962, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1963, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1964, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1965, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1966, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1967, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1968, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1969, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1970, 'Beauty Rita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1971, 'Beauty Rita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1972, 'Beauty Cudsy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1973, 'Beauty Eloff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1974, 'Beauty Miru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1975, 'Beauty Minot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1976, 'Beauty Nevah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1977, 'Beauty Niven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1978, 'Beauty Ogoin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1979, 'Belle & Pa Ava & Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1980, 'Belle & Pa Beth & Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1981, 'Belle & Pa Ava & Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1982, 'Belle & Pa Beth & Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1983, 'Bellhop Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1984, 'Big Star Howard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1985, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1986, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1987, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1988, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1989, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1990, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1991, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1992, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1993, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1994, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1995, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1996, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1997, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1998, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (1999, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2000, 'Biker Charles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2001, 'Biker Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2002, 'Biker Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2003, 'Biker Harris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2004, 'Biker Joel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2005, 'Biker Riley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2006, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2007, 'Biker Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2008, 'Biker Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2009, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2010, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2011, 'Biker Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2012, 'Biker Goon 1'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2013, 'Biker Goon 2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2014, 'Biker Goon 3'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2015, 'Biker Hideo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2016, 'Biker Isaac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2017, 'Biker Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2018, 'Biker Jaren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2019, 'Biker Jaren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2020, 'Biker Jaxon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2021, 'Biker Jaxon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2022, 'Biker Jordy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2023, 'Biker Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2024, 'Biker Lukas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2025, 'Biker Lukas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2026, 'Biker Malik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2027, 'Biker Nikolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2028, 'Biker Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2029, 'Biker Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2030, 'Biker Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2031, 'Biker Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2032, 'Biker William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2033, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2034, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2035, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2036, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2037, 'Biker Charles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2038, 'Biker Dale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2039, 'Biker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2040, 'Biker Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2041, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2042, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2043, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2044, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2045, 'Biker Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2046, 'Biker Harris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2047, 'Biker Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2048, 'Biker Joel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2049, 'Biker Markey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2050, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2051, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2052, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2053, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2054, 'Biker Teddy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2055, 'Biker Theron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2056, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2057, 'Biker JeremyFr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2058, 'Biker MorgannFr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2059, 'Biker Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2060, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2061, 'Biker Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2062, 'Biker StanleyB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2063, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2064, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2065, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2066, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2067, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2068, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2069, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2070, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2071, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2072, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2073, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2074, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2075, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2076, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2077, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2078, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2079, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2080, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2081, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2082, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2083, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2084, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2085, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2086, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2087, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2088, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2089, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2090, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2091, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2092, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2093, 'Bird Keeper Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2094, 'Bird Keeper Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2095, 'Bird Keeper Boris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2096, 'Bird Keeper Bret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2097, 'Bird Keeper Bryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2098, 'Bird Keeper Denis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2099, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2100, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2101, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2102, 'Bird Keeper Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2103, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2104, 'Bird Keeper Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2105, 'Bird Keeper Rod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2106, 'Bird Keeper Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2107, 'Bird Keeper Theo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2108, 'Bird Keeper Toby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2109, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2110, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2111, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2112, 'Bird Keeper Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2113, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2114, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2115, 'Bird Keeper Bryon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2116, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2117, 'Bird Keeper Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2118, 'Bird Keeper Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2119, 'Bird Keeper Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2120, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2121, 'Bird Keeper Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2122, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2123, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2124, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2125, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2126, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2127, 'Bird Keeper Will'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2128, 'Bird Keeper Aidan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2129, 'Bird Keeper Alberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2130, 'Bird Keeper Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2131, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2132, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2133, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2134, 'Bird Keeper Coby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2135, 'Bird Keeper Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2136, 'Bird Keeper Darius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2137, 'Bird Keeper Edwardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2138, 'Bird Keeper Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2139, 'Bird Keeper Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2140, 'Bird Keeper Humberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2141, 'Bird Keeper Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2142, 'Bird Keeper Josue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2143, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2144, 'Bird Keeper Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2145, 'Bird Keeper Presley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2146, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2147, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2148, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2149, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2150, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2151, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2152, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2153, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2154, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2155, 'Bird Keeper Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2156, 'Bird Keeper Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2157, 'Bird Keeper Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2158, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2159, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2160, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2161, 'Bird Keeper Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2162, 'Bird Keeper Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2163, 'Bird Keeper Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2164, 'Bird Keeper Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2165, 'Bird Keeper Hibiki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2166, 'Bird Keeper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2167, 'Bird Keeper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2168, 'Bird Keeper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2169, 'Bird Keeper Marlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2170, 'Bird Keeper Marlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2171, 'Bird Keeper Marlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2172, 'Bird Keeper Milo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2173, 'Bird Keeper Milo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2174, 'Bird Keeper Mitch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2175, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2176, 'Bird Keeper Ramiro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2177, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2178, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2179, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2180, 'Bird Keeper Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2181, 'Bird Keeper Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2182, 'Bird Keeper Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2183, 'Bird Keeper Alexandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2184, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2185, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2186, 'Bird Keeper Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2187, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2188, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2189, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2190, 'Bird Keeper Geneva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2191, 'Bird Keeper Hana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2192, 'Bird Keeper Katherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2193, 'Bird Keeper Krystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2194, 'Bird Keeper Alexandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2195, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2196, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2197, 'Bird Keeper Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2198, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2199, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2200, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2201, 'Bird Keeper Geneva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2202, 'Bird Keeper Hana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2203, 'Bird Keeper Katherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2204, 'Bird Keeper Krystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2205, 'Bird Keeper Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2206, 'Bird Keeper Bert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2207, 'Bird Keeper Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2208, 'Bird Keeper Boris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2209, 'Bird Keeper Bret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2210, 'Bird Keeper Bryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2211, 'Bird Keeper Denis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2212, 'Bird Keeper Easton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2213, 'Bird Keeper Ernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2214, 'Bird Keeper Gail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2215, 'Bird Keeper Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2216, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2217, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2218, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2219, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2220, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2221, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2222, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2223, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2224, 'Bird Keeper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2225, 'Bird Keeper Kinsley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2226, 'Bird Keeper Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2227, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2228, 'Bird Keeper Rod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2229, 'Bird Keeper Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2230, 'Bird Keeper Theo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2231, 'Bird Keeper Toby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2232, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2233, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2234, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2235, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2236, 'Bird Keeper Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2237, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2238, 'Bird Keeper Bran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2239, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2240, 'Bird Keeper Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2241, 'Bird Keeper Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2242, 'Bird Keeper Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2243, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2244, 'Bird Keeper Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2245, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2246, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2247, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2248, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2249, 'Bird Keeper Will'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2250, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2251, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2252, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2253, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2254, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2255, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2256, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2257, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2258, 'Bird Keeper Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2259, 'Bird Keeper Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2260, 'Bird Keeper Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2261, 'Bird Keeper Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2262, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2263, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2264, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2265, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2266, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2267, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2268, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2269, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2270, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2271, 'Blackbelt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2272, 'Blackbelt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2273, 'Blackbelt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2274, 'Blackbelt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2275, 'Blackbelt Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2276, 'Blackbelt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2277, 'Blackbelt Wai*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2278, 'Blackbelt Yoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2279, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2280, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2281, 'Black Belt Hideki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2282, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2283, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2284, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2285, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2286, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2287, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2288, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2289, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2290, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2291, 'Black Belt Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2292, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2293, 'Black Belt Cristian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2294, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2295, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2296, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2297, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2298, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2299, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2300, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2301, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2302, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2303, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2304, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2305, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2306, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2307, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2308, 'Black Belt Rhett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2309, 'Black Belt Takao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2310, 'Black Belt Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2311, 'Black Belt Zander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2312, 'Black Belt Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2313, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2314, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2315, 'Black Belt Hideki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2316, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2317, 'Black Belt Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2318, 'Black Belt Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2319, 'Black Belt Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2320, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2321, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2322, 'Black Belt Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2323, 'Black Belt Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2324, 'Black Belt Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2325, 'Black Belt Shea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2326, 'Black Belt Shea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2327, 'Black Belt Shea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2328, 'Black Belt Takashi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2329, 'Black Belt Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2330, 'Black Belt Carl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2331, 'Black Belt Colby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2332, 'Black Belt Darren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2333, 'Black Belt David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2334, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2335, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2336, 'Black Belt Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2337, 'Black Belt Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2338, 'Black Belt Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2339, 'Black Belt Griffin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2340, 'Black Belt Jarrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2341, 'Black Belt Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2342, 'Black Belt Kendal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2343, 'Black Belt Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2344, 'Black Belt Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2345, 'Black Belt Miles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2346, 'Black Belt Nathaniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2347, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2348, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2349, 'Black Belt Rafael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2350, 'Black Belt Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2351, 'Black Belt Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2352, 'Black Belt Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2353, 'Black Belt Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2354, 'Black Belt Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2355, 'Black Belt Carl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2356, 'Black Belt Colby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2357, 'Black Belt Darren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2358, 'Black Belt David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2359, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2360, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2361, 'Black Belt Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2362, 'Black Belt Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2363, 'Black Belt Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2364, 'Black Belt Griffin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2365, 'Black Belt Jarrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2366, 'Black Belt Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2367, 'Black Belt Kendal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2368, 'Black Belt Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2369, 'Black Belt Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2370, 'Black Belt Miles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2371, 'Black Belt Nathaniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2372, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2373, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2374, 'Black Belt Rafael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2375, 'Black Belt Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2376, 'Black Belt Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2377, 'Black Belt Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2378, 'Black Belt Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2379, 'Black Belt Ander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2380, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2381, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2382, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2383, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2384, 'Black Belt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2385, 'Black Belt Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2386, 'Black Belt Manford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2387, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2388, 'Blackbelt Wai*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2389, 'Black Belt Yoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2390, 'Black Belt Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2391, 'Black Belt Corey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2392, 'Black Belt Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2393, 'Black Belt Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2394, 'Black Belt Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2395, 'Black Belt Kendrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2396, 'Black Belt Kentaro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2397, 'Black Belt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2398, 'Black Belt Ryder'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2399, 'Black Belt Teppei'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2400, 'Black Belt Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2401, 'Black Belt Tyrone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2402, 'Black Belt Andrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2403, 'Black Belt Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2404, 'Black Belt Corey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2405, 'Black Belt Donny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2406, 'Black Belt Drago'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2407, 'Black Belt Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2408, 'Black Belt Gordon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2409, 'Black Belt Grigor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2410, 'Black Belt Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2411, 'Black Belt Jeriel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2412, 'Black Belt Kenneth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2413, 'Black Belt Kentaro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2414, 'Black Belt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2415, 'Black Belt Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2416, 'Black Belt Martell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2417, 'Black Belt Mathis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2418, 'Black Belt Rich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2419, 'Black Belt Rocky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2420, 'Black Belt Rodrigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2421, 'Black Belt Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2422, 'Black Belt Wesley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2423, 'Black Belt Zachery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2424, 'Black Belt Alonzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2425, 'Black Belt Ander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2426, 'Black Belt Cadoc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2427, 'Black Belt Gunnar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2428, 'Black Belt Igor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2429, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2430, 'Black Belt Killian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2431, 'Black Belt Markus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2432, 'Black Belt Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2433, 'Black Belt Yanis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2434, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2435, 'Black Belt Banting*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2436, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2437, 'Black Belt Hideki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2438, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2439, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2440, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2441, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2442, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2443, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2444, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2445, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2446, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2447, 'Black Belt Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2448, 'Black Belt Clayton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2449, 'Black Belt Duane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2450, 'Black Belt Earl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2451, 'Black Belt Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2452, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2453, 'Black Belt Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2454, 'Black Belt Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2455, 'Black Belt Tracy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2456, 'Black Belt Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2457, 'Black Belt Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2458, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2459, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2460, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2461, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2462, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2463, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2464, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2465, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2466, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2467, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2468, 'Blackbelt Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2469, 'Blackbelt Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2470, 'Blackbelt Yang'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2471, 'Blackbelt Yang'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2472, 'Boarder Brad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2473, 'Boarder Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2474, 'Boarder Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2475, 'Boarder Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2476, 'Boarder Deandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2477, 'Boarder Gerardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2478, 'Boarder Patton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2479, 'Boarder Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2480, 'Boarder Alvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2481, 'Boarder Alvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2482, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2483, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2484, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2485, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2486, 'Bodybuilder♂ Akmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2487, 'Bodybuilder♂ Akmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2488, 'Bodybuilder♂ Balus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2489, 'Bodybuilder♂ Becher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2490, 'Bodybuilder♀ Besol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2491, 'Bodybuilder♂ Colas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2492, 'Bodybuilder♂ Eisen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2493, 'Bodybuilder♀ Elidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2494, 'Bodybuilder♀ Elidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2495, 'Bodybuilder♂ Gano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2496, 'Bodybuilder♂ Givern'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2497, 'Bodybuilder♂ Hader'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2498, 'Bodybuilder♀ Jomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2499, 'Bodybuilder♀ Jomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2500, 'Bodybuilder♀ Lonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2501, 'Bodybuilder♀ Lonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2502, 'Bodybuilder♀ Lonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2503, 'Bodybuilder♂ Mirez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2504, 'Bodybuilder♀ Mirna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2505, 'Bodybuilder♀ Palen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2506, 'Bodybuilder♀ Ritaco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2507, 'Bodybuilder♀ Seben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2508, 'Bodybuilder♀ Taman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2509, 'Bodybuilder♂ Torf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2510, 'Bodybuilder♂ Varug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2511, 'Bodybuilder♂ Vitalo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2512, 'Bodybuilder♀ Banber'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2513, 'Bodybuilder♂ Bergin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2514, 'Bodybuilder♂ Chiod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2515, 'Bodybuilder♀ Eldora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2516, 'Bodybuilder♀ Felmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2517, 'Bodybuilder♂ Foalck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2518, 'Bodybuilder♀ Glya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2519, 'Bodybuilder♀ Helmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2520, 'Bodybuilder♂ Lazko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2521, 'Bodybuilder♀ Lunda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2522, 'Bodybuilder♂ Mengel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2523, 'Bodybuilder♂ Rapoz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2524, 'Bodybuilder♂ Rawles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2525, 'Bodybuilder♀ Rogen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2526, 'Bodybuilder♂ Seet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2527, 'Bodybuilder♀ Tiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2528, 'Bodybuilder♀ Velis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2529, 'Bodybuilder♀ Yagon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2530, 'Bodybuilder♂ Zicko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2531, 'Bodybuilder♀ Adeson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2532, 'Bodybuilder♂ Aftin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2533, 'Bodybuilder♂ Albah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2534, 'Bodybuilder♀ Delf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2535, 'Bodybuilder♂ Doby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2536, 'Bodybuilder♂ Doby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2537, 'Bodybuilder♂ Doby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2538, 'Bodybuilder♂ Dolam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2539, 'Bodybuilder♂ Dosk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2540, 'Bodybuilder♂ Dosk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2541, 'Bodybuilder♂ Dosk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2542, 'Bodybuilder♀ Elkain'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2543, 'Bodybuilder♂ Jepson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2544, 'Bodybuilder♀ Jiler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2545, 'Bodybuilder♂ Kevy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2546, 'Bodybuilder♀ Kilen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2547, 'Bodybuilder♀ Koren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2548, 'Bodybuilder♀ Okona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2549, 'Bodybuilder♂ Piliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2550, 'Bodybuilder♀ Powit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2551, 'Bodybuilder♂ Robit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2552, 'Bodybuilder♀ Selor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2553, 'Bodybuilder♂ Sendil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2554, 'Bodybuilder♂ Solog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2555, 'Bodybuilder♀ Toko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2556, 'Boss Trainer Abed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2557, 'Boss Trainer Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2558, 'Boss Trainer Bess'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2559, 'Boss Trainer BengaB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2560, 'Boss Trainer BengaW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2561, 'Boss Trainer Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2562, 'Boss Trainer Carleigh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2563, 'Boss Trainer Carlen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2564, 'Boss Trainer Daneil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2565, 'Boss Trainer Danelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2566, 'Boss Trainer Elie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2567, 'Boss Trainer Ellas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2568, 'Boss Trainer Frederick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2569, 'Boss Trainer Freira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2570, 'Boss Trainer Gail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2571, 'Boss Trainer Gaius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2572, 'Boss Trainer Harmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2573, 'Boss Trainer Harmony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2574, 'Boss Trainer Ira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2575, 'Boss Trainer Iria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2576, 'Boss Trainer Janna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2577, 'Boss Trainer Jariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2578, 'Brains & Brawn Arman & Hugo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2579, 'Brains & Brawn Eoin & Wolf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2580, 'Brains & Brawn Frank & Sly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2581, 'Brains & Brawn Aden & Finn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2582, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2583, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2584, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2585, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2586, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2587, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2588, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2589, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2590, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2591, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2592, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2593, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2594, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2595, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2596, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2597, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2598, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2599, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2600, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2601, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2602, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2603, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2604, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2605, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2606, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2607, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2608, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2609, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2610, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2611, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2612, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2613, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2614, 'Bug Catcher Al'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2615, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2616, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2617, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2618, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2619, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2620, 'Bug Catcher Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2621, 'Bug Catcher Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2622, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2623, 'Bug Catcher Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2624, 'Bug Catcher Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2625, 'Bug Catcher Ken*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2626, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2627, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2628, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2629, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2630, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2631, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2632, 'Bug Catcher WayneC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2633, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2634, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2635, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2636, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2637, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2638, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2639, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2640, 'Bug Catcher Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2641, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2642, 'Bug Catcher Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2643, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2644, 'Bug Catcher Davis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2645, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2646, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2647, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2648, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2649, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2650, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2651, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2652, 'Bug Catcher Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2653, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2654, 'Bug Catcher Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2655, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2656, 'Bug Catcher Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2657, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2658, 'Bug Catcher Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2659, 'Bug Catcher Cale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2660, 'Bug Catcher Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2661, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2662, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2663, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2664, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2665, 'Bug Catcher Conner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2666, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2667, 'Bug Catcher Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2668, 'Bug Catcher Garret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2669, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2670, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2671, 'Bug Catcher Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2672, 'Bug Catcher Keigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2673, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2674, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2675, 'Bug Catcher Robby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2676, 'Bug Catcher Sammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2677, 'Bug Catcher Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2678, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2679, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2680, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2681, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2682, 'Bug Catcher Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2683, 'Bug Catcher Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2684, 'Bug Catcher Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2685, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2686, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2687, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2688, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2689, 'Bug Catcher Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2690, 'Bug Catcher Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2691, 'Bug Catcher Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2692, 'Bug Catcher Abner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2693, 'Bug Catcher Al'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2694, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2695, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2696, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2697, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2698, 'Bug Catcher Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2699, 'Bug Catcher Dane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2700, 'Bug Catcher Dion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2701, 'Bug Catcher Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2702, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2703, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2704, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2705, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2706, 'Bug Catcher Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2707, 'Bug Catcher Ellis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2708, 'Bug Catcher Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2709, 'Bug Catcher Ken*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2710, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2711, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2712, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2713, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2714, 'Bug Catcher Stacey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2715, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2716, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2717, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2718, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2719, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2720, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2721, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2722, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2723, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2724, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2725, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2726, 'Bug Catcher Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2727, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2728, 'Bug Catcher Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2729, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2730, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2731, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2732, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2733, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2734, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2735, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2736, 'Bug Catcher Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2737, 'Bug Catcher Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2738, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2739, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2740, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2741, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2742, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2743, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2744, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2745, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2746, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2747, 'Bug Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2748, 'Bug Maniac Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2749, 'Bug Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2750, 'Bug Maniac Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2751, 'Bug Maniac Angelo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2752, 'Bug Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2753, 'Bug Maniac Cale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2754, 'Bug Maniac Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2755, 'Bug Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2756, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2757, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2758, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2759, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2760, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2761, 'Bug Maniac Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2762, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2763, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2764, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2765, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2766, 'Bug Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2767, 'Bug Maniac Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2768, 'Bug Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2769, 'Bug Maniac Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2770, 'Bug-Catching Man Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2771, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2772, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2773, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2774, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2775, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2776, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2777, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2778, 'Burglar Corey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2779, 'Burglar Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2780, 'Burglar Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2781, 'Burglar Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2782, 'Burglar Dusty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2783, 'Burglar Jac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2784, 'Burglar Lewis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2785, 'Burglar Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2786, 'Burglar Ramon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2787, 'Burglar Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2788, 'Burglar Corey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2789, 'Burglar Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2790, 'Burglar Orson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2791, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2792, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2793, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2794, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2795, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2796, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2797, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2798, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2799, 'Butler Chalmers'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2800, 'Cameraman Darryl(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2801, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2802, 'Cameraman Darryl(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2803, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2804, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2805, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2806, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2807, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2808, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2809, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2810, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2811, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2812, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2813, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2814, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2815, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2816, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2817, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2818, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2819, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2820, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2821, 'Jr. Trainer♂(Joe)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2822, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2823, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2824, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2825, 'Camper Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2826, 'Camper Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2827, 'Camper Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2828, 'Camper Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2829, 'Camper Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2830, 'Camper Lloyd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2831, 'Camper QuentinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2832, 'Camper Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2833, 'Camper Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2834, 'Camper Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2835, 'Camper Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2836, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2837, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2838, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2839, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2840, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2841, 'Camper Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2842, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2843, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2844, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2845, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2846, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2847, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2848, 'Camper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2849, 'Camper Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2850, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2851, 'Camper Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2852, 'Camper Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2853, 'Camper Beau'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2854, 'Camper Branden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2855, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2856, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2857, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2858, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2859, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2860, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2861, 'Camper Flint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2862, 'Camper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2863, 'Camper Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2864, 'Camper Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2865, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2866, 'Camper Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2867, 'Camper Tyron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2868, 'Camper Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2869, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2870, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2871, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2872, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2873, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2874, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2875, 'Camper Flint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2876, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2877, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2878, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2879, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2880, 'Camper Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2881, 'Camper Junta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2882, 'Camper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2883, 'Camper Liam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2884, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2885, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2886, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2887, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2888, 'Camper Riley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2889, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2890, 'Camper Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2891, 'Camper Curtis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2892, 'Camper Diego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2893, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2894, 'Camper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2895, 'Camper Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2896, 'Camper Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2897, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2898, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2899, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2900, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2901, 'Camper Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2902, 'Camper Curtis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2903, 'Camper Diego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2904, 'Camper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2905, 'Camper Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2906, 'Camper Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2907, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2908, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2909, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2910, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2911, 'Camper Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2912, 'Camper Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2913, 'Camper Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2914, 'Camper Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2915, 'Camper Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2916, 'Camper Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2917, 'Camper Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2918, 'Camper Lloyd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2919, 'Camper Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2920, 'Camper Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2921, 'Camper Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2922, 'Camper Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2923, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2924, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2925, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2926, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2927, 'Camper Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2928, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2929, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2930, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2931, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2932, 'Camper Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2933, 'Camper Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2934, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2935, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2936, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2937, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2938, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2939, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2940, 'Camper Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2941, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2942, 'Camper Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2943, 'Camper Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2944, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2945, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2946, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2947, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2948, 'Camper Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2949, 'Camper Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2950, 'Camper Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2951, 'Casual Dude Burdon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2952, 'Casual Dude Cark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2953, 'Casual Dude Cridel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2954, 'Casual Dude Feper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2955, 'Casual Dude Horbit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2956, 'Casual Dude Jusk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2957, 'Casual Dude Kolson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2958, 'Casual Dude Kwane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2959, 'Casual Dude Laks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2960, 'Casual Guy Axon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2961, 'Casual Guy Cyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2962, 'Casual Guy Ebzor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2963, 'Casual Guy Ginner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2964, 'Casual Guy Lobin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2965, 'Casual Guy Makel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2966, 'Casual Guy Napol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2967, 'Casual Guy Tobin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2968, 'Celebrity Amie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2969, 'Celebrity Scarlett*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2970, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2971, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2972, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2973, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2974, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2975, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2976, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2977, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2978, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2979, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2980, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2981, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2982, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2983, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2984, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2985, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2986, ' Channeler Amanda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2987, 'Channeler Angelica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2988, 'Channeler Carly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2989, 'Channeler Emilia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2990, 'Channeler Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2991, 'Channeler Janae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2992, 'Channeler Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2993, 'Channeler Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2994, 'Channeler Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2995, 'Channeler Laurel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2996, 'Channeler Patricia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2997, 'Channeler Paula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2998, 'Channeler Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (2999, 'Channeler Stacy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3000, 'Channeler Tammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3001, 'Channeler Tasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3002, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3003, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3004, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3005, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3006, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3007, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3008, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3009, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3010, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3011, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3012, 'Chaser♂ Belik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3013, 'Chaser♂ Calda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3014, 'Chaser♂ Calda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3015, 'Chaser♂ Calda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3016, 'Chaser♀ Devas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3017, 'Chaser♂ Drook'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3018, 'Chaser♀ Emok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3019, 'Chaser♀ Emok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3020, 'Chaser♀ Emok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3021, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3022, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3023, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3024, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3025, 'Chaser♀ Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3026, 'Chaser♀ Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3027, 'Chaser♂ Kell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3028, 'Chaser♀ Liaks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3029, 'Chaser♀ Liaks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3030, 'Chaser♀ Liaks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3031, 'Chaser♂ Maiz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3032, 'Chaser♂ Maiz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3033, 'Chaser♀ Mela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3034, 'Chaser♀ Mela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3035, 'Chaser♀ Rehan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3036, 'Chaser♀ Rehan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3037, 'Chaser♂ Rugen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3038, 'Chaser♀ Tisler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3039, 'Chaser♂ Trus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3040, 'Chaser♂ Zime'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3041, 'Chaser♂ Bano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3042, 'Chaser♀ Busen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3043, 'Chaser♂ Chotle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3044, 'Chaser♂ Defren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3045, 'Chaser♀ Ethior'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3046, 'Chaser♂ Faul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3047, 'Chaser♀ Gucio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3048, 'Chaser♂ Klame'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3049, 'Chaser♂ Krigon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3050, 'Chaser♂ Mandev'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3051, 'Chaser♂ Renfar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3052, 'Chaser♂ Slaben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3053, 'Chaser♀ Atles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3054, 'Chaser♀ Blist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3055, 'Chaser♀ Cidlor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3056, 'Chaser♂ Dabil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3057, 'Chaser♂ Daks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3058, 'Chaser♀ Finol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3059, 'Chaser♀ Finol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3060, 'Chaser♀ Finol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3061, 'Chaser♀ Fopaw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3062, 'Chaser♂ Furgy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3063, 'Chaser♀ Jeol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3064, 'Chaser♀ Jupex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3065, 'Chaser♂ Koiyt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3066, 'Chaser♂ Kuxor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3067, 'Chaser♂ Labet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3068, 'Chaser♂ Labet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3069, 'Chaser♂ Labet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3070, 'Chaser♀ Laken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3071, 'Chaser♀ Laken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3072, 'Chaser♀ Laken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3073, 'Chaser♀ Mestil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3074, 'Chaser♀ Nalix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3075, 'Chaser♀ Navu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3076, 'Chaser♂ Nildon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3077, 'Chaser♂ Novil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3078, 'Chaser♀ Ostix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3079, 'Chaser♀ Pixen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3080, 'Chaser♀ Quelis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3081, 'Chaser♂ Rafert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3082, 'Chaser♀ Regeni'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3083, 'Chaser♀ Resila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3084, 'Chaser♀ Rosil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3085, 'Chaser♂ Scrib'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3086, 'Chaser♀ Sellis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3087, 'Chaser♂ Tarbil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3088, 'Chaser♀ Tessi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3089, 'Chef Albern'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3090, 'Chef Kamaboko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3091, 'Chef Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3092, 'Chef Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3093, 'Chef Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3094, 'Chic Actress Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3095, 'Chic Actress Katalina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3096, 'Child Star Abby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3097, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3098, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3099, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3100, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3101, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3102, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3103, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3104, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3105, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3106, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3107, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3108, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3109, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3110, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3111, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3112, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3113, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3114, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3115, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3116, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3117, 'Cipher Admin Ardos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3118, 'Cipher Admin Ardos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3119, 'Cipher Admin Eldes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3120, 'Cipher Admin Eldes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3121, 'Cipher Admin Gorigan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3122, 'Cipher Admin Gorigan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3123, 'Cipher Admin Gorigan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3124, 'Cipher Admin Snattle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3125, 'Cipher Admin Snattle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3126, 'Cipher Admin Snattle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3127, 'Cipher Admin Lovrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3128, 'Cipher Admin Lovrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3129, 'Cipher Admin Lovrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3130, 'Cipher Peon♂ Arton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3131, 'Cipher Peon♂ Arton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3132, 'Cipher Peon♂ Arton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3133, 'Cipher Peon♀ Baila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3134, 'Cipher Peon♀ Baila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3135, 'Cipher Peon♀ Baila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3136, 'Cipher Peon♂ Berin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3137, 'Cipher Peon♂ Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3138, 'Cipher Peon♂ Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3139, 'Cipher Peon♂ Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3140, 'Cipher Peon♂ Bopen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3141, 'Cipher Peon♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3142, 'Cipher Peon♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3143, 'Cipher Peon♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3144, 'Cipher Peon♀ Dagur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3145, 'Cipher Peon♂ Dioge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3146, 'Cipher Peon♂ Dioge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3147, 'Cipher Peon♂ Dioge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3148, 'Cipher Peon♀ Doven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3149, 'Cipher Peon♀ Kass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3150, 'Cipher Peon♀ Kison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3151, 'Cipher Peon♀ Kloak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3152, 'Cipher Peon♀ Kloak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3153, 'Cipher Peon♀ Kloak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3154, 'Cipher Peon♀ Lare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3155, 'Cipher Peon♀ Lare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3156, 'Cipher Peon♀ Lare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3157, 'Cipher Peon♂ Lesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3158, 'Cipher Peon♂ Lesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3159, 'Cipher Peon♂ Lesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3160, 'Cipher Peon♂ Mirakle B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3161, 'Cipher Peon♀ Nella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3162, 'Cipher Peon♀ Nella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3163, 'Cipher Peon♂ Nore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3164, 'Cipher Peon♂ Nore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3165, 'Cipher Peon♂ Nore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3166, 'Cipher Peon♀ Remil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3167, 'Cipher Peon♀ Remil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3168, 'Cipher Peon♀ Remil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3169, 'Cipher Peon♂ Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3170, 'Cipher Peon♂ Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3171, 'Cipher Peon♂ Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3172, 'Cipher Peon♀ Sema'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3173, 'Cipher Peon♀ Sema'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3174, 'Cipher Peon♂ Silton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3175, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3176, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3177, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3178, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3179, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3180, 'Cipher Peon♂ Ston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3181, 'Cipher Peon♂ Ston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3182, 'Cipher Peon♀ Tanie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3183, 'Cipher Peon♀ Tanie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3184, 'Cipher Peon♀ Tanie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3185, 'Cipher Peon♀ Vana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3186, 'Cipher Peon♀ Vana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3187, 'Cipher Peon♀ Vana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3188, 'Cipher Peon♂ Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3189, 'Cipher Peon♂ Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3190, 'Cipher Peon♂ Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3191, 'Cipher Peon♂ Angic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3192, 'Cipher Peon♀ Bastil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3193, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3194, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3195, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3196, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3197, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3198, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3199, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3200, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3201, 'Cipher Peon♂ Cabol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3202, 'Cipher Peon♀ Corla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3203, 'Cipher Peon♂ Crink'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3204, 'Cipher Peon♂ Digor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3205, 'Cipher Peon♀ Dilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3206, 'Cipher Peon♂ Edios'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3207, 'Cipher Peon♂ Egrog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3208, 'Cipher Peon♀ Eloin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3209, 'Cipher Peon♂ Elox'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3210, 'Cipher Peon♂ Ertlig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3211, 'Cipher Peon♀ Exinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3212, 'Cipher Peon♀ Ezin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3213, 'Cipher Peon♀ Ezoor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3214, 'Cipher Peon♂ Faltly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3215, 'Cipher Peon♀ Fasin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3216, 'Cipher Peon♂ Feldas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3217, 'Cipher Peon♂ Fenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3218, 'Cipher Peon♂ Flipis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3219, 'Cipher Peon♂ Forgs'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3220, 'Cipher Peon♂ Fostin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3221, 'Cipher Peon♂ Fudler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3222, 'Cipher Peon♂ Gonrag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3223, 'Cipher Peon♂ Gorog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3224, 'Cipher Peon♂ Grason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3225, 'Cipher Peon♂ Greck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3226, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3227, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3228, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3229, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3230, 'Cipher Peon♂ Geftal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3231, 'Cipher Peon♀ Grezle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3232, 'Cipher Peon♂ Gromlet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3233, 'Cipher Peon♂ Grupel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3234, 'Cipher Peon♀ Haben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3235, 'Cipher Peon♂ Humah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3236, 'Cipher Peon♀ Ibsol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3237, 'Cipher Peon♂ Jargo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3238, 'Cipher Peon♀ Javion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3239, 'Cipher Peon♀ Jaymi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3240, 'Cipher Peon♀ Jelstin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3241, 'Cipher Peon♂ Kapen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3242, 'Cipher Peon♂ Karbon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3243, 'Cipher Peon♀ Kimly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3244, 'Cipher Peon♂ Kleef'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3245, 'Cipher Peon♀ Kleto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3246, 'Cipher Peon♂ Kolax'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3247, 'Cipher Peon♂ Kolest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3248, 'Cipher Peon♀ Kolin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3249, 'Cipher Peon♀ Kollo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3250, 'Cipher Peon♀ Leden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3251, 'Cipher Peon♂ Litnar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3252, 'Cipher Peon♂ Lobar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3253, 'Cipher Peon♂ Lok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3254, 'Cipher Peon♀ Meda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3255, 'Cipher Peon♀ Mesin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3256, 'Cipher Peon♂ Mocor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3257, 'Cipher Peon♂ Naps'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3258, 'Cipher Peon♀ Nexir'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3259, 'Cipher Peon♀ Nopia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3260, 'Cipher Peon♀ Pellim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3261, 'Cipher Peon♂ Petro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3262, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3263, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3264, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3265, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3266, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3267, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3268, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3269, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3270, 'Cipher Peon♂ Rett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3271, 'Cipher Peon♂ Rixor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3272, 'Cipher Peon♂ Smarton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3273, 'Cipher Peon♂ Smarton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3274, 'Cipher Peon♂ Snidle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3275, 'Cipher Peon♂ Solox'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3276, 'Cipher Peon♀ Targ'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3277, 'Cipher Peon♂ Torkin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3278, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3279, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3280, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3281, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3282, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3283, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3284, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3285, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3286, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3287, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3288, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3289, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3290, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3291, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3292, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3293, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3294, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3295, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3296, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3297, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3298, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3299, 'Collector HectorR'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3300, 'Collector HectorS'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3301, 'Collector Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3302, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3303, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3304, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3305, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3306, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3307, 'Collector Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3308, 'Collector Brady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3309, 'Collector Dominique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3310, 'Collector Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3311, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3312, 'Collector Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3313, 'Collector Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3314, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3315, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3316, 'Collector Jamal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3317, 'Collector Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3318, 'Collector Brady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3319, 'Collector Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3320, 'Collector Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3321, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3322, 'Collector Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3323, 'Collector Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3324, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3325, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3326, 'Collector Jamal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3327, 'Collector Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3328, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3329, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3330, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3331, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3332, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3333, 'Collector HectorOR'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3334, 'Collector HectorAS'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3335, 'Collector Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3336, 'Collector Bryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3337, 'Collector Kawika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3338, 'Collector Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3339, 'Collector Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3340, 'Colosseum Leader Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3341, 'Colosseum Leader Marina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3342, 'Colosseum Leader Rosie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3343, 'Colosseum Leader Voldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3344, 'Colosseum Leader Voldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3345, 'Colosseum Leader Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3346, 'Colosseum Leader Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3347, 'Colosseum Leader Dusty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3348, 'Colosseum Leader Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3349, 'Colosseum Leader Marina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3350, 'Colosseum Leader Rosie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3351, 'Colosseum Leader Voldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3352, 'Colosseum Leader Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3353, 'Colosseum Leader Dusty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3354, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3355, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3356, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3357, 'Comedian Masahiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3358, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3359, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3360, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3361, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3362, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3363, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3364, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3365, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3366, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3367, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3368, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3369, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3370, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3371, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3372, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3373, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3374, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3375, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3376, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3377, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3378, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3379, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3380, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3381, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3382, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3383, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3384, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3385, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3386, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3387, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3388, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3389, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3390, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3391, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3392, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3393, 'Cook Carver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3394, 'Cook Carver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3395, 'Cook Ernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3396, 'Cook Fil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3397, 'Cool Beauty Larissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3398, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3399, 'Cool Couple Geb & Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3400, 'Cool Couple Geb & Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3401, 'Cool Couple Isaac & Mag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3402, 'Cool Couple Jos & Anne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3403, 'Cool Couple Lex & Nya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3404, 'Cool Couple Lex & Nya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3405, 'Cool Couple Ray & Tyra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3406, 'Countess Anita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3407, 'Countess Adele'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3408, 'Countess Edith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3409, 'Countess Eliane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3410, 'Countess Ida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3411, 'Countess Mira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3412, 'Countess Patricia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3413, 'Cowgirl Shelley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3414, 'Cowgirl Shelley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3415, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3416, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3417, ' Crush Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3418, ' Crush Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3419, ' Crush Girl Jocelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3420, 'Crush Girl Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3421, 'Crush Girl Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3422, ' Crush Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3423, ' Crush Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3424, ' Crush Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3425, ' Crush Girl Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3426, ' Crush Girl Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3427, ' Crush Girl Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3428, 'Crush Kin Jo & Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3429, 'Crush Kin Mik & Kia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3430, 'Crush Kin Mik & Kia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3431, 'Crush Kin Mik & Kia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3432, 'Crush Kin Ric & Rene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3433, 'Crush Kin Ric & Rene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3434, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3435, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3436, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3437, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3438, 'Curmudgeon Loaken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3439, 'Curmudgeon Nistil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3440, 'Curmudgeon Metson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3441, 'Curmudgeon Okor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3442, 'Curmudgeon Sellok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3443, 'Curmudgeon Jimer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3444, 'Cute Trainer ♂ Miguel*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3445, 'Cute Trainer ♀ Penelope*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3446, 'Cyclist♂ Axel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3447, 'Cyclist♂ James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3448, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3449, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3450, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3451, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3452, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3453, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3454, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3455, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3456, 'Cyclist♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3457, 'Cyclist♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3458, 'Cyclist♀ Rachel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3459, 'Cyclist♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3460, 'Cyclist♂ Axel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3461, 'Cyclist♂ James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3462, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3463, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3464, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3465, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3466, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3467, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3468, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3469, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3470, 'Cyclist♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3471, 'Cyclist♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3472, 'Cyclist♀ Rachel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3473, 'Cyclist♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3474, 'Cyclist♂ Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3475, 'Cyclist♀ Krissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3476, 'Cyclist♀ Adelaide'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3477, 'Cyclist♂ Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3478, 'Cyclist♂ Jeremiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3479, 'Cyclist♀ Krissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3480, 'Dancer Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3481, 'Dancer Davey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3482, 'Dancer Dirk*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3483, 'Dancer Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3484, 'Dancer Mickey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3485, 'Dancer Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3486, 'Dancer Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3487, 'Dancer Davey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3488, 'Dancer Dirk*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3489, 'Dancer Jean-Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3490, 'Dancer Cara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3491, 'Dancer Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3492, 'Dancer Maika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3493, 'Dancer Mireille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3494, 'Delinquent Destinee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3495, 'Delinquent Kylie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3496, 'Delinquent Miley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3497, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3498, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3499, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3500, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3501, 'Depot Agent Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3502, 'Depot Agent Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3503, 'Depot Agent Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3504, 'Double Team Zac & Jen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3505, 'Double Team Al & Kay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3506, 'Double Team Jo & Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3507, 'Double Team Zac & Jen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3508, 'Double Team Al & Kay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3509, 'Double Team Jo & Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3510, 'Double Team Thom & Kae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3511, 'Double Team Zac & Jen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3512, 'Double Team Elan & Ida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3513, ' Dragon Tamer Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3514, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3515, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3516, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3517, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3518, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3519, ' Dragon Tamer Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3520, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3521, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3522, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3523, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3524, ' Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3525, 'Dragon Tamer Clinton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3526, 'Dragon Tamer Darien'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3527, 'Dragon Tamer Drake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3528, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3529, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3530, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3531, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3532, 'Dragon Tamer Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3533, 'Dragon Tamer Keegan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3534, 'Dragon Tamer Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3535, 'Dragon Tamer Ondrej'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3536, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3537, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3538, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3539, 'Dragon Tamer Stanley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3540, 'Dragon Tamer Clinton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3541, 'Dragon Tamer Drake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3542, 'Dragon Tamer Darien'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3543, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3544, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3545, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3546, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3547, 'Dragon Tamer Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3548, 'Dragon Tamer Keegan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3549, 'Dragon Tamer Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3550, 'Dragon Tamer Ondrej'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3551, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3552, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3553, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3554, 'Dragon Tamer Stanley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3555, 'Dragon Tamer Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3556, 'Dragon Tamer Dray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3557, 'Dragon Tamer Egon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3558, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3559, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3560, 'Driver Cabot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3561, 'Driver Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3562, 'Driver Clarence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3563, 'Driver Cormick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3564, 'Driver Coupe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3565, 'Driver Hackney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3566, 'Driver Hansom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3567, 'Driver Schaffer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3568, 'A-list Actor Alonso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3569, 'A-list Actor Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3570, 'Ace Duo Elina & Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3571, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3572, 'Ace Duo Jude & Rory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3573, 'Ace Duo Pike & Shiel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3574, 'Ace Duo Kent and Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3575, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3576, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3577, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3578, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3579, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3580, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3581, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3582, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3583, 'Cooltrainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3584, 'Cooltrainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3585, 'Cooltrainer♂ Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3586, 'Cooltrainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3587, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3588, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3589, 'Cooltrainer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3590, 'Cooltrainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3591, 'Cooltrainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3592, 'Cooltrainer♀ CaraC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3593, 'Cooltrainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3594, 'Cooltrainer♂Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3595, 'Cooltrainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3596, 'Cooltrainer♂ DarinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3597, 'Cooltrainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3598, 'Cooltrainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3599, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3600, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3601, 'Cooltrainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3602, 'Cooltrainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3603, 'Cooltrainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3604, 'Cooltrainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3605, 'Cooltrainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3606, 'Cooltrainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3607, 'Cooltrainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3608, 'Cooltrainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3609, 'Cooltrainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3610, 'Cooltrainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3611, 'Cooltrainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3612, 'Cooltrainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3613, 'Cooltrainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3614, 'Cooltrainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3615, 'Cooltrainer♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3616, 'Cooltrainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3617, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3618, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3619, 'Cooltrainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3620, 'Cooltrainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3621, 'Cooltrainer♂ Sean*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3622, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3623, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3624, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3625, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3626, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3627, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3628, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3629, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3630, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3631, 'Cooltrainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3632, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3633, 'Cooltrainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3634, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3635, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3636, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3637, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3638, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3639, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3640, 'Cooltrainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3641, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3642, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3643, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3644, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3645, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3646, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3647, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3648, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3649, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3650, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3651, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3652, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3653, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3654, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3655, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3656, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3657, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3658, 'Cooltrainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3659, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3660, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3661, 'Cooltrainer♀ Alexia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3662, 'Cooltrainer♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3663, 'Cooltrainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3664, 'Cooltrainer♂ Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3665, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3666, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3667, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3668, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3669, 'Cooltrainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3670, 'Cooltrainer♀ Carolina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3671, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3672, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3673, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3674, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3675, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3676, 'Cooltrainer♀ Cristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3677, 'Cooltrainer♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3678, 'Cooltrainer♀ Dianne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3679, 'Cooltrainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3680, 'Cooltrainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3681, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3682, 'Cooltrainer♂ Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3683, 'Cooltrainer♀ Halle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3684, 'Cooltrainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3685, 'Cooltrainer♀ Jazmyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3686, 'Cooltrainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3687, 'Cooltrainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3688, 'Cooltrainer♂ Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3689, 'Cooltrainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3690, 'Cooltrainer♀ Katelynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3691, 'Cooltrainer♀ Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3692, 'Cooltrainer♂ Leonel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3693, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3694, 'Cooltrainer♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3695, 'Cooltrainer♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3696, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3697, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3698, 'Cooltrainer♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3699, 'Cooltrainer♂ Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3700, 'Cooltrainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3701, 'Cooltrainer♂ Quincy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3702, 'Cooltrainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3703, 'Cooltrainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3704, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3705, 'Cooltrainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3706, 'Cooltrainer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3707, 'Cooltrainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3708, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3709, 'Cooltrainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3710, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3711, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3712, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3713, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3714, 'Cooltrainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3715, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3716, 'Cooltrainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3717, 'Cooltrainer♀ Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3718, 'Cooltrainer♀ Allyson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3719, 'Cooltrainer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3720, 'Cooltrainer♂ Colby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3721, 'Cooltrainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3722, 'Cooltrainer♀ Kathleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3723, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3724, 'Cooltrainer♂ Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3725, 'Cooltrainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3726, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3727, 'Cooltrainer♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3728, 'Cooltrainer♀ Naomi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3729, 'Cooltrainer♂ Rolando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3730, 'Cooltrainer♂ Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3731, 'Cooltrainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3732, 'Cooltrainer♂ Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3733, 'Ace Trainer♂ Abel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3734, 'Ace Trainer♀ Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3735, 'Ace Trainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3736, 'Ace Trainer♀ Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3737, 'Ace Trainer♂ Anton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3738, 'Ace Trainer♀ Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3739, 'Ace Trainer♀ Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3740, 'Ace Trainer♂ Arthur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3741, 'Ace Trainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3742, 'Ace Trainer♀ Brandi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3743, 'Ace Trainer♀ Breanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3744, 'Ace Trainer♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3745, 'Ace Trainer♀ Brenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3746, 'Ace Trainer♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3747, 'Ace Trainer♂ Cesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3748, 'Ace Trainer♀ Clarice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3749, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3750, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3751, 'Ace Trainer♀ Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3752, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3753, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3754, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3755, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3756, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3757, 'Ace Trainer♀ Destiny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3758, 'Ace Trainer♂ Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3759, 'Ace Trainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3760, 'Ace Trainer♂ Garrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3761, 'Ace Trainer♂ Graham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3762, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3763, 'Ace Trainer♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3764, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3765, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3766, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3767, 'Ace Trainer♀ Jasmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3768, 'Ace Trainer♂ Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3769, 'Ace Trainer♂ Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3770, 'Ace Trainer♀ Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3771, 'Ace Trainer♂ Keenan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3772, 'Ace Trainer♀ Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3773, 'Ace Trainer♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3774, 'Ace Trainer♀ Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3775, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3776, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3777, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3778, 'Ace Trainer♀ Meagan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3779, 'Ace Trainer♂ Micah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3780, 'Ace Trainer♀ Mikayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3781, 'Ace Trainer♀ Monique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3782, 'Ace Trainer♀ Natasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3783, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3784, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3785, 'Ace Trainer♂ Omar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3786, 'Ace Trainer♂ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3787, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3788, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3789, 'Ace Trainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3790, 'Ace Trainer♀ Sandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3791, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3792, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3793, 'Ace Trainer♀ Savannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3794, 'Ace Trainer♂ Sergio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3795, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3796, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3797, 'Ace Trainer♂ Skylar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3798, 'Ace Trainer♂ Stefan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3799, 'Ace Trainer♀ Sydney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3800, 'Ace Trainer♂ Zachery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3801, 'Ace Trainer♂ Abel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3802, 'Ace Trainer♀ Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3803, 'Ace Trainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3804, 'Ace Trainer♀ Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3805, 'Ace Trainer♂ Anton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3806, 'Ace Trainer♂ Arthur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3807, 'Ace Trainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3808, 'Ace Trainer♀ Brandi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3809, 'Ace Trainer♀ Breanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3810, 'Ace Trainer♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3811, 'Ace Trainer♀ Brenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3812, 'Ace Trainer♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3813, 'Ace Trainer♂ Cesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3814, 'Ace Trainer♀ Clarice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3815, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3816, 'Ace Trainer♂ Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3817, 'Ace Trainer♀ Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3818, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3819, 'Ace Trainer♀ Deanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3820, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3821, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3822, 'Ace Trainer♂ Dennis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3823, 'Ace Trainer♀ Destiny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3824, 'Ace Trainer♂ Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3825, 'Ace Trainer♂ Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3826, 'Ace Trainer♂ Garrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3827, 'Ace Trainer♂ Graham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3828, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3829, 'Ace Trainer♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3830, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3831, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3832, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3833, 'Ace Trainer♀ Jasmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3834, 'Ace Trainer♂ Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3835, 'Ace Trainer♂ Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3836, 'Ace Trainer♀ Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3837, 'Ace Trainer♂ Keenan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3838, 'Ace Trainer♀ Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3839, 'Ace Trainer♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3840, 'Ace Trainer♀ Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3841, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3842, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3843, 'Ace Trainer♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3844, 'Ace Trainer♀ Meagan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3845, 'Ace Trainer♂ Micah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3846, 'Ace Trainer♀ Mikayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3847, 'Ace Trainer♀ Monique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3848, 'Ace Trainer♀ Moira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3849, 'Ace Trainer♀ Moira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3850, 'Ace Trainer♀ Natasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3851, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3852, 'Ace Trainer♀ Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3853, 'Ace Trainer♂ Omar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3854, 'Ace Trainer♂ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3855, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3856, 'Ace Trainer♂ Rodolfo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3857, 'Ace Trainer♂ Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3858, 'Ace Trainer♀ Sandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3859, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3860, 'Ace Trainer♂ Saul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3861, 'Ace Trainer♀ Savannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3862, 'Ace Trainer♂ Sergio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3863, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3864, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3865, 'Ace Trainer♂ Skylar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3866, 'Ace Trainer♂ Stefan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3867, 'Ace Trainer♀ Sydney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3868, 'Ace Trainer♂ Zachery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3869, 'Ace Trainer♂ Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3870, 'Ace Trainer♂ Alton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3871, 'Ace Trainer♂ Arabella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3872, 'Ace Trainer♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3873, 'Ace Trainer♂ Bonita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3874, 'Ace Trainer♂ Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3875, 'Ace Trainer♀ Carol*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3876, 'Ace Trainer♂ Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3877, 'Ace Trainer♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3878, 'Ace Trainer♀ Emma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3879, 'Ace Trainer♀ Fran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3880, 'Ace Trainer♂ French'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3881, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3882, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3883, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3884, 'Ace Trainer♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3885, 'Ace Trainer♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3886, 'Ace Trainer♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3887, 'Ace Trainer♂ Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3888, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3889, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3890, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3891, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3892, 'Ace Trainer♀ Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3893, 'Ace Trainer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3894, 'Ace Trainer♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3895, 'Ace Trainer♀ Kelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3896, 'Ace Trainer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3897, 'Ace Trainer♂ Kobe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3898, 'Ace Trainer♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3899, 'Ace Trainer♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3900, 'Ace Trainer♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3901, 'Ace Trainer♂ Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3902, 'Ace Trainer♂ Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3903, 'Ace Trainer♂ Paulo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3904, 'Ace Trainer♀ Piper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3905, 'Ace Trainer♀ Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3906, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3907, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3908, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3909, 'Ace Trainer♀ Reena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3910, 'Ace Trainer♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3911, 'Ace Trainer♀ Salma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3912, 'Ace Trainer♂ Shaye*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3913, 'Ace Trainer♀ Allison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3914, 'Ace Trainer♂ Austin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3915, 'Ace Trainer♂ Beckett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3916, 'Ace Trainer♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3917, 'Ace Trainer♀ Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3918, 'Ace Trainer♀ Cathy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3919, 'Ace Trainer♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3920, 'Ace Trainer♀ Cheyenne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3921, 'Ace Trainer♀ Clara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3922, 'Ace Trainer♂ Corky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3923, 'Ace Trainer♀ Dara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3924, 'Ace Trainer♂ David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3925, 'Ace Trainer♂ Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3926, 'Ace Trainer♀ EileenB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3927, 'Ace Trainer♀ EileenW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3928, 'Ace Trainer♂ Elmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3929, 'Ace Trainer♀ Glinda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3930, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3931, 'Ace Trainer♂ Jesse'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3932, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3933, 'Ace Trainer♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3934, 'Ace Trainer♂ Johan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3935, 'Ace Trainer♂ Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3936, 'Ace Trainer♀ Junko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3937, 'Ace Trainer♀ Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3938, 'Ace Trainer♂ Kipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3939, 'Ace Trainer♀ LenaB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3940, 'Ace Trainer♂ LouB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3941, 'Ace Trainer♂ LouW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3942, 'Ace Trainer♀ Lucille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3943, 'Ace Trainer♀ Mariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3944, 'Ace Trainer♀ Olwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3945, 'Ace Trainer♀ Shanta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3946, 'Ace Trainer♀ Stella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3947, 'Ace Trainer♂ Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3948, 'Ace Trainer♂ Tom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3949, 'Ace Trainer♂ VincentB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3950, 'Ace Trainer♂ Webster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3951, 'Ace Trainer♂ Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3952, 'Ace Trainer♀ Angi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3953, 'Ace Trainer♂ Beckett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3954, 'Ace Trainer♀ Belle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3955, 'Ace Trainer♂ Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3956, 'Ace Trainer♀ Chandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3957, 'Ace Trainer♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3958, 'Ace Trainer♀ Cheyenne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3959, 'Ace Trainer♀ Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3960, 'Ace Trainer♂ Corky*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3961, 'Ace Trainer♂ Doyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3962, 'Ace Trainer♂ Enzio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3963, 'Ace Trainer♀ Eve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3964, 'Ace Trainer♂ Geoff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3965, 'Ace Trainer♂ Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3966, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3967, 'Ace Trainer♂ Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3968, 'Ace Trainer♀ Jacqueline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3969, 'Ace Trainer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3970, 'Ace Trainer♀ Jeanne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3971, 'Ace Trainer♀ Juliet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3972, 'Ace Trainer ♀ Junko*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3973, 'Ace Trainer♀ Kathrine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3974, 'Ace Trainer♂ Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3975, 'Ace Trainer♂ Kipp*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3976, 'Ace Trainer♀ Layla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3977, 'Ace Trainer♀ Lucca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3978, 'Ace Trainer♀ Lucille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3979, 'Ace Trainer♀ Mariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3980, 'Ace Trainer♀ Mariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3981, 'Ace Trainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3982, 'Ace Trainer♀ Melina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3983, 'Ace Trainer♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3984, 'Ace Trainer♀ Miki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3985, 'Ace Trainer♀ Natasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3986, 'Ace Trainer♀ Nina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3987, 'Ace Trainer♂ Pierce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3988, 'Ace Trainer♂ Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3989, 'Ace Trainer♀ Sable'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3990, 'Ace Trainer♂ Santino'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3991, 'Ace Trainer♂ Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3992, 'Ace Trainer♀ Shanta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3993, 'Ace Trainer♂ Shaye'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3994, 'Ace Trainer♂ Shel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3995, 'Ace Trainer♀ Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3996, 'Ace Trainer♀ Summer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3997, 'Ace Trainer♂ Tom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3998, 'Ace Trainer♀ Trish'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (3999, 'Ace Trainer♀ Vicki*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4000, 'Ace Trainer♂ Webster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4001, 'Ace Trainer♂ Adelbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4002, 'Ace Trainer♀ Alanza'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4003, 'Ace Trainer♂ Anton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4004, 'Ace Trainer♂ Bence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4005, 'Ace Trainer♀ Cordelia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4006, 'Ace Trainer♂ Emil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4007, 'Ace Trainer♂ Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4008, 'Ace Trainer♀ Hilde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4009, 'Ace Trainer♀ Imelda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4010, 'Ace Trainer♂ Mathis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4011, 'Ace Trainer♂ Maxim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4012, 'Ace Trainer♀ Michele'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4013, 'Ace Trainer♀ Mireille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4014, 'Ace Trainer♀ Monique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4015, 'Ace Trainer♂ Neil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4016, 'Ace Trainer♂ Rico'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4017, 'Ace Trainer♂ Robbie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4018, 'Ace Trainer♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4019, 'Ace Trainer♂ Theo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4020, 'Ace Trainer♂ Viktor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4021, 'Ace Trainer♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4022, 'Ace Trainer♂ Benedict'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4023, 'Ace Trainer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4024, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4025, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4026, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4027, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4028, 'Ace Trainer♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4029, 'Ace Trainer♀ Claudia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4030, 'Ace Trainer♂ Clyde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4031, 'Ace Trainer♀ Constance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4032, 'Ace Trainer♂ Cornelius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4033, 'Ace Trainer♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4034, 'Ace Trainer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4035, 'Ace Trainer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4036, 'Ace Trainer♀ Harriet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4037, 'Ace Trainer♂ Hisato'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4038, 'Ace Trainer♀ Honor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4039, 'Ace Trainer♀ Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4040, 'Ace Trainer♀ Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4041, 'Ace Trainer♀ Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4042, 'Ace Trainer♀ Julie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4043, 'Ace Trainer♂ Leopold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4044, 'Ace Trainer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4045, 'Ace Trainer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4046, 'Ace Trainer♀ Melba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4047, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4048, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4049, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4050, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4051, 'Ace Trainer♂ Neville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4052, 'Ace Trainer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4053, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4054, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4055, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4056, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4057, 'Ace Trainer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4058, 'Ace Trainer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4059, 'Ace Trainer♂ Vito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4060, 'Ace Trainer♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4061, 'Ace Trainer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4062, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4063, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4064, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4065, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4066, 'Ace Trainer♂ Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4067, 'Ace Trainer♂ Zane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4068, 'Ace Trainer♀ Alexis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4069, 'Ace Trainer♀ Angela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4070, 'Ace Trainer♂ Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4071, 'Ace Trainer♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4072, 'Ace Trainer♀ Eileen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4073, 'Ace Trainer♂ Hiroshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4074, 'Ace Trainer♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4075, 'Ace Trainer♂ Jim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4076, 'Ace Trainer♀ Junko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4077, 'Ace Trainer♀ Karla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4078, 'Ace Trainer♂ Kekoa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4079, 'Ace Trainer♀ Lindsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4080, 'Ace Trainer♀ Makana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4081, 'Ace Trainer♀ Tori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4082, 'Ace Trainer♀ Tori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4083, 'Ace Trainer♂ Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4084, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4085, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4086, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4087, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4088, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4089, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4090, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4091, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4092, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4093, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4094, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4095, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4096, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4097, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4098, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4099, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4100, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4101, 'Cool♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4102, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4103, 'Cool♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4104, 'Cooltrainer♀ Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4105, 'Cooltrainer♂ Conner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4106, 'Cooltrainer♀ Floria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4107, 'Cooltrainer♀ Floria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4108, 'Cooltrainer♀ Gloria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4109, 'Cooltrainer♀ Gloria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4110, 'Cooltrainer♂ Marty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4111, 'Cooltrainer♂ Marty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4112, 'Cooltrainer♂ Vince'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4113, 'Cooltrainer♂ Vince'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4114, 'Cooltrainer♂ Bedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4115, 'Cooltrainer♂ Boda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4116, 'Cooltrainer♂ Botan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4117, 'Cooltrainer♀ Buna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4118, 'Cooltrainer♂ Daras'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4119, 'Cooltrainer♂ Dury'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4120, 'Cooltrainer♀ Ferda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4121, 'Cooltrainer♂ Herton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4122, 'Cooltrainer♀ Lehan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4123, 'Cooltrainer♀ Liqui'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4124, 'Cooltrainer♀ Lomen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4125, 'Cooltrainer♀ Neira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4126, 'Cooltrainer♂ Rewn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4127, 'Cooltrainer♂ Stum'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4128, 'Cooltrainer♂ Tock'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4129, 'Cooltrainer♂ Trilo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4130, 'Cooltrainer♀ Atilo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4131, 'Cooltrainer♂ Berki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4132, 'Cooltrainer♂ Cruik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4133, 'Cooltrainer♂ Dazon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4134, 'Cooltrainer♂ Desid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4135, 'Cooltrainer♀ Detta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4136, 'Cooltrainer♂ Dillot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4137, 'Cooltrainer♂ Farfin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4138, 'Cooltrainer♂ Forgon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4139, 'Cooltrainer♀ Gilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4140, 'Cooltrainer♀ Gosney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4141, 'Cooltrainer♂ Hebel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4142, 'Cooltrainer♀ Levens'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4143, 'Cooltrainer♀ Moden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4144, 'Cooltrainer♂ Morfon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4145, 'Cooltrainer♂ Moril'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4146, 'Cooltrainer♀ Rask'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4147, 'Cooltrainer♀ Rateis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4148, 'Cooltrainer♀ Rosno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4149, 'Cooltrianer♂ Shadd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4150, 'Cooltrainer♀ Tynan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4151, 'Cooltrianer♂ Vanhub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4152, 'Cooltrainer♀ Veron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4153, 'Cooltrainer♀ Zoel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4154, 'Cooltrainer♂ Bardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4155, 'Cooltrainer♂ Carben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4156, 'Cooltrainer♀ Cida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4157, 'Cooltrainer♀ Cida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4158, 'Cooltrainer♀ Cida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4159, 'Cooltrainer♂ Degin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4160, 'Cooltrainer♀ Dibsin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4161, 'Cooltrainer♀ Dodin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4162, 'Cooltrainer♀ Ebson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4163, 'Cooltrainer♀ Equin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4164, 'Cooltrainer♀ Equin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4165, 'Cooltrainer♀ Flostin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4166, 'Cooltrainer♀ Gabsen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4167, 'Cooltrainer♂ Gorps'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4168, 'Cooltrainer♀ Halsion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4169, 'Cooltrainer♀ Hileon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4170, 'Cooltrainer♂ Klept'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4171, 'Cooltrainer♂ Lask'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4172, 'Cooltrainer♂ Malex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4173, 'Cooltrainer♂ Mopar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4174, 'Cooltrainer♂ Niled'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4175, 'Cooltrainer♂ Noxon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4176, 'Cooltrainer♀ Quelor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4177, 'Cooltrainer♀ Rapeel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4178, 'Cooltrainer♀ Roze'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4179, 'Cooltrainer♀ Tensin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4180, 'Cooltrainer♂ Teslor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4181, 'Cooltrainer♂ Tetil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4182, 'Actor Fabio*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4183, 'Actor Lars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4184, 'Actor Lars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4185, 'Actress Ingmar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4186, 'Actress Ingmar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4187, 'Actress Isabella*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4188, 'Actress Tallulah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4189, 'Actress Tallulah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4190, 'Aether Foundation Faba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4191, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4192, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4193, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4194, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4195, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4196, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4197, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4198, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4199, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4200, 'Aether Foundation Employee ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4201, 'Aether Foundation Employee ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4202, 'Aether Foundation Employee ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4203, 'Aether Foundation Employee ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4204, 'Aether Foundation Employee ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4205, 'Aether Foundation Employee *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4206, 'Aether Foundation Employee *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4207, 'Aether Foundation Employee *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4208, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4209, 'Aether Foundation Employee ♀ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4210, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4211, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4212, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4213, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4214, 'Aether Foundation Employee ♂ *'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4215, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4216, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4217, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4218, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4219, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4220, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4221, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4222, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4223, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4224, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4225, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4226, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4227, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4228, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4229, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4230, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4231, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4232, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4233, 'Aqua Admin Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4234, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4235, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4236, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4237, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4238, 'Aqua Admin Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4239, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4240, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4241, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4242, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4243, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4244, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4245, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4246, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4247, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4248, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4249, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4250, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4251, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4252, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4253, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4254, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4255, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4256, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4257, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4258, 'Area Leader Arth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4259, 'Area Leader Athey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4260, 'Area Leader Loko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4261, 'Area Leader Norus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4262, 'Area Leader Renson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4263, 'Area Leader Shobon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4264, 'Area Leader Trinch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4265, 'Area Leader Vander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4266, 'Area Leader Zentin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4267, 'Area Leader Axley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4268, 'Area Leader Cryal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4269, 'Area Leader Dessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4270, 'Area Leader Erben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4271, 'Area Leader Glydin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4272, 'Area Leader Leven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4273, 'Area Leader Slewis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4274, 'Area Leader Vannos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4275, 'Area Leader Vario'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4276, 'Area Leader Altor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4277, 'Area Leader Atrice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4278, 'Area Leader Elion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4279, 'Area Leader Konaik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4280, 'Area Leader Kucher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4281, 'Area Leader Langot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4282, 'Area Leader Mortac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4283, 'Area Leader Neblek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4284, 'Area Leader Vernice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4285, 'Area Leader Boyden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4286, 'Area Leader Calus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4287, 'Area Leader Eldof'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4288, 'Area Leader Hampy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4289, 'Area Leader Naday'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4290, 'Area Leader Nocom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4291, 'Area Leader Ragen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4292, 'Area Leader Taria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4293, 'Area Leader Vander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4294, 'Aroma Lady Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4295, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4296, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4297, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4298, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4299, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4300, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4301, 'Aroma Lady Celina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4302, 'Aroma Lady Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4303, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4304, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4305, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4306, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4307, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4308, 'Aroma Lady Shayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4309, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4310, 'Aroma Lady Miah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4311, 'Aroma Lady Natalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4312, 'Aroma Lady Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4313, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4314, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4315, 'Aroma Lady Alison(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4316, 'Aroma Lady Angela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4317, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4318, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4319, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4320, 'Aroma Lady Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4321, 'Aroma Lady Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4322, 'Aroma Lady Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4323, 'Aroma Lady Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4324, 'Aroma Lady Alison(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4325, 'Aroma Lady Angela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4326, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4327, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4328, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4329, 'Aroma Lady Elizabeth(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4330, 'Aroma Lady Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4331, 'Aroma Lady Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4332, 'Aroma Lady Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4333, 'Aroma Lady Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4334, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4335, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4336, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4337, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4338, 'Aroma Lady Rose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4339, 'Aroma Lady Thyme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4340, 'Aroma Lady Violet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4341, 'Artist Ismael(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4342, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4343, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4344, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4345, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4346, 'Artist Ismael(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4347, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4348, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4349, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4350, 'Artist William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4351, 'Artist Horton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4352, 'Artist Pierre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4353, 'Artist Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4354, 'Artist Gough'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4355, 'Artist Horton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4356, 'Artist Pierre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4357, 'Artist♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4358, 'Artist♂ Pierre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4359, 'Artist♂ Salvador'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4360, 'Artist♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4361, 'Artist Family Mona & Paolo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4362, 'Assistant ♂ Manuelo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4363, 'Assistant ♂ Manuelo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4364, 'Assistant ♀ Simone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4365, 'Assistant ♀ Simone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4366, 'Assistant ♂ Strange'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4367, 'Athlete♀ Adel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4368, 'Athlete♀ Aidel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4369, 'Athlete♀ Aidel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4370, 'Athlete♂ Albac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4371, 'Athlete♂ Bilal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4372, 'Athlete♀ Caden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4373, 'Athlete♀ Crisom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4374, 'Athlete♀ Dian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4375, 'Athlete♂ Dobel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4376, 'Athlete♀ Emia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4377, 'Athlete♂ Lorge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4378, 'Athlete♂ Magro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4379, 'Athlete♂ Meton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4380, 'Athlete♂ Raus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4381, 'Athlete♂ Rinos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4382, 'Athlete♀ Wina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4383, 'Athlete♀ Aleja'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4384, 'Athlete♂ Busik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4385, 'Athlete♂ Deron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4386, 'Athlete♀ Dilasi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4387, 'Athlete♂ Gatik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4388, 'Athlete♂ Gulor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4389, 'Athlete♀ Kimber'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4390, 'Athlete♂ Latrin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4391, 'Athlete♀ Mazzel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4392, 'Athlete♂ Menzon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4393, 'Athlete♂ Naga'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4394, 'Athlete♀ Nomol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4395, 'Athlete♀ Pasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4396, 'Athlete♀ Sano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4397, 'Athlete♂ Senton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4398, 'Athlete♂ Taot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4399, 'Athlete♂ Tria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4400, 'Athlete♂ Varian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4401, 'Athlete♀ Ziale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4402, 'Athletic Siblings Alyssa and Sho'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4403, 'Backers♀ Ai & Ciel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4404, 'Backers♂ Alf & Fred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4405, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4406, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4407, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4408, 'Backers♀ Cam & Abby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4409, 'Backers♀ Fey & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4410, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4411, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4412, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4413, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4414, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4415, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4416, 'Backers♀ Kat & Phae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4417, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4418, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4419, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4420, 'Backers♂ Les & Web'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4421, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4422, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4423, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4424, 'Backers♀ Ai & Ciel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4425, 'Backers♂ Alf & Fred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4426, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4427, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4428, 'Backers♀ Ami & Eira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4429, 'Backers♀ Ava & Aya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4430, 'Backers♀ Cam & Abby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4431, 'Backers♀ Cleo & Rio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4432, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4433, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4434, 'Backers♂ Hawk & Dar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4435, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4436, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4437, 'Backers♂ Joe & Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4438, 'Backers♀ Kat & Phae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4439, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4440, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4441, 'Backers♀ Kay & Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4442, 'Backers♂ Les & Web'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4443, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4444, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4445, 'Backers♂ Masa & Yas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4446, 'Backers♀ May & Mal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4447, 'Backers♂ Stu & Art'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4448, 'Backpacker♂ Alexander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4449, 'Backpacker♀ Anna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4450, 'Backpacker♂ CarlosB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4451, 'Backpacker♀ Corin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4452, 'Backpacker♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4453, 'Backpacker♀ EmiB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4454, 'Backpacker♂ HermanB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4455, 'Backpacker♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4456, 'Backpacker♀ Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4457, 'Backpacker♂ Keane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4458, 'Backpacker♂ Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4459, 'Backpacker♂ KiyoB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4460, 'Backpacker♀ Kumiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4461, 'Backpacker♀ Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4462, 'Backpacker♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4463, 'Backpacker♀ Lora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4464, 'Backpacker♂ Michael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4465, 'Backpacker♀ MollyB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4466, 'Backpacker♂ Nate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4467, 'Backpacker♀ Patty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4468, 'Backpacker♂ Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4469, 'Backpacker♀ Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4470, 'Backpacker♂ Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4471, 'Backpacker♂ Stephen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4472, 'Backpacker♂ Talon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4473, 'Backpacker♂ Terrance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4474, 'Backpacker♂ Toru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4475, 'Backpacker♀ Vicki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4476, 'Backpacker♂ Waylon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4477, 'Backpacker♂ Alexander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4478, 'Backpacker♀ Annie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4479, 'Backpacker♀ Blossom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4480, 'Backpacker♂ Boone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4481, 'Backpacker♀ Clara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4482, 'Backpacker♂ CliffordW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4483, 'Backpacker♀ Corin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4484, 'Backpacker♀ Eileen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4485, 'Backpacker♂ Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4486, 'Backpacker♀ Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4487, 'Backpacker♂ Kendall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4488, 'Backpacker♂ Kiyo(Tag battle w/Hiker Markus)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4489, 'Backpacker♀ Kumiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4490, 'Backpacker♂ Lowell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4491, 'Backpacker♀ Mae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4492, 'Backpacker♂ Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4493, 'Backpacker♀ Mitzi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4494, 'Backpacker♀ Myra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4495, 'Backpacker♀ Patty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4496, 'Backpacker♀ RachelW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4497, 'Backpacker♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4498, 'Backpacker♂ Reece'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4499, 'Backpacker♂ RolandW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4500, 'Backpacker♂ Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4501, 'Backpacker♂ Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4502, 'Backpacker♂ Talon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4503, 'Backpacker♀ Tami'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4504, 'Backpacker♂ Tim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4505, 'Backpacker♂ Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4506, 'Backpacker Farid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4507, 'Backpacker Heike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4508, 'Backpacker Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4509, 'Backpacker Joren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4510, 'Backpacker Lane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4511, 'Backpacker Roderick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4512, 'Backpacker Darnell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4513, 'Backpacker Deon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4514, 'Backpacker Emory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4515, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4516, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4517, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4518, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4519, 'Backpacker Graeme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4520, 'Backpacker Grayson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4521, 'Backpacker Ashley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4522, 'Backpacker Mikiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4523, 'Backpacker Kiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4524, 'Backpacker Perdy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4525, 'Backpacker Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4526, 'Backpacker Yuho'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4527, 'Baker Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4528, 'Baker Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4529, 'Baker Lilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4530, 'Baker Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4531, 'Baker Jenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4532, 'Baker Lilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4533, 'Bandana Guy Burge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4534, 'Bandana Guy Crudo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4535, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4536, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4537, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4538, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4539, 'Bandana Guy Divel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4540, 'Bandana Guy Geats'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4541, 'Bandana Guy Geats'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4542, 'Bandana Guy Hanel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4543, 'Bandana Guy Klest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4544, 'Bandana Guy Loba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4545, 'Bandana Guy Loba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4546, 'Bandana Guy Lobert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4547, 'Bandana Guy Noxy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4548, 'Bandana Guy Noxy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4549, 'Bandana Guy Vilch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4550, 'Bandana Guy Crace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4551, 'Bandana Guy Crag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4552, 'Bandana Guy Delav'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4553, 'Bandana Guy Feek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4554, 'Bandana Guy Kaler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4555, 'Bandana Guy Kitel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4556, 'Bandana Guy Norel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4557, 'Bandana Guy Omak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4558, 'Bandana Guy Roblin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4559, 'Bandana Guy Venez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4560, 'Baron Denis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4561, 'Baron Evran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4562, 'Baron Herisson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4563, 'Baron Lyon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4564, 'Baron Marseille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4565, 'Baron Moray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4566, 'Baron Orvault'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4567, 'Baroness Renée'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4568, 'Baroness Cadette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4569, 'Baroness Camille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4570, 'Baroness Estelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4571, 'Baroness Francine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4572, 'Baroness Maelys'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4573, 'Baroness Maryline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4574, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4575, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4576, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4577, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4578, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4579, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4580, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4581, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4582, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4583, 'Battle Chatelaine Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4584, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4585, 'Battle Chatelaine Evelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4586, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4587, 'Battle Chatelaine Morgan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4588, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4589, 'Battle Chatelaine Nita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4590, 'Battle Girl Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4591, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4592, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4593, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4594, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4595, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4596, 'Battle Girl Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4597, 'Battle Girl Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4598, 'Battle Girl Sadie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4599, 'Battle Girl Tessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4600, 'Battle Girl Vivian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4601, 'Battle Girl Aisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4602, 'Battle Girl Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4603, 'Battle Girl Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4604, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4605, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4606, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4607, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4608, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4609, 'Battle Girl Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4610, 'Battle Girl Helene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4611, 'Battle Girl Jocelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4612, 'Battle Girl Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4613, 'Battle Girl Lilith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4614, 'Battle Girl Paula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4615, 'Battle Girl Reyna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4616, 'Battle Girl Vivian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4617, 'Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4618, 'Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4619, 'Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4620, 'Battle Girl Helen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4621, 'Battle Girl Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4622, 'Battle Girl Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4623, 'Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4624, 'Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4625, 'Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4626, 'Battle Girl Helen(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4627, 'Battle Girl Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4628, 'Battle Girl Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4629, 'Battle Girl Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4630, 'Battle Girl Chandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4631, 'Battle Girl Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4632, 'Battle Girl Janie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4633, 'Battle Girl Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4634, 'Battle Girl Maggie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4635, 'Battle Girl Mikiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4636, 'Battle Girl Miriam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4637, 'Battle Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4638, 'Battle Girl Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4639, 'Battle Girl Xiao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4640, 'Battle Girl Alize'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4641, 'Battle Girl Azra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4642, 'Battle Girl Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4643, 'Battle Girl Chalina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4644, 'Battle Girl Chan*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4645, 'Battle Girl Glinda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4646, 'Battle Girl Janie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4647, 'Battle Girl Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4648, 'Battle Girl Maggie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4649, 'Battle Girl Maki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4650, 'Battle Girl Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4651, 'Battle Girl Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4652, 'Battle Girl Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4653, 'Battle Girl Xiao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4654, 'Battle Girl Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4655, 'Battle Girl Gabrielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4656, 'Battle Girl Gerardine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4657, 'Battle Girl Hailey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4658, 'Battle Girl Hedvig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4659, 'Battle Girl Justine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4660, 'Battle Girl Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4661, 'Battle Girl Sigrid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4662, 'Battle Girl Veronique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4663, 'Battle Girl Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4664, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4665, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4666, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4667, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4668, 'Battle Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4669, 'Battle Girl Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4670, 'Battle Girl Sadie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4671, 'Battle Girl Tess'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4672, 'Battle Girl Tessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4673, 'Battle Girl Vivian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4674, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4675, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4676, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4677, 'BeautyRB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4678, 'BeautyY'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4679, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4680, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4681, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4682, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4683, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4684, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4685, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4686, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4687, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4688, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4689, 'Beauty Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4690, 'Beauty Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4691, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4692, 'Beauty Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4693, 'Beauty Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4694, 'Beauty Victoria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4695, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4696, 'Beauty Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4697, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4698, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4699, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4700, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4701, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4702, 'Beauty Johanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4703, 'Beauty Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4704, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4705, 'Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4706, 'Beauty Shirley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4707, 'Beauty Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4708, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4709, 'Beauty Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4710, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4711, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4712, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4713, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4714, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4715, 'Beauty Johanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4716, 'Beauty Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4717, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4718, 'Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4719, 'Beauty Shirley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4720, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4721, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4722, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4723, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4724, 'Beauty Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4725, 'Beauty Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4726, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4727, 'Beauty Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4728, 'Beauty Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4729, 'Beauty Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4730, 'Beauty Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4731, 'Beauty Maura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4732, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4733, 'Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4734, 'Beauty Sheila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4735, 'Beauty Tamia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4736, 'Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4737, 'Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4738, 'Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4739, 'Beauty Devon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4740, 'Beauty Gabriella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4741, 'Beauty Harley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4742, 'Beauty Lindsay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4743, 'Beauty Nicola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4744, 'Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4745, 'Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4746, 'Beauty Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4747, 'Beauty Devon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4748, 'Beauty Gabriella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4749, 'Beauty Harley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4750, 'Beauty Nicola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4751, 'Beauty Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4752, 'Beauty Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4753, 'Beauty Charlotte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4754, 'Beauty Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4755, 'Beauty Kassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4756, 'Beauty Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4757, 'Beauty Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4758, 'Beauty Victoria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4759, 'Beauty Ampère'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4760, 'Beauty December*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4761, 'Beauty Fleming'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4762, 'Beauty Nikola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4763, 'Beauty Aimee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4764, 'Beauty Anais'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4765, 'Beauty Brigitte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4766, 'Beauty Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4767, 'Beauty Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4768, 'Beauty Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4769, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4770, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4771, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4772, 'Beauty Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4773, 'Beauty Johanna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4774, 'Beauty Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4775, 'Beauty Olivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4776, 'Beauty Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4777, 'Beauty Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4778, 'Beauty Brittney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4779, 'Beauty Carolyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4780, 'Beauty Carolyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4781, 'Beauty Krystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4782, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4783, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4784, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4785, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4786, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4787, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4788, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4789, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4790, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4791, 'Beauty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4792, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4793, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4794, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4795, 'Beauty Alissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4796, 'Beauty Rita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4797, 'Beauty Rita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4798, 'Beauty Cudsy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4799, 'Beauty Eloff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4800, 'Beauty Miru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4801, 'Beauty Minot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4802, 'Beauty Nevah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4803, 'Beauty Niven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4804, 'Beauty Ogoin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4805, 'Belle & Pa Ava & Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4806, 'Belle & Pa Beth & Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4807, 'Belle & Pa Ava & Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4808, 'Belle & Pa Beth & Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4809, 'Bellhop Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4810, 'Big Star Howard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4811, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4812, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4813, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4814, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4815, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4816, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4817, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4818, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4819, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4820, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4821, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4822, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4823, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4824, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4825, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4826, 'Biker Charles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4827, 'Biker Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4828, 'Biker Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4829, 'Biker Harris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4830, 'Biker Joel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4831, 'Biker Riley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4832, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4833, 'Biker Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4834, 'Biker Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4835, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4836, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4837, 'Biker Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4838, 'Biker Goon 1'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4839, 'Biker Goon 2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4840, 'Biker Goon 3'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4841, 'Biker Hideo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4842, 'Biker Isaac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4843, 'Biker Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4844, 'Biker Jaren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4845, 'Biker Jaren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4846, 'Biker Jaxon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4847, 'Biker Jaxon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4848, 'Biker Jordy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4849, 'Biker Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4850, 'Biker Lukas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4851, 'Biker Lukas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4852, 'Biker Malik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4853, 'Biker Nikolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4854, 'Biker Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4855, 'Biker Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4856, 'Biker Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4857, 'Biker Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4858, 'Biker William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4859, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4860, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4861, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4862, 'Biker Aiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4863, 'Biker Charles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4864, 'Biker Dale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4865, 'Biker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4866, 'Biker Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4867, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4868, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4869, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4870, 'Biker Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4871, 'Biker Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4872, 'Biker Harris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4873, 'Biker Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4874, 'Biker Joel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4875, 'Biker Markey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4876, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4877, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4878, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4879, 'Biker Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4880, 'Biker Teddy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4881, 'Biker Theron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4882, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4883, 'Biker JeremyFr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4884, 'Biker MorgannFr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4885, 'Biker Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4886, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4887, 'Biker Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4888, 'Biker StanleyB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4889, 'Biker Zeke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4890, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4891, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4892, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4893, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4894, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4895, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4896, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4897, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4898, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4899, 'Biker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4900, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4901, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4902, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4903, 'Biker Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4904, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4905, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4906, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4907, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4908, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4909, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4910, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4911, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4912, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4913, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4914, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4915, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4916, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4917, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4918, 'Bird Keeper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4919, 'Bird Keeper Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4920, 'Bird Keeper Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4921, 'Bird Keeper Boris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4922, 'Bird Keeper Bret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4923, 'Bird Keeper Bryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4924, 'Bird Keeper Denis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4925, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4926, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4927, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4928, 'Bird Keeper Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4929, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4930, 'Bird Keeper Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4931, 'Bird Keeper Rod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4932, 'Bird Keeper Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4933, 'Bird Keeper Theo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4934, 'Bird Keeper Toby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4935, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4936, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4937, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4938, 'Bird Keeper Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4939, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4940, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4941, 'Bird Keeper Bryon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4942, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4943, 'Bird Keeper Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4944, 'Bird Keeper Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4945, 'Bird Keeper Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4946, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4947, 'Bird Keeper Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4948, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4949, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4950, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4951, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4952, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4953, 'Bird Keeper Will'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4954, 'Bird Keeper Aidan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4955, 'Bird Keeper Alberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4956, 'Bird Keeper Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4957, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4958, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4959, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4960, 'Bird Keeper Coby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4961, 'Bird Keeper Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4962, 'Bird Keeper Darius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4963, 'Bird Keeper Edwardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4964, 'Bird Keeper Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4965, 'Bird Keeper Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4966, 'Bird Keeper Humberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4967, 'Bird Keeper Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4968, 'Bird Keeper Josue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4969, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4970, 'Bird Keeper Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4971, 'Bird Keeper Presley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4972, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4973, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4974, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4975, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4976, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4977, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4978, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4979, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4980, 'Bird Keeper Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4981, 'Bird Keeper Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4982, 'Bird Keeper Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4983, 'Bird Keeper Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4984, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4985, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4986, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4987, 'Bird Keeper Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4988, 'Bird Keeper Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4989, 'Bird Keeper Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4990, 'Bird Keeper Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4991, 'Bird Keeper Hibiki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4992, 'Bird Keeper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4993, 'Bird Keeper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4994, 'Bird Keeper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4995, 'Bird Keeper Marlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4996, 'Bird Keeper Marlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4997, 'Bird Keeper Marlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4998, 'Bird Keeper Milo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (4999, 'Bird Keeper Milo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5000, 'Bird Keeper Mitch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5001, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5002, 'Bird Keeper Ramiro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5003, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5004, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5005, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5006, 'Bird Keeper Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5007, 'Bird Keeper Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5008, 'Bird Keeper Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5009, 'Bird Keeper Alexandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5010, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5011, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5012, 'Bird Keeper Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5013, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5014, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5015, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5016, 'Bird Keeper Geneva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5017, 'Bird Keeper Hana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5018, 'Bird Keeper Katherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5019, 'Bird Keeper Krystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5020, 'Bird Keeper Alexandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5021, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5022, 'Bird Keeper Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5023, 'Bird Keeper Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5024, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5025, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5026, 'Bird Keeper Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5027, 'Bird Keeper Geneva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5028, 'Bird Keeper Hana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5029, 'Bird Keeper Katherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5030, 'Bird Keeper Krystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5031, 'Bird Keeper Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5032, 'Bird Keeper Bert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5033, 'Bird Keeper Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5034, 'Bird Keeper Boris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5035, 'Bird Keeper Bret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5036, 'Bird Keeper Bryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5037, 'Bird Keeper Denis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5038, 'Bird Keeper Easton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5039, 'Bird Keeper Ernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5040, 'Bird Keeper Gail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5041, 'Bird Keeper Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5042, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5043, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5044, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5045, 'Bird Keeper Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5046, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5047, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5048, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5049, 'Bird Keeper Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5050, 'Bird Keeper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5051, 'Bird Keeper Kinsley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5052, 'Bird Keeper Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5053, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5054, 'Bird Keeper Rod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5055, 'Bird Keeper Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5056, 'Bird Keeper Theo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5057, 'Bird Keeper Toby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5058, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5059, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5060, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5061, 'Bird Keeper Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5062, 'Bird Keeper Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5063, 'Bird Keeper Beck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5064, 'Bird Keeper Bran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5065, 'Bird Keeper Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5066, 'Bird Keeper Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5067, 'Bird Keeper Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5068, 'Bird Keeper Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5069, 'Bird Keeper Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5070, 'Bird Keeper Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5071, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5072, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5073, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5074, 'Bird Keeper Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5075, 'Bird Keeper Will'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5076, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5077, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5078, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5079, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5080, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5081, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5082, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5083, 'Birdboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5084, 'Bird Keeper Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5085, 'Bird Keeper Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5086, 'Bird Keeper Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5087, 'Bird Keeper Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5088, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5089, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5090, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5091, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5092, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5093, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5094, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5095, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5096, 'Blackbelt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5097, 'Blackbelt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5098, 'Blackbelt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5099, 'Blackbelt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5100, 'Blackbelt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5101, 'Blackbelt Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5102, 'Blackbelt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5103, 'Blackbelt Wai*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5104, 'Blackbelt Yoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5105, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5106, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5107, 'Black Belt Hideki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5108, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5109, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5110, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5111, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5112, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5113, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5114, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5115, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5116, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5117, 'Black Belt Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5118, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5119, 'Black Belt Cristian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5120, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5121, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5122, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5123, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5124, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5125, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5126, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5127, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5128, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5129, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5130, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5131, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5132, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5133, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5134, 'Black Belt Rhett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5135, 'Black Belt Takao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5136, 'Black Belt Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5137, 'Black Belt Zander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5138, 'Black Belt Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5139, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5140, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5141, 'Black Belt Hideki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5142, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5143, 'Black Belt Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5144, 'Black Belt Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5145, 'Black Belt Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5146, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5147, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5148, 'Black Belt Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5149, 'Black Belt Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5150, 'Black Belt Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5151, 'Black Belt Shea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5152, 'Black Belt Shea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5153, 'Black Belt Shea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5154, 'Black Belt Takashi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5155, 'Black Belt Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5156, 'Black Belt Carl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5157, 'Black Belt Colby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5158, 'Black Belt Darren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5159, 'Black Belt David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5160, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5161, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5162, 'Black Belt Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5163, 'Black Belt Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5164, 'Black Belt Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5165, 'Black Belt Griffin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5166, 'Black Belt Jarrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5167, 'Black Belt Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5168, 'Black Belt Kendal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5169, 'Black Belt Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5170, 'Black Belt Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5171, 'Black Belt Miles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5172, 'Black Belt Nathaniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5173, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5174, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5175, 'Black Belt Rafael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5176, 'Black Belt Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5177, 'Black Belt Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5178, 'Black Belt Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5179, 'Black Belt Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5180, 'Black Belt Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5181, 'Black Belt Carl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5182, 'Black Belt Colby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5183, 'Black Belt Darren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5184, 'Black Belt David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5185, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5186, 'Black Belt Davon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5187, 'Black Belt Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5188, 'Black Belt Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5189, 'Black Belt Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5190, 'Black Belt Griffin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5191, 'Black Belt Jarrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5192, 'Black Belt Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5193, 'Black Belt Kendal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5194, 'Black Belt Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5195, 'Black Belt Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5196, 'Black Belt Miles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5197, 'Black Belt Nathaniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5198, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5199, 'Black Belt Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5200, 'Black Belt Rafael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5201, 'Black Belt Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5202, 'Black Belt Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5203, 'Black Belt Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5204, 'Black Belt Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5205, 'Black Belt Ander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5206, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5207, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5208, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5209, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5210, 'Black Belt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5211, 'Black Belt Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5212, 'Black Belt Manford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5213, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5214, 'Blackbelt Wai*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5215, 'Black Belt Yoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5216, 'Black Belt Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5217, 'Black Belt Corey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5218, 'Black Belt Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5219, 'Black Belt Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5220, 'Black Belt Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5221, 'Black Belt Kendrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5222, 'Black Belt Kentaro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5223, 'Black Belt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5224, 'Black Belt Ryder'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5225, 'Black Belt Teppei'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5226, 'Black Belt Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5227, 'Black Belt Tyrone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5228, 'Black Belt Andrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5229, 'Black Belt Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5230, 'Black Belt Corey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5231, 'Black Belt Donny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5232, 'Black Belt Drago'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5233, 'Black Belt Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5234, 'Black Belt Gordon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5235, 'Black Belt Grigor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5236, 'Black Belt Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5237, 'Black Belt Jeriel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5238, 'Black Belt Kenneth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5239, 'Black Belt Kentaro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5240, 'Black Belt Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5241, 'Black Belt Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5242, 'Black Belt Martell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5243, 'Black Belt Mathis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5244, 'Black Belt Rich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5245, 'Black Belt Rocky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5246, 'Black Belt Rodrigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5247, 'Black Belt Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5248, 'Black Belt Wesley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5249, 'Black Belt Zachery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5250, 'Black Belt Alonzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5251, 'Black Belt Ander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5252, 'Black Belt Cadoc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5253, 'Black Belt Gunnar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5254, 'Black Belt Igor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5255, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5256, 'Black Belt Killian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5257, 'Black Belt Markus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5258, 'Black Belt Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5259, 'Black Belt Yanis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5260, 'Black Belt Atsushi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5261, 'Black Belt Banting*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5262, 'Black Belt Daisuke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5263, 'Black Belt Hideki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5264, 'Black Belt Hitoshi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5265, 'Black Belt Kiyo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5266, 'Black Belt Koichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5267, 'Black Belt Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5268, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5269, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5270, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5271, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5272, 'Black Belt Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5273, 'Black Belt Yuji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5274, 'Black Belt Clayton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5275, 'Black Belt Duane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5276, 'Black Belt Earl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5277, 'Black Belt Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5278, 'Black Belt Kenji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5279, 'Black Belt Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5280, 'Black Belt Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5281, 'Black Belt Tracy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5282, 'Black Belt Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5283, 'Black Belt Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5284, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5285, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5286, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5287, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5288, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5289, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5290, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5291, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5292, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5293, 'Judoboy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5294, 'Blackbelt Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5295, 'Blackbelt Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5296, 'Blackbelt Yang'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5297, 'Blackbelt Yang'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5298, 'Boarder Brad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5299, 'Boarder Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5300, 'Boarder Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5301, 'Boarder Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5302, 'Boarder Deandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5303, 'Boarder Gerardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5304, 'Boarder Patton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5305, 'Boarder Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5306, 'Boarder Alvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5307, 'Boarder Alvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5308, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5309, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5310, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5311, 'Boarder Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5312, 'Bodybuilder♂ Akmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5313, 'Bodybuilder♂ Akmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5314, 'Bodybuilder♂ Balus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5315, 'Bodybuilder♂ Becher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5316, 'Bodybuilder♀ Besol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5317, 'Bodybuilder♂ Colas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5318, 'Bodybuilder♂ Eisen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5319, 'Bodybuilder♀ Elidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5320, 'Bodybuilder♀ Elidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5321, 'Bodybuilder♂ Gano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5322, 'Bodybuilder♂ Givern'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5323, 'Bodybuilder♂ Hader'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5324, 'Bodybuilder♀ Jomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5325, 'Bodybuilder♀ Jomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5326, 'Bodybuilder♀ Lonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5327, 'Bodybuilder♀ Lonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5328, 'Bodybuilder♀ Lonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5329, 'Bodybuilder♂ Mirez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5330, 'Bodybuilder♀ Mirna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5331, 'Bodybuilder♀ Palen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5332, 'Bodybuilder♀ Ritaco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5333, 'Bodybuilder♀ Seben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5334, 'Bodybuilder♀ Taman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5335, 'Bodybuilder♂ Torf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5336, 'Bodybuilder♂ Varug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5337, 'Bodybuilder♂ Vitalo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5338, 'Bodybuilder♀ Banber'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5339, 'Bodybuilder♂ Bergin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5340, 'Bodybuilder♂ Chiod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5341, 'Bodybuilder♀ Eldora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5342, 'Bodybuilder♀ Felmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5343, 'Bodybuilder♂ Foalck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5344, 'Bodybuilder♀ Glya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5345, 'Bodybuilder♀ Helmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5346, 'Bodybuilder♂ Lazko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5347, 'Bodybuilder♀ Lunda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5348, 'Bodybuilder♂ Mengel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5349, 'Bodybuilder♂ Rapoz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5350, 'Bodybuilder♂ Rawles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5351, 'Bodybuilder♀ Rogen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5352, 'Bodybuilder♂ Seet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5353, 'Bodybuilder♀ Tiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5354, 'Bodybuilder♀ Velis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5355, 'Bodybuilder♀ Yagon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5356, 'Bodybuilder♂ Zicko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5357, 'Bodybuilder♀ Adeson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5358, 'Bodybuilder♂ Aftin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5359, 'Bodybuilder♂ Albah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5360, 'Bodybuilder♀ Delf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5361, 'Bodybuilder♂ Doby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5362, 'Bodybuilder♂ Doby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5363, 'Bodybuilder♂ Doby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5364, 'Bodybuilder♂ Dolam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5365, 'Bodybuilder♂ Dosk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5366, 'Bodybuilder♂ Dosk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5367, 'Bodybuilder♂ Dosk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5368, 'Bodybuilder♀ Elkain'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5369, 'Bodybuilder♂ Jepson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5370, 'Bodybuilder♀ Jiler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5371, 'Bodybuilder♂ Kevy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5372, 'Bodybuilder♀ Kilen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5373, 'Bodybuilder♀ Koren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5374, 'Bodybuilder♀ Okona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5375, 'Bodybuilder♂ Piliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5376, 'Bodybuilder♀ Powit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5377, 'Bodybuilder♂ Robit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5378, 'Bodybuilder♀ Selor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5379, 'Bodybuilder♂ Sendil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5380, 'Bodybuilder♂ Solog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5381, 'Bodybuilder♀ Toko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5382, 'Boss Trainer Abed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5383, 'Boss Trainer Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5384, 'Boss Trainer Bess'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5385, 'Boss Trainer BengaB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5386, 'Boss Trainer BengaW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5387, 'Boss Trainer Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5388, 'Boss Trainer Carleigh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5389, 'Boss Trainer Carlen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5390, 'Boss Trainer Daneil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5391, 'Boss Trainer Danelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5392, 'Boss Trainer Elie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5393, 'Boss Trainer Ellas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5394, 'Boss Trainer Frederick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5395, 'Boss Trainer Freira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5396, 'Boss Trainer Gail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5397, 'Boss Trainer Gaius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5398, 'Boss Trainer Harmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5399, 'Boss Trainer Harmony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5400, 'Boss Trainer Ira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5401, 'Boss Trainer Iria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5402, 'Boss Trainer Janna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5403, 'Boss Trainer Jariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5404, 'Brains & Brawn Arman & Hugo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5405, 'Brains & Brawn Eoin & Wolf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5406, 'Brains & Brawn Frank & Sly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5407, 'Brains & Brawn Aden & Finn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5408, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5409, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5410, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5411, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5412, 'Brains & Brawn Jael & Kael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5413, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5414, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5415, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5416, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5417, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5418, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5419, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5420, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5421, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5422, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5423, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5424, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5425, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5426, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5427, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5428, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5429, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5430, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5431, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5432, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5433, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5434, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5435, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5436, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5437, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5438, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5439, 'Bug Catcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5440, 'Bug Catcher Al'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5441, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5442, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5443, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5444, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5445, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5446, 'Bug Catcher Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5447, 'Bug Catcher Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5448, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5449, 'Bug Catcher Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5450, 'Bug Catcher Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5451, 'Bug Catcher Ken*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5452, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5453, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5454, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5455, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5456, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5457, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5458, 'Bug Catcher WayneC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5459, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5460, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5461, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5462, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5463, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5464, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5465, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5466, 'Bug Catcher Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5467, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5468, 'Bug Catcher Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5469, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5470, 'Bug Catcher Davis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5471, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5472, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5473, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5474, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5475, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5476, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5477, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5478, 'Bug Catcher Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5479, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5480, 'Bug Catcher Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5481, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5482, 'Bug Catcher Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5483, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5484, 'Bug Catcher Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5485, 'Bug Catcher Cale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5486, 'Bug Catcher Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5487, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5488, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5489, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5490, 'Bug Catcher Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5491, 'Bug Catcher Conner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5492, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5493, 'Bug Catcher Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5494, 'Bug Catcher Garret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5495, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5496, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5497, 'Bug Catcher Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5498, 'Bug Catcher Keigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5499, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5500, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5501, 'Bug Catcher Robby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5502, 'Bug Catcher Sammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5503, 'Bug Catcher Vance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5504, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5505, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5506, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5507, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5508, 'Bug Catcher Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5509, 'Bug Catcher Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5510, 'Bug Catcher Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5511, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5512, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5513, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5514, 'Bug Catcher Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5515, 'Bug Catcher Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5516, 'Bug Catcher Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5517, 'Bug Catcher Philip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5518, 'Bug Catcher Abner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5519, 'Bug Catcher Al'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5520, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5521, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5522, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5523, 'Bug Catcher Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5524, 'Bug Catcher Benny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5525, 'Bug Catcher Dane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5526, 'Bug Catcher Dion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5527, 'Bug Catcher Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5528, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5529, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5530, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5531, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5532, 'Bug Catcher Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5533, 'Bug Catcher Ellis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5534, 'Bug Catcher Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5535, 'Bug Catcher Ken*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5536, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5537, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5538, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5539, 'Bug Catcher Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5540, 'Bug Catcher Stacey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5541, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5542, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5543, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5544, 'Bug Catcher Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5545, 'Bug Catcher Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5546, 'Bug Catcher Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5547, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5548, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5549, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5550, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5551, 'Bug Catcher James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5552, 'Bug Catcher Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5553, 'Bug Catcher Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5554, 'Bug Catcher Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5555, 'Bug Catcher Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5556, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5557, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5558, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5559, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5560, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5561, 'Bug Boy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5562, 'Bug Catcher Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5563, 'Bug Catcher Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5564, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5565, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5566, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5567, 'Bug Catcher Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5568, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5569, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5570, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5571, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5572, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5573, 'Bug Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5574, 'Bug Maniac Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5575, 'Bug Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5576, 'Bug Maniac Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5577, 'Bug Maniac Angelo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5578, 'Bug Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5579, 'Bug Maniac Cale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5580, 'Bug Maniac Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5581, 'Bug Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5582, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5583, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5584, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5585, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5586, 'Bug Maniac Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5587, 'Bug Maniac Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5588, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5589, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5590, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5591, 'Bug Maniac Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5592, 'Bug Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5593, 'Bug Maniac Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5594, 'Bug Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5595, 'Bug Maniac Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5596, 'Bug-Catching Man Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5597, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5598, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5599, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5600, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5601, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5602, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5603, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5604, 'Burglar Corey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5605, 'Burglar Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5606, 'Burglar Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5607, 'Burglar Arnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5608, 'Burglar Dusty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5609, 'Burglar Jac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5610, 'Burglar Lewis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5611, 'Burglar Quinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5612, 'Burglar Ramon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5613, 'Burglar Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5614, 'Burglar Corey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5615, 'Burglar Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5616, 'Burglar Orson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5617, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5618, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5619, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5620, 'Burglar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5621, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5622, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5623, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5624, 'Burglar Jensen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5625, 'Butler Chalmers'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5626, 'Cameraman Darryl(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5627, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5628, 'Cameraman Darryl(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5629, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5630, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5631, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5632, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5633, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5634, 'Cameraman Tevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5635, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5636, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5637, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5638, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5639, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5640, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5641, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5642, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5643, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5644, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5645, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5646, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5647, 'Jr. Trainer♂(Joe)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5648, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5649, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5650, 'Jr. Trainer♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5651, 'Camper Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5652, 'Camper Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5653, 'Camper Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5654, 'Camper Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5655, 'Camper Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5656, 'Camper Lloyd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5657, 'Camper QuentinC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5658, 'Camper Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5659, 'Camper Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5660, 'Camper Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5661, 'Camper Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5662, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5663, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5664, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5665, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5666, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5667, 'Camper Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5668, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5669, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5670, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5671, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5672, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5673, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5674, 'Camper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5675, 'Camper Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5676, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5677, 'Camper Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5678, 'Camper Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5679, 'Camper Beau'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5680, 'Camper Branden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5681, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5682, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5683, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5684, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5685, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5686, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5687, 'Camper Flint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5688, 'Camper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5689, 'Camper Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5690, 'Camper Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5691, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5692, 'Camper Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5693, 'Camper Tyron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5694, 'Camper Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5695, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5696, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5697, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5698, 'Camper Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5699, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5700, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5701, 'Camper Flint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5702, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5703, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5704, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5705, 'Camper Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5706, 'Camper Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5707, 'Camper Junta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5708, 'Camper Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5709, 'Camper Liam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5710, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5711, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5712, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5713, 'Camper Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5714, 'Camper Riley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5715, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5716, 'Camper Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5717, 'Camper Curtis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5718, 'Camper Diego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5719, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5720, 'Camper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5721, 'Camper Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5722, 'Camper Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5723, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5724, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5725, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5726, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5727, 'Camper Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5728, 'Camper Curtis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5729, 'Camper Diego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5730, 'Camper Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5731, 'Camper Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5732, 'Camper Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5733, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5734, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5735, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5736, 'Camper Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5737, 'Camper Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5738, 'Camper Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5739, 'Camper Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5740, 'Camper Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5741, 'Camper Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5742, 'Camper Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5743, 'Camper Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5744, 'Camper Lloyd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5745, 'Camper Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5746, 'Camper Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5747, 'Camper Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5748, 'Camper Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5749, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5750, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5751, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5752, 'Camper Tanner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5753, 'Camper Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5754, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5755, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5756, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5757, 'Camper Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5758, 'Camper Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5759, 'Camper Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5760, 'Camper Drew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5761, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5762, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5763, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5764, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5765, 'Camper Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5766, 'Camper Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5767, 'Camper Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5768, 'Camper Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5769, 'Camper Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5770, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5771, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5772, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5773, 'Jr.♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5774, 'Camper Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5775, 'Camper Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5776, 'Camper Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5777, 'Casual Dude Burdon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5778, 'Casual Dude Cark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5779, 'Casual Dude Cridel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5780, 'Casual Dude Feper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5781, 'Casual Dude Horbit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5782, 'Casual Dude Jusk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5783, 'Casual Dude Kolson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5784, 'Casual Dude Kwane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5785, 'Casual Dude Laks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5786, 'Casual Guy Axon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5787, 'Casual Guy Cyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5788, 'Casual Guy Ebzor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5789, 'Casual Guy Ginner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5790, 'Casual Guy Lobin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5791, 'Casual Guy Makel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5792, 'Casual Guy Napol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5793, 'Casual Guy Tobin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5794, 'Celebrity Amie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5795, 'Celebrity Scarlett*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5796, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5797, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5798, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5799, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5800, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5801, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5802, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5803, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5804, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5805, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5806, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5807, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5808, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5809, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5810, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5811, 'Channeler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5812, 'Channeler Amanda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5813, 'Channeler Angelica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5814, 'Channeler Carly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5815, 'Channeler Emilia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5816, 'Channeler Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5817, 'Channeler Janae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5818, 'Channeler Jennifer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5819, 'Channeler Jody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5820, 'Channeler Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5821, 'Channeler Laurel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5822, 'Channeler Patricia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5823, 'Channeler Paula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5824, 'Channeler Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5825, 'Channeler Stacy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5826, 'Channeler Tammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5827, 'Channeler Tasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5828, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5829, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5830, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5831, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5832, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5833, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5834, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5835, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5836, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5837, 'Medium'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5838, 'Chaser♂ Belik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5839, 'Chaser♂ Calda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5840, 'Chaser♂ Calda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5841, 'Chaser♂ Calda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5842, 'Chaser♀ Devas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5843, 'Chaser♂ Drook'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5844, 'Chaser♀ Emok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5845, 'Chaser♀ Emok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5846, 'Chaser♀ Emok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5847, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5848, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5849, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5850, 'Chaser♂ Gurks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5851, 'Chaser♀ Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5852, 'Chaser♀ Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5853, 'Chaser♂ Kell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5854, 'Chaser♀ Liaks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5855, 'Chaser♀ Liaks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5856, 'Chaser♀ Liaks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5857, 'Chaser♂ Maiz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5858, 'Chaser♂ Maiz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5859, 'Chaser♀ Mela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5860, 'Chaser♀ Mela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5861, 'Chaser♀ Rehan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5862, 'Chaser♀ Rehan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5863, 'Chaser♂ Rugen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5864, 'Chaser♀ Tisler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5865, 'Chaser♂ Trus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5866, 'Chaser♂ Zime'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5867, 'Chaser♂ Bano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5868, 'Chaser♀ Busen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5869, 'Chaser♂ Chotle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5870, 'Chaser♂ Defren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5871, 'Chaser♀ Ethior'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5872, 'Chaser♂ Faul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5873, 'Chaser♀ Gucio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5874, 'Chaser♂ Klame'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5875, 'Chaser♂ Krigon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5876, 'Chaser♂ Mandev'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5877, 'Chaser♂ Renfar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5878, 'Chaser♂ Slaben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5879, 'Chaser♀ Atles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5880, 'Chaser♀ Blist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5881, 'Chaser♀ Cidlor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5882, 'Chaser♂ Dabil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5883, 'Chaser♂ Daks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5884, 'Chaser♀ Finol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5885, 'Chaser♀ Finol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5886, 'Chaser♀ Finol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5887, 'Chaser♀ Fopaw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5888, 'Chaser♂ Furgy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5889, 'Chaser♀ Jeol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5890, 'Chaser♀ Jupex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5891, 'Chaser♂ Koiyt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5892, 'Chaser♂ Kuxor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5893, 'Chaser♂ Labet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5894, 'Chaser♂ Labet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5895, 'Chaser♂ Labet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5896, 'Chaser♀ Laken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5897, 'Chaser♀ Laken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5898, 'Chaser♀ Laken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5899, 'Chaser♀ Mestil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5900, 'Chaser♀ Nalix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5901, 'Chaser♀ Navu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5902, 'Chaser♂ Nildon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5903, 'Chaser♂ Novil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5904, 'Chaser♀ Ostix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5905, 'Chaser♀ Pixen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5906, 'Chaser♀ Quelis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5907, 'Chaser♂ Rafert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5908, 'Chaser♀ Regeni'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5909, 'Chaser♀ Resila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5910, 'Chaser♀ Rosil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5911, 'Chaser♂ Scrib'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5912, 'Chaser♀ Sellis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5913, 'Chaser♂ Tarbil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5914, 'Chaser♀ Tessi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5915, 'Chef Albern'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5916, 'Chef Kamaboko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5917, 'Chef Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5918, 'Chef Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5919, 'Chef Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5920, 'Chic Actress Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5921, 'Chic Actress Katalina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5922, 'Child Star Abby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5923, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5924, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5925, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5926, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5927, 'Cipher Admin Dakim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5928, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5929, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5930, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5931, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5932, 'Cipher Admin Ein'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5933, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5934, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5935, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5936, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5937, 'Cipher Admin Miror B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5938, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5939, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5940, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5941, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5942, 'Cipher Admin Venus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5943, 'Cipher Admin Ardos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5944, 'Cipher Admin Ardos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5945, 'Cipher Admin Eldes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5946, 'Cipher Admin Eldes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5947, 'Cipher Admin Gorigan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5948, 'Cipher Admin Gorigan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5949, 'Cipher Admin Gorigan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5950, 'Cipher Admin Snattle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5951, 'Cipher Admin Snattle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5952, 'Cipher Admin Snattle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5953, 'Cipher Admin Lovrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5954, 'Cipher Admin Lovrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5955, 'Cipher Admin Lovrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5956, 'Cipher Peon♂ Arton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5957, 'Cipher Peon♂ Arton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5958, 'Cipher Peon♂ Arton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5959, 'Cipher Peon♀ Baila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5960, 'Cipher Peon♀ Baila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5961, 'Cipher Peon♀ Baila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5962, 'Cipher Peon♂ Berin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5963, 'Cipher Peon♂ Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5964, 'Cipher Peon♂ Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5965, 'Cipher Peon♂ Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5966, 'Cipher Peon♂ Bopen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5967, 'Cipher Peon♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5968, 'Cipher Peon♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5969, 'Cipher Peon♂ Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5970, 'Cipher Peon♀ Dagur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5971, 'Cipher Peon♂ Dioge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5972, 'Cipher Peon♂ Dioge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5973, 'Cipher Peon♂ Dioge'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5974, 'Cipher Peon♀ Doven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5975, 'Cipher Peon♀ Kass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5976, 'Cipher Peon♀ Kison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5977, 'Cipher Peon♀ Kloak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5978, 'Cipher Peon♀ Kloak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5979, 'Cipher Peon♀ Kloak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5980, 'Cipher Peon♀ Lare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5981, 'Cipher Peon♀ Lare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5982, 'Cipher Peon♀ Lare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5983, 'Cipher Peon♂ Lesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5984, 'Cipher Peon♂ Lesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5985, 'Cipher Peon♂ Lesar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5986, 'Cipher Peon♂ Mirakle B.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5987, 'Cipher Peon♀ Nella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5988, 'Cipher Peon♀ Nella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5989, 'Cipher Peon♂ Nore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5990, 'Cipher Peon♂ Nore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5991, 'Cipher Peon♂ Nore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5992, 'Cipher Peon♀ Remil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5993, 'Cipher Peon♀ Remil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5994, 'Cipher Peon♀ Remil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5995, 'Cipher Peon♂ Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5996, 'Cipher Peon♂ Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5997, 'Cipher Peon♂ Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5998, 'Cipher Peon♀ Sema'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (5999, 'Cipher Peon♀ Sema'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6000, 'Cipher Peon♂ Silton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6001, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6002, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6003, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6004, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6005, 'Cipher Peon♂ Skrub'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6006, 'Cipher Peon♂ Ston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6007, 'Cipher Peon♂ Ston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6008, 'Cipher Peon♀ Tanie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6009, 'Cipher Peon♀ Tanie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6010, 'Cipher Peon♀ Tanie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6011, 'Cipher Peon♀ Vana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6012, 'Cipher Peon♀ Vana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6013, 'Cipher Peon♀ Vana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6014, 'Cipher Peon♂ Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6015, 'Cipher Peon♂ Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6016, 'Cipher Peon♂ Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6017, 'Cipher Peon♂ Angic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6018, 'Cipher Peon♀ Bastil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6019, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6020, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6021, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6022, 'Cipher Peon♂ Blusix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6023, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6024, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6025, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6026, 'Cipher Peon♂ Browsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6027, 'Cipher Peon♂ Cabol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6028, 'Cipher Peon♀ Corla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6029, 'Cipher Peon♂ Crink'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6030, 'Cipher Peon♂ Digor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6031, 'Cipher Peon♀ Dilly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6032, 'Cipher Peon♂ Edios'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6033, 'Cipher Peon♂ Egrog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6034, 'Cipher Peon♀ Eloin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6035, 'Cipher Peon♂ Elox'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6036, 'Cipher Peon♂ Ertlig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6037, 'Cipher Peon♀ Exinn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6038, 'Cipher Peon♀ Ezin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6039, 'Cipher Peon♀ Ezoor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6040, 'Cipher Peon♂ Faltly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6041, 'Cipher Peon♀ Fasin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6042, 'Cipher Peon♂ Feldas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6043, 'Cipher Peon♂ Fenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6044, 'Cipher Peon♂ Flipis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6045, 'Cipher Peon♂ Forgs'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6046, 'Cipher Peon♂ Fostin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6047, 'Cipher Peon♂ Fudler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6048, 'Cipher Peon♂ Gonrag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6049, 'Cipher Peon♂ Gorog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6050, 'Cipher Peon♂ Grason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6051, 'Cipher Peon♂ Greck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6052, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6053, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6054, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6055, 'Cipher Peon♂ Greesix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6056, 'Cipher Peon♂ Geftal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6057, 'Cipher Peon♀ Grezle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6058, 'Cipher Peon♂ Gromlet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6059, 'Cipher Peon♂ Grupel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6060, 'Cipher Peon♀ Haben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6061, 'Cipher Peon♂ Humah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6062, 'Cipher Peon♀ Ibsol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6063, 'Cipher Peon♂ Jargo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6064, 'Cipher Peon♀ Javion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6065, 'Cipher Peon♀ Jaymi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6066, 'Cipher Peon♀ Jelstin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6067, 'Cipher Peon♂ Kapen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6068, 'Cipher Peon♂ Karbon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6069, 'Cipher Peon♀ Kimly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6070, 'Cipher Peon♂ Kleef'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6071, 'Cipher Peon♀ Kleto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6072, 'Cipher Peon♂ Kolax'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6073, 'Cipher Peon♂ Kolest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6074, 'Cipher Peon♀ Kolin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6075, 'Cipher Peon♀ Kollo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6076, 'Cipher Peon♀ Leden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6077, 'Cipher Peon♂ Litnar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6078, 'Cipher Peon♂ Lobar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6079, 'Cipher Peon♂ Lok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6080, 'Cipher Peon♀ Meda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6081, 'Cipher Peon♀ Mesin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6082, 'Cipher Peon♂ Mocor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6083, 'Cipher Peon♂ Naps'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6084, 'Cipher Peon♀ Nexir'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6085, 'Cipher Peon♀ Nopia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6086, 'Cipher Peon♀ Pellim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6087, 'Cipher Peon♂ Petro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6088, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6089, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6090, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6091, 'Cipher Peon♂ Purpsix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6092, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6093, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6094, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6095, 'Cipher Peon♂ Resix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6096, 'Cipher Peon♂ Rett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6097, 'Cipher Peon♂ Rixor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6098, 'Cipher Peon♂ Smarton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6099, 'Cipher Peon♂ Smarton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6100, 'Cipher Peon♂ Snidle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6101, 'Cipher Peon♂ Solox'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6102, 'Cipher Peon♀ Targ'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6103, 'Cipher Peon♂ Torkin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6104, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6105, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6106, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6107, 'Cipher Peon♂ Yellosix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6108, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6109, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6110, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6111, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6112, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6113, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6114, 'Clown Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6115, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6116, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6117, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6118, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6119, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6120, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6121, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6122, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6123, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6124, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6125, 'Collector HectorR'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6126, 'Collector HectorS'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6127, 'Collector Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6128, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6129, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6130, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6131, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6132, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6133, 'Collector Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6134, 'Collector Brady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6135, 'Collector Dominique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6136, 'Collector Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6137, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6138, 'Collector Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6139, 'Collector Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6140, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6141, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6142, 'Collector Jamal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6143, 'Collector Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6144, 'Collector Brady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6145, 'Collector Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6146, 'Collector Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6147, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6148, 'Collector Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6149, 'Collector Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6150, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6151, 'Collector Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6152, 'Collector Jamal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6153, 'Collector Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6154, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6155, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6156, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6157, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6158, 'Collector Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6159, 'Collector HectorOR'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6160, 'Collector HectorAS'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6161, 'Collector Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6162, 'Collector Bryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6163, 'Collector Kawika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6164, 'Collector Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6165, 'Collector Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6166, 'Colosseum Leader Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6167, 'Colosseum Leader Marina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6168, 'Colosseum Leader Rosie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6169, 'Colosseum Leader Voldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6170, 'Colosseum Leader Voldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6171, 'Colosseum Leader Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6172, 'Colosseum Leader Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6173, 'Colosseum Leader Dusty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6174, 'Colosseum Leader Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6175, 'Colosseum Leader Marina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6176, 'Colosseum Leader Rosie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6177, 'Colosseum Leader Voldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6178, 'Colosseum Leader Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6179, 'Colosseum Leader Dusty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6180, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6181, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6182, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6183, 'Comedian Masahiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6184, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6185, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6186, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6187, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6188, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6189, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6190, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6191, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6192, 'Commander Saturn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6193, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6194, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6195, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6196, 'Commander Mars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6197, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6198, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6199, 'Commander Jupiter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6200, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6201, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6202, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6203, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6204, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6205, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6206, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6207, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6208, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6209, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6210, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6211, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6212, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6213, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6214, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6215, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6216, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6217, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6218, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6219, 'Cook Carver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6220, 'Cook Carver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6221, 'Cook Ernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6222, 'Cook Fil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6223, 'Cool Beauty Larissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6224, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6225, 'Cool Couple Geb & Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6226, 'Cool Couple Geb & Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6227, 'Cool Couple Isaac & Mag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6228, 'Cool Couple Jos & Anne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6229, 'Cool Couple Lex & Nya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6230, 'Cool Couple Lex & Nya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6231, 'Cool Couple Ray & Tyra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6232, 'Countess Anita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6233, 'Countess Adele'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6234, 'Countess Edith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6235, 'Countess Eliane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6236, 'Countess Ida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6237, 'Countess Mira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6238, 'Countess Patricia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6239, 'Cowgirl Shelley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6240, 'Cowgirl Shelley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6241, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6242, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6243, 'Crush Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6244, 'Crush Girl Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6245, 'Crush Girl Jocelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6246, 'Crush Girl Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6247, 'Crush Girl Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6248, 'Crush Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6249, 'Crush Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6250, 'Crush Girl Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6251, 'Crush Girl Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6252, 'Crush Girl Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6253, 'Crush Girl Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6254, 'Crush Kin Jo & Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6255, 'Crush Kin Mik & Kia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6256, 'Crush Kin Mik & Kia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6257, 'Crush Kin Mik & Kia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6258, 'Crush Kin Ric & Rene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6259, 'Crush Kin Ric & Rene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6260, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6261, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6262, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6263, 'Crush Kin Ron & Mya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6264, 'Curmudgeon Loaken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6265, 'Curmudgeon Nistil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6266, 'Curmudgeon Metson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6267, 'Curmudgeon Okor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6268, 'Curmudgeon Sellok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6269, 'Curmudgeon Jimer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6270, 'Cute Trainer ♂ Miguel*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6271, 'Cute Trainer ♀ Penelope*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6272, 'Cyclist♂ Axel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6273, 'Cyclist♂ James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6274, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6275, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6276, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6277, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6278, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6279, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6280, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6281, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6282, 'Cyclist♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6283, 'Cyclist♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6284, 'Cyclist♀ Rachel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6285, 'Cyclist♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6286, 'Cyclist♂ Axel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6287, 'Cyclist♂ James'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6288, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6289, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6290, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6291, 'Cyclist♂ John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6292, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6293, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6294, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6295, 'Cyclist♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6296, 'Cyclist♀ Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6297, 'Cyclist♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6298, 'Cyclist♀ Rachel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6299, 'Cyclist♂ Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6300, 'Cyclist♂ Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6301, 'Cyclist♀ Krissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6302, 'Cyclist♀ Adelaide'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6303, 'Cyclist♂ Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6304, 'Cyclist♂ Jeremiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6305, 'Cyclist♀ Krissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6306, 'Dancer Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6307, 'Dancer Davey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6308, 'Dancer Dirk*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6309, 'Dancer Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6310, 'Dancer Mickey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6311, 'Dancer Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6312, 'Dancer Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6313, 'Dancer Davey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6314, 'Dancer Dirk*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6315, 'Dancer Jean-Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6316, 'Dancer Cara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6317, 'Dancer Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6318, 'Dancer Maika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6319, 'Dancer Mireille'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6320, 'Delinquent Destinee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6321, 'Delinquent Kylie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6322, 'Delinquent Miley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6323, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6324, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6325, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6326, 'Delinquent Sharlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6327, 'Depot Agent Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6328, 'Depot Agent Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6329, 'Depot Agent Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6330, 'Double Team Zac & Jen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6331, 'Double Team Al & Kay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6332, 'Double Team Jo & Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6333, 'Double Team Zac & Jen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6334, 'Double Team Al & Kay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6335, 'Double Team Jo & Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6336, 'Double Team Thom & Kae'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6337, 'Double Team Zac & Jen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6338, 'Double Team Elan & Ida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6339, 'Dragon Tamer Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6340, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6341, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6342, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6343, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6344, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6345, 'Dragon Tamer Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6346, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6347, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6348, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6349, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6350, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6351, 'Dragon Tamer Clinton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6352, 'Dragon Tamer Darien'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6353, 'Dragon Tamer Drake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6354, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6355, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6356, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6357, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6358, 'Dragon Tamer Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6359, 'Dragon Tamer Keegan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6360, 'Dragon Tamer Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6361, 'Dragon Tamer Ondrej'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6362, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6363, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6364, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6365, 'Dragon Tamer Stanley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6366, 'Dragon Tamer Clinton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6367, 'Dragon Tamer Drake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6368, 'Dragon Tamer Darien'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6369, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6370, 'Dragon Tamer Geoffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6371, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6372, 'Dragon Tamer Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6373, 'Dragon Tamer Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6374, 'Dragon Tamer Keegan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6375, 'Dragon Tamer Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6376, 'Dragon Tamer Ondrej'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6377, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6378, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6379, 'Dragon Tamer Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6380, 'Dragon Tamer Stanley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6381, 'Dragon Tamer Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6382, 'Dragon Tamer Dray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6383, 'Dragon Tamer Egon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6384, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6385, 'Dragon Tamer Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6386, 'Driver Cabot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6387, 'Driver Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6388, 'Driver Clarence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6389, 'Driver Cormick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6390, 'Driver Coupe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6391, 'Driver Hackney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6392, 'Driver Hansom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6393, 'Driver Schaffer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6394, 'Driver Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6395, 'Driver Weaver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6396, 'Duchess Drasna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6397, 'Duchess Elise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6398, 'Duchess Ione'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6399, 'Duchess Malva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6400, 'Duchess Nicolette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6401, 'Duchess Odele'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6402, 'Duchess Robin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6403, 'Duchess Rosalie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6404, 'Duchess Sabine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6405, 'Duke Hennessy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6406, 'Duke Lormont'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6407, 'Duke Siebold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6408, 'Duke Turner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6409, 'Duke Wikstrom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6410, 'Earl Glen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6411, 'Earl Gruosi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6412, 'Earl Lesotho'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6413, 'Earl Nassak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6414, 'Earl Nizam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6415, 'Earl Royan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6416, 'Earl Sancy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6417, 'Engineer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6418, 'Engineer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6419, 'Engineer Baily'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6420, 'Engineer Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6421, 'Engineer Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6422, 'Engineer Braxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6423, 'Engineer Camden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6424, 'Engineer Flint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6425, 'Mr. Fix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6426, 'Mr. Fix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6427, 'Rocket Executive ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6428, 'Rocket Executive ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6429, 'Rocket Executive ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6430, 'Rocket Executive ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6431, 'Rocket Executive ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6432, 'Rocket Executive ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6433, 'Team Rocket Admin ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6434, 'Team Rocket Admin ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6435, 'Executive Proton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6436, 'Executive Proton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6437, 'Executive Petrel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6438, 'Executive Petrel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6439, 'Executive Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6440, 'Executive Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6441, 'Executive Archer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6442, 'Rocket Executive ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6443, 'Rocket Executive ♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6444, 'Rocket Executive ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6445, 'Rocket Executive ♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6446, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6447, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6448, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6449, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6450, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6451, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6452, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6453, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6454, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6455, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6456, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6457, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6458, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6459, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6460, 'Expert♂ Auron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6461, 'Expert♂ Conor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6462, 'Expert♂ Fredrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6463, 'Expert♀ Makayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6464, 'Expert♀ Mollie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6465, 'Expert♂ Paxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6466, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6467, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6468, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6469, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6470, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6471, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6472, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6473, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6474, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6475, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6476, 'Expert♀ Bryn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6477, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6478, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6479, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6480, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6481, 'Expert♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6482, 'Expert♂ Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6483, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6484, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6485, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6486, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6487, 'Expert♂ Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6488, 'Fairy Tale Girl Alice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6489, 'Fairy Tale Girl Corinne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6490, 'Fairy Tale Girl Imogen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6491, 'Fairy Tale Girl Lovelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6492, 'Fairy Tale Girl Mahalyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6493, 'Fairy Tale Girl Wynne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6494, 'Fairy Tale Girl Cece'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6495, 'Fairy Tale Girl Franny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6496, 'Fairy Tale Girl Meggi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6497, 'Fairy Tale Girl Momo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6498, 'Fairy Tale Girl Momo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6499, 'Fairy Tale Girl Momo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6500, 'Fairy Tale Girl Momo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6501, 'Fairy Tale Girl Nellie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6502, 'Fare Prince Trencherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6503, 'Fine Actor Terrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6504, 'Fine Actor Terrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6505, 'Fine Actor Terrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6506, 'Firebreather Bill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6507, 'Firebreather Burt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6508, 'Firebreather Dick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6509, 'Firebreather Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6510, 'Firebreather Ned'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6511, 'Firebreather Otis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6512, 'Firebreather Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6513, 'Firebreather Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6514, 'Firebreather Bill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6515, 'Firebreather Burt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6516, 'Firebreather Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6517, 'Firebreather Otis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6518, 'Firebreather Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6519, 'Firebreather Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6520, 'Firebreather Bill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6521, 'Firebreather Burt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6522, 'Firebreather Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6523, 'Firebreather Ned'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6524, 'Firebreather Otis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6525, 'Firebreather Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6526, 'Firebreather Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6527, 'Firebreather Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6528, 'Firebreather Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6529, 'Firebreather Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6530, 'Firebreather Walt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6531, 'Firebreather Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6532, 'Firebreather Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6533, 'Firebreather Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6534, 'Firebreather Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6535, 'Firefighter Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6536, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6537, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6538, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6539, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6540, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6541, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6542, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6543, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6544, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6545, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6546, 'Fisherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6547, 'Fisher Andre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6548, 'Fisher Arnold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6549, 'Fisher Barney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6550, 'Fisher Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6551, 'Fisher Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6552, 'Fisher Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6553, 'Fisher Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6554, 'Fisher Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6555, 'Fisher Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6556, 'Fisher Jonah*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6557, 'Fisher Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6558, 'Fisher Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6559, 'Fisher Martin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6560, 'Fisher Marvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6561, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6562, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6563, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6564, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6565, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6566, 'Fisher Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6567, 'Fisher Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6568, 'Fisher Stephen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6569, 'Fisher Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6570, 'Fisher Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6571, 'Fisher Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6572, 'Fisher Andre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6573, 'Fisher Arnold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6574, 'Fisher Barney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6575, 'Fisher Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6576, 'Fisher Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6577, 'Fisher Jonah*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6578, 'Fisher Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6579, 'Fisher Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6580, 'Fisher Martin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6581, 'Fisher Marvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6582, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6583, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6584, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6585, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6586, 'Fisher Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6587, 'Fisher Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6588, 'Fisher Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6589, 'Fisher Stephen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6590, 'Fisher Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6591, 'Fisher Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6592, 'Fisher Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6593, 'Fisher Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6594, 'Fisher Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6595, 'Fisher Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6596, 'Fisher Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6597, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6598, 'Fisherman Barny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6599, 'Fisherman Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6600, 'Fisherman Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6601, 'Fisherman Dale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6602, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6603, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6604, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6605, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6606, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6607, 'Fisherman Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6608, 'Fisherman Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6609, 'Fisherman Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6610, 'Fisherman Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6611, 'Fisherman Ned'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6612, 'Fisherman Nolan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6613, 'Fisherman Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6614, 'Fisherman Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6615, 'Fisherman Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6616, 'Fisherman Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6617, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6618, 'Fisherman Barny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6619, 'Fisherman Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6620, 'Fisherman Chris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6621, 'Fisherman Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6622, 'Fisherman Dale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6623, 'Fisherman Darian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6624, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6625, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6626, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6627, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6628, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6629, 'Fisherman Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6630, 'Fisherman Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6631, 'Fisherman Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6632, 'Fisherman Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6633, 'Fisherman Ned'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6634, 'Fisherman Nolan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6635, 'Fisherman Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6636, 'Fisherman Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6637, 'Fisherman Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6638, 'Fisherman Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6639, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6640, 'Fisherman Barny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6641, 'Fisherman Chip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6642, 'Fisherman Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6643, 'Fisherman Dale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6644, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6645, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6646, 'Fisherman Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6647, 'Fisherman Kaden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6648, 'Fisherman Ned'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6649, 'Fisherman Nolan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6650, 'Fisherman Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6651, 'Fisherman Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6652, 'Fisherman Tylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6653, 'Fisherman Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6654, 'Fisherman Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6655, 'Fisherman Alec'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6656, 'Fisherman Alec'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6657, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6658, 'Fisherman Brett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6659, 'Fisherman Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6660, 'Fisherman Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6661, 'Fisherman Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6662, 'Fisherman Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6663, 'Fisherman Erick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6664, 'Fisherman George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6665, 'Fisherman Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6666, 'Fisherman Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6667, 'Fisherman Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6668, 'Fisherman Juan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6669, 'Fisherman Kenneth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6670, 'Fisherman Luc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6671, 'Fisherman Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6672, 'Fisherman Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6673, 'Fisherman Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6674, 'Fisherman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6675, 'Fisherman Zachary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6676, 'Fisherman Alec'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6677, 'Fisherman Alec'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6678, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6679, 'Fisherman Brett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6680, 'Fisherman Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6681, 'Fisherman Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6682, 'Fisherman Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6683, 'Fisherman Erick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6684, 'Fisherman George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6685, 'Fisherman Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6686, 'Fisherman Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6687, 'Fisherman Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6688, 'Fisherman Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6689, 'Fisherman Juan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6690, 'Fisherman Kenneth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6691, 'Fisherman Luc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6692, 'Fisherman Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6693, 'Fisherman Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6694, 'Fisherman Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6695, 'Fisherman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6696, 'Fisherman Zachary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6697, 'Fisherman Andre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6698, 'Fisherman Arnold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6699, 'Fisherman Barney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6700, 'Fisherman Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6701, 'Fisherman Gideon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6702, 'Fisherman Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6703, 'Fisherman Jonah*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6704, 'Fisherman Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6705, 'Fisherman Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6706, 'Fisherman Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6707, 'Fisherman Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6708, 'Fisherman Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6709, 'Fisherman Kyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6710, 'Fisherman Kyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6711, 'Fisherman Kyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6712, 'Fisherman Kyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6713, 'Fisherman Liam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6714, 'Fisherman Martin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6715, 'Fisherman Marvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6716, 'Fisherman Murphy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6717, 'Fisherman Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6718, 'Fisherman Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6719, 'Fisherman Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6720, 'Fisherman Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6721, 'Fisherman Raymond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6722, 'Fisher Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6723, 'Fisherman Stephen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6724, 'Fisherman Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6725, 'Fisherman Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6726, 'Fisherman Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6727, 'Fisherman Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6728, 'Fisherman Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6729, 'Fisherman Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6730, 'Fisherman Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6731, 'Fisherman Wilton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6732, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6733, 'Fisherman Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6734, 'Fisherman Damon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6735, 'Fisherman Devon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6736, 'Fisherman Hubert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6737, 'Fisherman Jones'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6738, 'Fisherman Lydon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6739, 'Fisherman Mick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6740, 'Fisherman Pete'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6741, 'Fisherman Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6742, 'Fisherman Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6743, 'Fisherman Vince'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6744, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6745, 'Fisherman Arnold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6746, 'Fisherman Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6747, 'Fisherman Bucky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6748, 'Fisherman Damon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6749, 'Fisherman Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6750, 'Fisherman Devon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6751, 'Fisherman Eustace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6752, 'Fisherman Hubert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6753, 'Fisherman Jones'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6754, 'Fisherman Kenzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6755, 'Fisherman Leroy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6756, 'Fisherman Lydon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6757, 'Fisherman Mack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6758, 'Fisherman Ryder'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6759, 'Fisherman Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6760, 'Fisherman Vince'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6761, 'Fisherman Ewan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6762, 'Fisherman Finn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6763, 'Fisherman Murray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6764, 'Fisherman Seward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6765, 'Fisherman Shad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6766, 'Fisherman Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6767, 'Fisherman Wharton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6768, 'Fisherman Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6769, 'Fisherman Barny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6770, 'Fisherman Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6771, 'Fisherman Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6772, 'Fisherman Dale'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6773, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6774, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6775, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6776, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6777, 'Fisherman Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6778, 'Fisherman Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6779, 'Fisherman Finley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6780, 'Fisherman Fisher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6781, 'Fisherman Fisk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6782, 'Fisherman Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6783, 'Fisherman Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6784, 'Fisherman Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6785, 'Fisherman Ned'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6786, 'Fisherman Nolan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6787, 'Fisherman River'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6788, 'Fisherman Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6789, 'Fisherman Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6790, 'Fisherman Sheaffer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6791, 'Fisherman Timin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6792, 'Fisherman Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6793, 'Fisherman Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6794, 'Fisherman Carl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6795, 'Fisherman Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6796, 'Fisherman Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6797, 'Fisherman Herbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6798, 'Fisherman Hisato'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6799, 'Fisherman Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6800, 'Fisherman Vernon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6801, 'Fisher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6802, 'Fisher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6803, 'Fisher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6804, 'Fisher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6805, 'Fisherman Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6806, 'Fisherman Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6807, 'Free Diver Aileen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6808, 'Free Diver Arzu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6809, 'Free Diver Arzu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6810, 'Free Diver Arzu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6811, 'Free Diver Coral'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6812, 'Free Diver Cordura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6813, 'Free Diver Hollie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6814, 'Free Diver Jillian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6815, 'Free Diver Kailyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6816, 'Free Diver Mayu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6817, 'Free Diver Rischel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6818, 'Fun Old Man Chenek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6819, 'Fun Old Man Drig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6820, 'Fun Old Man Gorbel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6821, 'Fun Old Man Haken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6822, 'Fun Old Man Higson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6823, 'Fun Old Man Matso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6824, 'Fun Old Man Metz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6825, 'Fun Old Man Skof'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6826, 'Fun Old Man Skof'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6827, 'Fun Old Man Skof'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6828, 'Fun Old Man Tando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6829, 'Fun Old Man Taryn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6830, 'Fun Old Man Varl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6831, 'Fun Old Man Yudan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6832, 'Fun Old Man Aikon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6833, 'Fun Old Man Berlo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6834, 'Fun Old Man Freyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6835, 'Fun Old Man Grund'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6836, 'Fun Old Man Hoglo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6837, 'Fun Old Man Kelvor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6838, 'Fun Old Man Orsak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6839, 'Fun Old Man Radle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6840, 'Fun Old Man Sciet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6841, 'Fun Old Man Wogort'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6842, 'Fun Old Man Clerr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6843, 'Fun Old Man Clerr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6844, 'Fun Old Man Clerr'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6845, 'Fun Old Man Cron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6846, 'Fun Old Man Dargs'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6847, 'Fun Old Man Doost'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6848, 'Fun Old Man Ebilo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6849, 'Fun Old Man Eroll'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6850, 'Fun Old Man Eroll'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6851, 'Fun Old Man Hebson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6852, 'Fun Old Man Junder'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6853, 'Fun Old Man Kabin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6854, 'Fun Old Man Norbel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6855, 'Fun Old Man Rekix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6856, 'Fun Old Man Roben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6857, 'Furisode Girl Blossom*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6858, 'Furisode Girl Cliantha**'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6859, 'Furisode Girl Gwyneth**'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6860, 'Furisode Girl Kali*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6861, 'Furisode Girl Katherine*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6862, 'Furisode Girl Linnea*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6863, 'Furisode Girl Nerissa**'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6864, 'Furisode Girl Thalassa**'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6865, 'Future Girl Karla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6866, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6867, 'Gardener Fabian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6868, 'Gardener Grover'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6869, 'Gardener Wheaton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6870, 'Garçon Georges'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6871, 'Garçon Jacopo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6872, 'Garçon Morris*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6873, 'Garçon Morris*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6874, 'Gentleman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6875, 'Gentleman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6876, 'Gentleman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6877, 'Gentleman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6878, 'Gentleman RB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6879, 'Gentleman Y'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6880, 'Gentleman Alfred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6881, 'Gentleman Edward*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6882, 'Gentleman Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6883, 'Gentleman Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6884, 'Gentleman Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6885, 'Gentleman Tucker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6886, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6887, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6888, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6889, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6890, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6891, 'Gentleman Clifford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6892, 'Gentleman Everett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6893, 'Gentleman Micah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6894, 'Gentleman Nate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6895, 'Gentleman Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6896, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6897, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6898, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6899, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6900, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6901, 'Gentleman Arthur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6902, 'Gentleman Brooks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6903, 'Gentleman Clifford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6904, 'Gentleman Emanuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6905, 'Gentleman Lamar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6906, 'Gentleman Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6907, 'Gentleman Tucker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6908, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6909, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6910, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6911, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6912, 'Gentleman Leonardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6913, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6914, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6915, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6916, 'Gentleman Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6917, 'Gentleman Leonardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6918, 'Gentleman Alfred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6919, 'Gentleman Alfred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6920, 'Gentleman Alfred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6921, 'Gentleman Alfred'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6922, 'Gentleman Edward*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6923, 'Gentleman Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6924, 'Gentleman Milton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6925, 'Gentleman Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6926, 'Gentleman FredericB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6927, 'Gentleman Renaud'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6928, 'Gentleman Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6929, 'Gentleman Yan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6930, 'Gentleman Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6931, 'Gentleman Sheldon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6932, 'Gentleman Renaud'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6933, 'Gentleman Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6934, 'Gentleman Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6935, 'Gentleman Stonewall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6936, 'Gentleman Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6937, 'Gentleman Tucker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6938, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6939, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6940, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6941, 'Gentleman Walter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6942, 'Gentleman Gerald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6943, 'Gentleman Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6944, 'Gentleman Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6945, 'Gentleman Smith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6946, 'Gentleman Stanley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6947, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6948, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6949, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6950, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6951, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6952, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6953, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6954, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6955, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6956, 'Old Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6957, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6958, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6959, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6960, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6961, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6962, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6963, 'Girl In Love Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6964, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6965, 'Girlfriend Maria*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6966, 'Girlfriend Monica*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6967, 'Glasses Man Delot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6968, 'Glasses Man Gilam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6969, 'Glasses Man Hauf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6970, 'Glasses Man Laton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6971, 'Glasses Man Moit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6972, 'Glasses Man Solek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6973, 'Glasses Man Terl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6974, 'Glasses Man Acron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6975, 'Glasses Man Bayel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6976, 'Glasses Man Boren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6977, 'Glasses Man Dunor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6978, 'Glasses Man Eldan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6979, 'Glasses Man Lamag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6980, 'Glasses Man Lopar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6981, 'Glasses Man Omat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6982, 'Glasses Man Omarl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6983, 'Glasses Man Rood'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6984, 'Golf Buddies Tara and Tina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6985, 'Golfer♂ Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6986, 'Golfer♂ Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6987, 'Golfer♀ Maile'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6988, 'Grand Duchess Diantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6989, 'Guitarist Clyde*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6990, 'Guitarist Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6991, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6992, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6993, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6994, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6995, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6996, 'Guitarist Kirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6997, 'Guitarist Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6998, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (6999, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7000, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7001, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7002, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7003, 'Guitarist Fabian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7004, 'Guitarist Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7005, 'Guitarist Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7006, 'Guitarist Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7007, 'Guitarist Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7008, 'Guitarist Fernando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7009, 'Guitarist Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7010, 'Guitarist Kirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7011, 'Guitarist Marcos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7012, 'Guitarist Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7013, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7014, 'Guitarist Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7015, 'Guitarist Lonnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7016, 'Guitarist Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7017, 'Guitarist Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7018, 'Guitarist Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7019, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7020, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7021, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7022, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7023, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7024, 'Guitarist Arturo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7025, 'Guitarist Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7026, 'Guitarist Lonnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7027, 'Guitarist Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7028, 'Guitarist Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7029, 'Guitarist Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7030, 'Guitarist Clyde*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7031, 'Guitarist Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7032, 'Guitarist Anna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7033, 'Guitarist Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7034, 'Guitarist Billy Jo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7035, 'Guitarist January*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7036, 'Guitarist Tina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7037, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7038, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7039, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7040, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7041, 'Guitarist Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7042, 'Guitarist Kirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7043, 'Guitarist Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7044, 'Guy Alten'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7045, 'Guy Gris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7046, 'Guy Harl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7047, 'Guy Keto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7048, 'Guy Lang'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7049, 'Guy Odon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7050, 'Guy Rone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7051, 'Guy Ardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7052, 'Guy Baben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7053, 'Guy Botken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7054, 'Guy Deats'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7055, 'Guy Foler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7056, 'Guy Ghols'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7057, 'Guy Klem'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7058, 'Guy Maton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7059, 'Guy Votil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7060, 'Guy Wiler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7061, 'Hardheaded Girl Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7062, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7063, 'Harlequin Charley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7064, 'Harlequin Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7065, 'Harlequin Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7066, 'Harlequin Kerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7067, 'Harlequin Louis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7068, 'Harlequin Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7069, 'Harlequin Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7070, 'Harlequin Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7071, 'Harlequin Anders'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7072, 'Harlequin Charley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7073, 'Harlequin Clarence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7074, 'Harlequin Gary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7075, 'Harlequin Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7076, 'Harlequin Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7077, 'Harlequin Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7078, 'Haunted Man Arkham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7079, 'Haunted Man Kadath'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7080, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7081, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7082, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7083, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7084, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7085, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7086, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7087, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7088, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7089, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7090, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7091, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7092, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7093, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7094, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7095, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7096, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7097, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7098, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7099, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7100, 'Hiker Bailey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7101, 'Hiker Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7102, 'Hiker Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7103, 'Hiker Erik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7104, 'Hiker Jim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7105, 'Hiker Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7106, 'Hiker Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7107, 'Hiker Michael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7108, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7109, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7110, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7111, 'Hiker Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7112, 'Hiker Russell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7113, 'Hiker Sidney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7114, 'Hiker Tim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7115, 'Hiker Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7116, 'Hiker Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7117, 'Hiker Brice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7118, 'Hiker Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7119, 'Hiker Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7120, 'Hiker Lenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7121, 'Hiker Lucas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7122, 'Hiker Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7123, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7124, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7125, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7126, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7127, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7128, 'Hiker Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7129, 'Hiker Brice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7130, 'Hiker Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7131, 'Hiker Devan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7132, 'Hiker Eli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7133, 'Hiker Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7134, 'Hiker Lenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7135, 'Hiker Lucas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7136, 'Hiker Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7137, 'Hiker Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7138, 'Hiker Sawyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7139, 'Hiker Sawyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7140, 'Hiker Sawyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7141, 'Hiker Sawyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7142, 'Hiker Sawyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7143, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7144, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7145, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7146, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7147, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7148, 'Hiker Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7149, 'Hiker Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7150, 'Hiker Brice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7151, 'Hiker Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7152, 'Hiker Daryl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7153, 'Hiker Dudley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7154, 'Hiker Earl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7155, 'Hiker Earl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7156, 'Hiker Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7157, 'Hiker Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7158, 'Hiker Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7159, 'Hiker Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7160, 'Hiker Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7161, 'Hiker Lenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7162, 'Hiker Lucas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7163, 'Hiker Marcos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7164, 'Hiker Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7165, 'Hiker Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7166, 'Hiker Nob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7167, 'Hiker Oliver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7168, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7169, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7170, 'Hiker Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7171, 'Hiker Alexander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7172, 'Hiker Damon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7173, 'Hiker Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7174, 'Hiker Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7175, 'Hiker Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7176, 'Hiker Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7177, 'Hiker Lorenzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7178, 'Hiker Louis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7179, 'Hiker Maurice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7180, 'Hiker Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7181, 'Hiker Reginald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7182, 'Hiker Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7183, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7184, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7185, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7186, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7187, 'Hiker Alexander'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7188, 'Hiker Damon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7189, 'Hiker Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7190, 'Hiker Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7191, 'Hiker Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7192, 'Hiker Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7193, 'Hiker Lorenzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7194, 'Hiker Louis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7195, 'Hiker Maurice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7196, 'Hiker Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7197, 'Hiker Reginald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7198, 'Hiker Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7199, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7200, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7201, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7202, 'Hiker Theodore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7203, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7204, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7205, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7206, 'Hiker Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7207, 'Hiker Bailey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7208, 'Hiker Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7209, 'Hiker Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7210, 'Hiker Clarke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7211, 'Hiker Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7212, 'Hiker Devin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7213, 'Hiker Dwight'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7214, 'Hiker Edwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7215, 'Hiker Eoin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7216, 'Hiker Erik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7217, 'Hiker Jim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7218, 'Hiker Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7219, 'Hiker Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7220, 'Hiker Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7221, 'Hiker Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7222, 'Hiker Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7223, 'Hiker Michael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7224, 'Hiker Noland*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7225, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7226, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7227, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7228, 'Hiker Parry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7229, 'Hiker Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7230, 'Hiker Russel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7231, 'Hiker Timothy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7232, 'Hiker Andy*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7233, 'Hiker Bret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7234, 'Hiker Clarke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7235, 'Hiker Darrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7236, 'Hiker Gene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7237, 'Hiker Hardy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7238, 'Hiker Hugh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7239, 'Hiker Jebediah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7240, 'Hiker Jeremiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7241, 'Hiker Kit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7242, 'Hiker Neil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7243, 'Hiker Russel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7244, 'Hiker Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7245, 'Hiker Andy*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7246, 'Hiker Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7247, 'Hiker Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7248, 'Hiker Hunter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7249, 'Hiker Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7250, 'Hiker Jebediah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7251, 'Hiker Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7252, 'Hiker Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7253, 'Hiker Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7254, 'Hiker Keith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7255, 'Hiker Manuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7256, 'Hiker Markus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7257, 'Hiker Otto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7258, 'Hiker Russel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7259, 'Hiker Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7260, 'Hiker Stephen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7261, 'Hiker Teppei'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7262, 'Hiker Tobias'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7263, 'Hiker Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7264, 'Hiker Zaiem'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7265, 'Hiker Aaron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7266, 'Hiker Alain'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7267, 'Hiker Bergin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7268, 'Hiker Bernard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7269, 'Hiker Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7270, 'Hiker Corwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7271, 'Hiker Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7272, 'Hiker Delmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7273, 'Hiker Dunstan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7274, 'Hiker Orestes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7275, 'Hiker Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7276, 'Hiker Brice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7277, 'Hiker Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7278, 'Hiker Davian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7279, 'Hiker Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7280, 'Hiker Lenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7281, 'Hiker Lucas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7282, 'Hiker Mike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7283, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7284, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7285, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7286, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7287, 'Hiker Trent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7288, 'Hiker Calhoun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7289, 'Hiker David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7290, 'Hiker Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7291, 'Hiker Zachary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7292, 'Hiker Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7293, 'Hiker Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7294, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7295, 'Hiker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7296, 'Hiker Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7297, 'Hiker Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7298, 'Hiker Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7299, 'Hiker Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7300, 'Hiking Club Member Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7301, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7302, 'Hiking Girl Annie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7303, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7304, 'Honeymooners Yuu & Ami'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7305, 'Honeymooners Noriko and Devin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7306, 'Hooligans Jim & Cas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7307, 'Hooligans Jim & Cas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7308, 'Hooligans Rob & SalB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7309, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7310, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7311, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7312, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7313, 'Hoopster John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7314, 'Hoopster John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7315, 'Hoopster Lamarcus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7316, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7317, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7318, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7319, 'Hoopster Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7320, 'Hoopster Derrick*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7321, 'Hoopster John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7322, 'Hoopster John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7323, 'Hoopster John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7324, 'Hoopster John'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7325, 'Hoopster Lamarcus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7326, 'Hoopster Lamarcus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7327, 'Hoopster Lamarcus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7328, 'Hoopster Lamarcus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7329, 'Hoopster Nicolas*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7330, 'Hunter♀ Aline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7331, 'Hunter♂ Argel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7332, 'Hunter♀ Athon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7333, 'Hunter♂ Dewig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7334, 'Hunter♂ Doken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7335, 'Hunter♂ Doken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7336, 'Hunter♂ Doken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7337, 'Hunter♂ Drovic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7338, 'Hunter♀ Frena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7339, 'Hunter♀ Frena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7340, 'Hunter♀ Frena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7341, 'Hunter♂ Geare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7342, 'Hunter♂ Geare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7343, 'Hunter♂ Grons'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7344, 'Hunter♂ Hoks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7345, 'Hunter♂ Korm'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7346, 'Hunter♀ Meli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7347, 'Hunter♀ Meli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7348, 'Hunter♀ Muna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7349, 'Hunter♀ Ophel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7350, 'Hunter♀ Telia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7351, 'Hunter♀ Toti'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7352, 'Hunter♀ Toti'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7353, 'Hunter♂ Tura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7354, 'Hunter♂ Tura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7355, 'Hunter♂ Valen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7356, 'Hunter♂ Valen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7357, 'Hunter♂ Weeg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7358, 'Hunter♀ Zada'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7359, 'Hunter♂ Zalo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7360, 'Hunter♂ Zalo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7361, 'Hunter♂ Zalo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7362, 'Hunter♀ Alene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7363, 'Hunter♂ Arek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7364, 'Hunter♂ Basor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7365, 'Hunter♀ Bigon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7366, 'Hunter♀ Bolza'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7367, 'Hunter♀ Cewan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7368, 'Hunter♂ Corvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7369, 'Hunter♂ Girod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7370, 'Hunter♂ Gohn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7371, 'Hunter♂ Golog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7372, 'Hunter♂ Hasmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7373, 'Hunter♂ Holso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7374, 'Hunter♂ Kolot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7375, 'Hunter♀ Ladin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7376, 'Hunter♀ Lisan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7377, 'Hunter♀ Milag'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7378, 'Hunter♂ Parel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7379, 'Hunter♀ Procio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7380, 'Hunter♀ Rina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7381, 'Hunter♀ Sason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7382, 'Hunter♂ Spez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7383, 'Hunter♀ Zelmo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7384, 'Hunter♂ Dargus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7385, 'Hunter♂ Goling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7386, 'Hunter♂ Greel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7387, 'Hunter♂ Gron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7388, 'Hunter♂ Haxer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7389, 'Hunter♂ Ibran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7390, 'Hunter♂ Jetsal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7391, 'Hunter♂ Lesk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7392, 'Hunter♂ Nostal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7393, 'Hunter♂ Raling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7394, 'Hunter♂ Raling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7395, 'Hunter♂ Raling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7396, 'Hunter♂ Tiruk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7397, 'Icy Guy Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7398, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7399, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7400, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7401, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7402, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7403, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7404, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7405, 'Idol Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7406, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7407, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7408, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7409, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7410, 'Infielder Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7411, 'Infielder Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7412, 'Infielder Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7413, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7414, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7415, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7416, 'Infielder Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7417, 'Infielder Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7418, 'Infielder Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7419, 'Infielder Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7420, 'Infielder Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7421, 'Infielder Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7422, 'Infielder Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7423, 'Infielder Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7424, 'Infielder Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7425, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7426, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7427, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7428, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7429, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7430, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7431, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7432, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7433, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7434, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7435, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7436, 'Interviewer Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7437, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7438, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7439, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7440, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7441, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7442, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7443, 'Interviewers Roxy & Oli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7444, 'Interviewers Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7445, 'Interviewers Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7446, 'Interviewers Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7447, 'Interviewers Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7448, 'Interviewers Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7449, 'Interviewers Gabby & Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7450, 'Janitor Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7451, 'Janitor Geoff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7452, 'Janitor Brady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7453, 'Janitor Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7454, 'Janitor Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7455, 'Janitor Orville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7456, 'Janitor Melvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7457, 'Janitor Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7458, 'Joe''s Groupie Kelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7459, 'Joe''s Groupie Kaitlyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7460, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7461, 'Jogger Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7462, 'Jogger Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7463, 'Jogger Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7464, 'Jogger Raul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7465, 'Jogger Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7466, 'Jogger Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7467, 'Jogger Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7468, 'Jogger Craig(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7469, 'Jogger Craig(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7470, 'Jogger Craig(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7471, 'Jogger Raul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7472, 'Jogger Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7473, 'Jogger Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7474, 'Jogger Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7475, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7476, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7477, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7478, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7479, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7480, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7481, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7482, 'Juggler Fritz*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7483, 'Juggler Horton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7484, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7485, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7486, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7487, 'Juggler Dalton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7488, 'Juggler Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7489, 'Juggler Gregory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7490, 'Juggler Jarrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7491, 'Juggler Kayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7492, 'Juggler Kirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7493, 'Juggler Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7494, 'Juggler Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7495, 'Juggler Nate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7496, 'Juggler Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7497, 'Juggler Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7498, 'Juggler Fritz*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7499, 'Juggler Horton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7500, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7501, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7502, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7503, 'Juggler Irwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7504, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7505, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7506, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7507, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7508, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7509, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7510, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7511, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7512, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7513, 'Juggler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7514, 'Juggler Ferris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7515, 'Junior Representative Ichi-Ichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7516, 'Karate Family Samuel and Guy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7517, 'Kindler Andy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7518, 'Kindler Axle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7519, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7520, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7521, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7522, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7523, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7524, 'Kindler Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7525, 'Kindler Axle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7526, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7527, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7528, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7529, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7530, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7531, 'Kindler Bryant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7532, 'Kindler Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7533, 'Kindler Dayton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7534, 'Kindler Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7535, 'Kindler Jace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7536, 'Kindler Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7537, 'Kindler Keegan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7538, 'Kindler Andy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7539, 'Kindler Axle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7540, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7541, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7542, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7543, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7544, 'Kindler Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7545, 'Kindler Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7546, 'Kruger Family Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7547, 'Kruger Family Lonnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7548, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7549, 'Lady Anette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7550, 'Lady Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7551, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7552, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7553, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7554, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7555, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7556, 'Lady Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7557, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7558, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7559, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7560, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7561, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7562, 'Lady Daphne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7563, 'Lady Naomi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7564, 'Lady Sarah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7565, 'Lady Charlotte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7566, 'Lady Gillian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7567, 'Lady Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7568, 'Lady Selphy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7569, 'Lady Kylie(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7570, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7571, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7572, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7573, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7574, 'Lady Celeste'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7575, 'Lady Kylie(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7576, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7577, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7578, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7579, 'Lady Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7580, 'Lady Colette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7581, 'Lady Elizandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7582, 'Lady Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7583, 'Lady Lynette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7584, 'Lady Magnolia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7585, 'Lady Sophie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7586, 'Lady Elizandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7587, 'Lady Elizandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7588, 'Lady Colette*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7589, 'Lady LinaW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7590, 'Lady Sophie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7591, 'Lady Anette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7592, 'Lady Brianna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7593, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7594, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7595, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7596, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7597, 'Lady Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7598, 'Lady Dulcie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7599, 'Lady Auro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7600, 'Lady Brin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7601, 'Lady Caril'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7602, 'Lady Eloos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7603, 'Lady Gwin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7604, 'Lady Illa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7605, 'Lady Kowly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7606, 'Lady Rima'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7607, 'Lady Ristin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7608, 'Lady Vesey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7609, 'Lady Brena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7610, 'Lady Deasy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7611, 'Lady Denslon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7612, 'Lady Kylet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7613, 'Lady Nemi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7614, 'Lady Rene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7615, 'Lady Sanol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7616, 'Lady Stouner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7617, 'Lady Sturk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7618, 'Lady Talmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7619, 'Lady Zolla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7620, 'Lady in Suit Fial'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7621, 'Lady in Suit Malla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7622, 'Lady in Suit Reme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7623, 'Lady in Suit Sowa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7624, 'Lady in Suit Amell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7625, 'Lady in Suit Grat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7626, 'Lady in Suit Isette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7627, 'Lady in Suit Jodin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7628, 'Lady in Suit Oatley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7629, 'Lady in Suit Secort'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7630, 'LassY'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7631, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7632, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7633, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7634, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7635, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7636, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7637, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7638, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7639, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7640, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7641, 'LassRB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7642, 'LassY'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7643, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7644, 'LassRB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7645, 'LassY'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7646, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7647, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7648, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7649, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7650, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7651, 'Lass Alice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7652, 'Lass Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7653, 'Lass Carrie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7654, 'Lass Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7655, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7656, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7657, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7658, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7659, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7660, 'Lass Ellen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7661, 'Lass Krise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7662, 'Lass Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7663, 'Lass Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7664, 'Lass Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7665, 'Lass Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7666, 'Lass Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7667, 'Lass Crissy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7668, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7669, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7670, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7671, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7672, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7673, 'Lass Janice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7674, 'Lass Robin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7675, 'Lass Sally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7676, 'Lass Tiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7677, 'Lass Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7678, 'Lass Crissy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7679, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7680, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7681, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7682, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7683, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7684, 'Lass Janice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7685, 'Lass Robin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7686, 'Lass Sally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7687, 'Lass Tiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7688, 'Lass Ali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7689, 'Lass Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7690, 'Lass Ann'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7691, 'Lass Crissy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7692, 'Lass Dalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7693, 'Lass Dawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7694, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7695, 'Lass Iris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7696, 'Lass Janice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7697, 'Lass Janice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7698, 'Lass Janice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7699, 'Lass Joana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7700, 'Lass Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7701, 'Lass Kay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7702, 'Lass Lisa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7703, 'Lass Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7704, 'Lass Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7705, 'Lass Megan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7706, 'Lass Mikaela'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7707, 'Lass Miriam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7708, 'Lass Paige'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7709, 'Lass Reli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7710, 'Lass Reli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7711, 'Lass Reli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7712, 'Lass Robin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7713, 'Lass Sally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7714, 'Lass Blythe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7715, 'Lass Briana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7716, 'Lass Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7717, 'Lass Cassidy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7718, 'Lass Kaitlin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7719, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7720, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7721, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7722, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7723, 'Lass Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7724, 'Lass Natalie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7725, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7726, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7727, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7728, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7729, 'Lass Sarah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7730, 'Lass Blythe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7731, 'Lass Briana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7732, 'Lass Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7733, 'Lass Cassidy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7734, 'Lass Kaitlin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7735, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7736, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7737, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7738, 'Lass Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7739, 'Lass Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7740, 'Lass Natalie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7741, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7742, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7743, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7744, 'Lass Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7745, 'Lass Sarah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7746, 'Lass Alice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7747, 'Lass Carrie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7748, 'Lass Cathy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7749, 'Lass Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7750, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7751, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7752, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7753, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7754, 'Lass Ellen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7755, 'Lass Krise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7756, 'Lass Krise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7757, 'Lass Krise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7758, 'Lass Krise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7759, 'Lass Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7760, 'Lass Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7761, 'Lass Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7762, 'Lass Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7763, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7764, 'Lass DyeB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7765, 'Lass DyeW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7766, 'Lass Eri'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7767, 'Lass Eva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7768, 'Lass Fey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7769, 'Lass Kara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7770, 'Lass Lurleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7771, 'Lass Maki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7772, 'Lass Mali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7773, 'Lass Maya*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7774, 'Lass MikiB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7775, 'Lass Sibyl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7776, 'Lass Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7777, 'Lass Daya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7778, 'Lass Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7779, 'Lass Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7780, 'Lass Flo*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7781, 'Lass Helia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7782, 'Lass Henrietta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7783, 'Lass Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7784, 'Lass Lurleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7785, 'Lass Mai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7786, 'Lass Mali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7787, 'Lass Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7788, 'Lass Persephone*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7789, 'Lass Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7790, 'Lass Serena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7791, 'Lass Anna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7792, 'Lass Charlotte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7793, 'Lass Elin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7794, 'Lass Elsa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7795, 'Lass Lise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7796, 'Lass Sara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7797, 'Lass Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7798, 'Lass Crissy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7799, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7800, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7801, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7802, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7803, 'Lass Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7804, 'Lass Janice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7805, 'Lass Robin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7806, 'Lass Sally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7807, 'Lass Suzette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7808, 'Lass Tiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7809, 'Lass Audrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7810, 'Lass Emmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7811, 'Lass Isabella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7812, 'Lass Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7813, 'Lass Rika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7814, 'Lass Rylee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7815, 'Lass Salla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7816, 'Lass Salla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7817, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7818, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7819, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7820, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7821, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7822, 'Lass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7823, 'Lass Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7824, 'Lass Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7825, 'Lass Nancy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7826, 'Lass Tammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7827, 'Lass Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7828, 'Lass Terry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7829, 'Leader-in-Training♂ Marcel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7830, 'Leader-in-Training♀ Desiree'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7831, 'Leader-in-Training♂ Patrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7832, 'Leader-in-Training♀ Dominique'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7833, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7834, 'Linebacker Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7835, 'Linebacker Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7836, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7837, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7838, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7839, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7840, 'Linebacker Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7841, 'Linebacker Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7842, 'Linebacker Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7843, 'Linebacker Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7844, 'Linebacker Bob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7845, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7846, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7847, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7848, 'Linebacker Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7849, 'Linebacker Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7850, 'Linebacker Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7851, 'Linebacker Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7852, 'Linebacker Jonah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7853, 'Lone Wolf Graham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7854, 'Lone Wolf Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7855, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7856, 'Lumiose Gang Member♀ Eris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7857, 'Lumiose Gang Member♀ Eris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7858, 'Lumiose Gang Member♂ Nix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7859, 'Lumiose Gang Member♂ Nix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7860, 'Lumiose Gang Member♀ Sedna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7861, 'Lumiose Gang Member♀ Sedna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7862, 'Socialite Rebecca(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7863, 'Socialite Reina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7864, 'Socialite Reina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7865, 'Socialite Reina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7866, 'Socialite Rebecca(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7867, 'Socialite Reina(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7868, 'Socialite Reina(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7869, 'Socialite Reina(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7870, 'Socialite Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7871, 'Socialite Emilia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7872, 'Socialite GraceB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7873, 'Socialite Marian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7874, 'Socialite Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7875, 'Socialite Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7876, 'Socialite Emilia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7877, 'Socialite Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7878, 'Socialite Marian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7879, 'Madame Elizabeth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7880, 'Madame Kathleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7881, 'Madame Kathleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7882, 'Madame Sayuri'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7883, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7884, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7885, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7886, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7887, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7888, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7889, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7890, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7891, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7892, 'Magma Admin Tabitha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7893, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7894, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7895, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7896, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7897, 'Magma Admin Courtney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7898, 'Maid Belinda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7899, 'Maid Sophie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7900, 'Maid Emily'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7901, 'Maid Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7902, 'Maid Clare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7903, 'Maid Alica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7904, 'Maid Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7905, 'Maid Alica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7906, 'Maid Tammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7907, 'Maid Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7908, 'Maid Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7909, 'Marchioness Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7910, 'Marchioness Amandine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7911, 'Marchioness Amelie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7912, 'Marchioness Fiona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7913, 'Marchioness Keira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7914, 'Marchioness Korrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7915, 'Marchioness Korrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7916, 'Marchioness Meriel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7917, 'Marchioness Olympia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7918, 'Marchioness Olympia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7919, 'Marchioness Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7920, 'Marchioness Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7921, 'Marchioness Viola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7922, 'Marchioness Viola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7923, 'Marchioness Yolande'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7924, 'Marquis Arran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7925, 'Marquis Caen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7926, 'Marquis Clemont'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7927, 'Marquis Clemont'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7928, 'Marquis Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7929, 'Marquis Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7930, 'Marquis Grisognono'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7931, 'Marquis Ramos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7932, 'Marquis Ramos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7933, 'Marquis Wulfric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7934, 'Marquis Wulfric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7935, 'Master Class Chance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7936, 'Master Class Cortney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7937, 'Master Class Erica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7938, 'Master Class Eva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7939, 'Master Class Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7940, 'Master Class Jaden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7941, 'Master Class Kaden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7942, 'Master Class Kerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7943, 'Master Class Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7944, 'Master Class Lincoln'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7945, 'Master Class Lyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7946, 'Master Class Miriam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7947, 'Master Class Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7948, 'Master Class Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7949, 'Master Class Tate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7950, 'Master Class Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7951, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7952, 'Master Representative Fūryū'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7953, 'Fun Old Lady Allaw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7954, 'Fun Old Lady Anges'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7955, 'Fun Old Lady Desla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7956, 'Fun Old Lady Gelvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7957, 'Fun Old Lady Lonno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7958, 'Fun Old Lady Naldo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7959, 'Fun Old Lady Oris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7960, 'Fun Old Lady Panne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7961, 'Fun Old Lady Ropel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7962, 'Fun Old Lady Desor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7963, 'Fun Old Lady Eskola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7964, 'Fun Old Lady Flegal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7965, 'Fun Old Lady Gohon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7966, 'Fun Old Lady Grenay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7967, 'Fun Old Lady Gularte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7968, 'Fun Old Lady Karden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7969, 'Fun Old Lady Ludum'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7970, 'Fun Old Lady Myog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7971, 'Fun Old Lady Otsbo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7972, 'Fun Old Lady Perstin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7973, 'Matron Agris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7974, 'Matron Belish'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7975, 'Matron Belish'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7976, 'Matron Belish'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7977, 'Matron Crex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7978, 'Matron Ezella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7979, 'Matron Kalus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7980, 'Matron Ladi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7981, 'Matron Naono'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7982, 'Matron Petil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7983, 'Matron Relza'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7984, 'Matron Sophee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7985, 'Matron Tulon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7986, 'Mature Couple Carissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7987, 'Mature Couple Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7988, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7989, 'Medium Doris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7990, 'Medium Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7991, 'Medium Martha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7992, 'Medium Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7993, 'Medium Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7994, 'Medium Edith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7995, 'Medium Georgina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7996, 'Medium Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7997, 'Medium Martha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7998, 'Medium Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (7999, 'Medium Holly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8000, 'Medium Holly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8001, 'Miror B.Peon Ferma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8002, 'Miror B.Peon Ferma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8003, 'Miror B.Peon Ferma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8004, 'Miror B.Peon Folly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8005, 'Miror B.Peon Folly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8006, 'Miror B.Peon Reath'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8007, 'Miror B.Peon Reath'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8008, 'Miror B.Peon Reath'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8009, 'Miror B.Peon Trudly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8010, 'Miror B.Peon Trudly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8011, 'Miror B.Peon Trudly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8012, 'Movie Star ♂ Brycen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8013, 'Movie Star ♂ Brycen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8014, 'Movie Star ♂ Brycen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8015, 'Movie Star ♂ Brycen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8016, 'Movie Star ♂ Brycen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8017, 'Movie Star ♂ Brycen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8018, 'Movie Star ♀ Sabrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8019, 'Movie Star ♀ Sabrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8020, 'Mt.BtlMaster Somek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8021, 'Mt.BtlMaster Infin(Single Battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8022, 'Mt.BtlMaster Inity(Double Battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8023, 'Mt BtlMaster Battlus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8024, 'Muddy Boy Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8025, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8026, 'Musician Boris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8027, 'Musician Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8028, 'Musician Boris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8029, 'Musician Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8030, 'Mysterious Sisters Achlys & Eos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8031, 'Mysterious Sisters Rune & Rime'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8032, 'Mysterious Sisters Elle & Aya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8033, 'Mysterious Sisters Scall & Ion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8034, 'Mysterious Sisters Scall & Ion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8035, 'Mysterious Sisters Scall & Ion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8036, 'Mysterious Sisters Scall & Ion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8037, 'Mysticalman Eusine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8038, 'Mystery Man Eusine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8039, 'Mystery Man River'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8040, 'Mystery Man River'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8041, 'Mystery Man Ardos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8042, 'Myth Trainer Eagun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8043, 'Myth Trainer Infin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8044, 'Myth Trainer Inity'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8045, 'Myth Trainer Eagun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8046, 'Myth Trainer Eagun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8047, 'Navigator Abson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8048, 'Navigator Berk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8049, 'Navigator Bestol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8050, 'Navigator Carlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8051, 'Navigator Folop'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8052, 'Navigator Gostin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8053, 'Navigator Kerdin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8054, 'Navigator Lestor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8055, 'Navigator Robell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8056, 'New Actress Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8057, 'New Actress Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8058, 'Newscaster Riesko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8059, 'Newscaster Sclim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8060, 'Newscaster Arule'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8061, 'Newscaster Edin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8062, 'Newscaster Idlon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8063, 'Newscaster Madsin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8064, 'Newscaster Ohlid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8065, 'Newscaster Sivil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8066, 'Ninja Boy Hideo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8067, 'Ninja Boy Keigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8068, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8069, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8070, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8071, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8072, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8073, 'Ninja Boy Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8074, 'Ninja Boy Takashi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8075, 'Ninja Boy Tsunao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8076, 'Ninja Boy Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8077, 'Ninja Boy Hideo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8078, 'Ninja Boy Jaiden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8079, 'Ninja Boy Jonas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8080, 'Ninja Boy Keigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8081, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8082, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8083, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8084, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8085, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8086, 'Ninja Boy Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8087, 'Ninja Boy Riley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8088, 'Ninja Boy Takashi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8089, 'Ninja Boy Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8090, 'Ninja Boy Antonio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8091, 'Ninja Boy Brennan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8092, 'Ninja Boy Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8093, 'Ninja Boy Davido'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8094, 'Ninja Boy Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8095, 'Ninja Boy Fabian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8096, 'Ninja Boy Joel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8097, 'Ninja Boy Nathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8098, 'Ninja Boy Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8099, 'Ninja Boy Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8100, 'Ninja Boy Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8101, 'Ninja Boy Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8102, 'Ninja Boy Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8103, 'Ninja Boy Brennan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8104, 'Ninja Boy Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8105, 'Ninja Boy Davido'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8106, 'Ninja Boy Ethan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8107, 'Ninja Boy Fabian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8108, 'Ninja Boy Joel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8109, 'Ninja Boy Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8110, 'Ninja Boy Nathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8111, 'Ninja Boy Nick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8112, 'Ninja Boy Zach(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8113, 'Ninja Boy Zach(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8114, 'Ninja Boy Zach(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8115, 'Ninja Boy Zach(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8116, 'Ninja Boy Hideo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8117, 'Ninja Boy Hiromichi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8118, 'Ninja Boy Keigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8119, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8120, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8121, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8122, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8123, 'Ninja Boy Lao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8124, 'Ninja Boy Lung'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8125, 'Ninja Boy Shoji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8126, 'Ninja Boy Takashi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8127, 'Ninja Boy Tsunao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8128, 'Ninja Boy Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8129, 'Nurse Kirsten'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8130, 'Nurse Sachiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8131, 'Nurse Shery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8132, 'Nurse Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8133, 'Nurse Dixie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8134, 'Nurse Kirsten'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8135, 'Nurse Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8136, 'Nursery Aide Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8137, 'Nursery Aide BrianaW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8138, 'Nursery Aide Leah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8139, 'Nursery Aide MihoB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8140, 'Nursery Aide Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8141, 'Nursery Aide Ethel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8142, 'Nursery Aide Hollie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8143, 'Nursery Aide Ilse'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8144, 'Nursery Aide June*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8145, 'Nursery Aide Kimya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8146, 'Nursery Aide Leah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8147, 'Nursery Aide Rosalyn(Tag battle w/ Preschooler Ike)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8148, 'Clerk ♀ Alberta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8149, 'Clerk ♂ Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8150, 'Clerk ♂ Clemens'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8151, 'Clerk ♂ Doug'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8152, 'Clerk ♂ Fredric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8153, 'Clerk ♀ Ingrid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8154, 'Clerk ♂ Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8155, 'Clerk ♂ Isaac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8156, 'Clerk ♀ Katie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8157, 'Clerk ♂ Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8158, 'Clerk ♀ Piper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8159, 'Clerk ♀ Trisha*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8160, 'Clerk ♂ Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8161, 'Clerk ♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8162, 'Clerk ♀ Wren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8163, 'Clerk ♂ Augustin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8164, 'Clerk ♀ Britney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8165, 'Clerk ♂ Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8166, 'Clerk ♂ Chaz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8167, 'Clerk ♂ Clemens'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8168, 'Clerk ♂ Fredric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8169, 'Clerk ♂ Gilligan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8170, 'Clerk ♀ Lana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8171, 'Clerk ♂ Nelson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8172, 'Clerk ♀ Trisha*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8173, 'Clerk ♂ Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8174, 'Clerk ♀ Wren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8175, 'Office Worker♂ Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8176, 'Office Worker♂ Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8177, 'Office Worker♂ Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8178, 'Office Worker♀ Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8179, 'Office Worker♀ Kristen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8180, 'Office Worker♀ Kristen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8181, 'Office Worker♀ Michelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8182, 'Office Worker♂ Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8183, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8184, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8185, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8186, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8187, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8188, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8189, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8190, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8191, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8192, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8193, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8194, 'Old Couple John & Jay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8195, 'Ordinary Guy Alec'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8196, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8197, 'Owner Christophe*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8198, 'Owner Christophe*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8199, 'Owner Kazu*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8200, 'Owner Toro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8201, 'Owner Yannick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8202, 'Painter Celina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8203, 'Painter Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8204, 'Painter Edna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8205, 'Painter Rayna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8206, 'Painter Rayna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8207, 'Parasol Lady Angelica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8208, 'Parasol Lady Clarissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8209, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8210, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8211, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8212, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8213, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8214, 'Parasol Lady Angelica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8215, 'Parasol Lady Clarissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8216, 'Parasol Lady Kayley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8217, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8218, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8219, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8220, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8221, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8222, 'Parasol Lady Rachel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8223, 'Parasol Lady Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8224, 'Parasol Lady Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8225, 'Parasol Lady Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8226, 'Parasol Lady Alexa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8227, 'Parasol Lady Sabrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8228, 'Parasol Lady Alexa(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8229, 'Parasol Lady Alexa(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8230, 'Parasol Lady Alexa(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8231, 'Parasol Lady Alexa(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8232, 'Parasol Lady Sabrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8233, 'Parasol Lady April'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8234, 'Parasol Lady Gwyneth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8235, 'Parasol Lady Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8236, 'Parasol Lady Lumi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8237, 'Parasol Lady Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8238, 'Parasol Lady Melita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8239, 'Parasol Lady Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8240, 'Parasol Lady Tihana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8241, 'Parasol Lady Ingrid*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8242, 'Parasol Lady Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8243, 'Parasol Lady Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8244, 'Parasol Lady Tihana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8245, 'Parasol Lady Tyra*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8246, 'Parasol Lady Angelica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8247, 'Parasol Lady Clarissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8248, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8249, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8250, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8251, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8252, 'Parasol Lady Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8253, 'Passionate Rider Zackary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8254, 'Passionate Rider Ruben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8255, 'Passionate Rider Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8256, 'Passionate Rider Norman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8257, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8258, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8259, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8260, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8261, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8262, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8263, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8264, 'Gamer Darian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8265, 'Gamer Darian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8266, 'Gamer Dirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8267, 'Gamer Hugo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8268, 'Gamer Jasper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8269, 'Gamer Rich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8270, 'Gamer Rich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8271, 'Gamer Stan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8272, 'PI Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8273, 'PI Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8274, 'PI Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8275, 'PI Kendrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8276, 'PI Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8277, 'PI Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8278, 'PI Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8279, 'PI Kendrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8280, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8281, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8282, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8283, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8284, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8285, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8286, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8287, 'Gambler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8288, 'Picnic Girl Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8289, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8290, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8291, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8292, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8293, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8294, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8295, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8296, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8297, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8298, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8299, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8300, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8301, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8302, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8303, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8304, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8305, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8306, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8307, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8308, 'Jr. Trainer♀(Giselle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8309, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8310, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8311, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8312, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8313, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8314, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8315, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8316, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8317, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8318, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8319, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8320, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8321, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8322, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8323, 'Jr. Trainer♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8324, 'Picnicker Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8325, 'Picnicker Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8326, 'Picnicker Debra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8327, 'Picnicker Edna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8328, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8329, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8330, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8331, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8332, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8333, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8334, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8335, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8336, 'Picnicker Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8337, 'Picnicker Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8338, 'Picnicker Kim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8339, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8340, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8341, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8342, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8343, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8344, 'Picnicker Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8345, 'Picnicker Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8346, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8347, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8348, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8349, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8350, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8351, 'Picnicker Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8352, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8353, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8354, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8355, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8356, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8357, 'Picnicker Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8358, 'Picnicker Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8359, 'Picnicker Kylee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8360, 'Picnicker Martha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8361, 'Picnicker Nancy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8362, 'Picnicker Angelina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8363, 'Picnicker Ashley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8364, 'Picnicker Autumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8365, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8366, 'Picnicker Bianca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8367, 'Picnicker Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8368, 'Picnicker Celia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8369, 'Picnicker Charlotte'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8370, 'Picnicker Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8371, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8372, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8373, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8374, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8375, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8376, 'Picnicker Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8377, 'Picnicker Martha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8378, 'Picnicker Nancy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8379, 'Picnicker Sophie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8380, 'Picnicker Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8381, 'Picnicker Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8382, 'Picnicker Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8383, 'Picnicker Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8384, 'Picnicker Alma'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8385, 'Picnicker Ariana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8386, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8387, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8388, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8389, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8390, 'Picnicker Caitlin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8391, 'Picnicker Camryn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8392, 'Picnicker Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8393, 'Picnicker Celia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8394, 'Picnicker Claire'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8395, 'Picnicker Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8396, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8397, 'Picnicker Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8398, 'Picnicker Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8399, 'Picnicker Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8400, 'Picnicker Isabelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8401, 'Picnicker Isabelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8402, 'Picnicker Isabelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8403, 'Picnicker Isabelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8404, 'Picnicker Kelsey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8405, 'Picnicker Kelsey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8406, 'Picnicker Kelsey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8407, 'Picnicker Kelsey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8408, 'Picnicker Kindra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8409, 'Picnicker Leah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8410, 'Picnicker Marcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8411, 'Picnicker Martha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8412, 'Picnicker Missy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8413, 'Picnicker Missy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8414, 'Picnicker Missy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8415, 'Picnicker Nancy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8416, 'Picnicker Sofia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8417, 'Picnicker Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8418, 'Picnicker Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8419, 'Picnicker Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8420, 'Picnicker Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8421, 'Picnicker Tina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8422, 'Picnicker Valerie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8423, 'Picnicker Yazmin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8424, 'Picnicker Ana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8425, 'Picnicker Cheyenne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8426, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8427, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8428, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8429, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8430, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8431, 'Picnicker Lauren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8432, 'Picnicker Siena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8433, 'Picnicker Summer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8434, 'Picnicker Tori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8435, 'Picnicker Ana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8436, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8437, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8438, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8439, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8440, 'Picnicker Karina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8441, 'Picnicker Lauren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8442, 'Picnicker Siena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8443, 'Picnicker Summer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8444, 'Picnicker Tori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8445, 'Picnicker Adrian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8446, 'Picnicker Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8447, 'Picnicker Cheyenne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8448, 'Picnicker Cindy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8449, 'Picnicker Debra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8450, 'Picnicker Edna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8451, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8452, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8453, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8454, 'Picnicker Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8455, 'Picnicker Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8456, 'Picnicker Hope'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8457, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8458, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8459, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8460, 'Picnicker Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8461, 'Picnicker Ginger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8462, 'Picnicker Kim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8463, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8464, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8465, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8466, 'Picnicker Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8467, 'Picnicker Piper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8468, 'Picnicker Selina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8469, 'Picnicker Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8470, 'Picnicker Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8471, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8472, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8473, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8474, 'Picnicker Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8475, 'Picnicker Becky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8476, 'Picnicker Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8477, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8478, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8479, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8480, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8481, 'Picnicker Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8482, 'Picnicker Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8483, 'Picnicker Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8484, 'Picnicker Kylee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8485, 'Picnicker Martha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8486, 'Jr.♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8487, 'Jr.♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8488, 'Jr.♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8489, 'Jr.♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8490, 'Picnicker Cyndy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8491, 'Picnicker Stacy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8492, 'Picnicker Stacy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8493, 'Pikachu Fan Damon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8494, 'Pikachu Fan Tasha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8495, 'Pikachu Fan Stewart'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8496, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8497, 'Pilot Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8498, 'Pilot Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8499, 'Pilot Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8500, 'Pilot Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8501, 'Pilot Elron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8502, 'Pilot Ewing'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8503, 'Pilot Flynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8504, 'Pilot Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8505, 'Pilot Winslow'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8506, 'Poison Tongue Boy Curtis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8507, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8508, 'Pokéfan♂ AlexJP, KO'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8509, 'Pokéfan♂ AlexWestern'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8510, 'Pokéfan♂ AllanC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8511, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8512, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8513, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8514, 'Pokéfan♂ Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8515, 'Pokéfan♂ Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8516, 'Pokéfan♂ Colin(On first trip)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8517, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8518, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8519, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8520, 'Pokéfan♀ Georgia(Vermilion to Olivine)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8521, 'Pokéfan♀ JaimeC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8522, 'Pokéfan♂ Jeremy(Vermilion to Olivine)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8523, 'Pokéfan♂ Joshua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8524, 'Pokéfan♂ RexC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8525, 'Pokéfan♂ Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8526, 'Pokéfan♀ Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8527, 'Pokéfan♂ Trevor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8528, 'Pokéfan♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8529, 'Pokéfan♂ Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8530, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8531, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8532, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8533, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8534, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8535, 'Pokéfan♀ Marissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8536, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8537, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8538, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8539, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8540, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8541, 'Pokéfan♀ Vanessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8542, 'Pokéfan♀ Annika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8543, 'Pokéfan♀ Bethany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8544, 'Pokéfan♂ Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8545, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8546, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8547, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8548, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8549, 'Pokéfan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8550, 'Pokéfan♂ Kaleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8551, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8552, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8553, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8554, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8555, 'Pokéfan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8556, 'Pokéfan♀ Vanessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8557, 'Pokéfan♂ Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8558, 'Pokéfan♀ Meredith(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8559, 'Pokéfan♀ Rebekah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8560, 'Pokéfan♂ Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8561, 'Pokéfan♀ Meredith(Multi Battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8562, 'Pokéfan♀ Rebekah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8563, 'Pokéfan♂ Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8564, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8565, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8566, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8567, 'Pokéfan♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8568, 'Pokéfan♂ Boone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8569, 'Pokéfan♂ Brandon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8570, 'Pokéfan♂ Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8571, 'Pokéfan♂ Colin(On first trip)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8572, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8573, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8574, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8575, 'Pokéfan♂ Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8576, 'Pokéfan♀ Eleanor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8577, 'Pokéfan♀ Georgia(Vermilion to Olivine)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8578, 'Pokéfan♂ Jeremy(Vermilion to Olivine)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8579, 'Pokéfan♂ Joshua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8580, 'Pokéfan♂ Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8581, 'Pokéfan♀ Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8582, 'Pokéfan♂ Trevor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8583, 'Pokéfan♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8584, 'Pokéfan♂ Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8585, 'Pokéfan♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8586, 'Pokéfan♂ Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8587, 'Pokéfan♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8588, 'Pokéfan♂ Jude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8589, 'Pokéfan♂ Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8590, 'Pokéfan♀ Darcy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8591, 'Pokéfan♂ Elliot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8592, 'Pokéfan♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8593, 'Pokéfan♂ Jude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8594, 'Pokéfan♀ Lydia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8595, 'Pokéfan♂ NorbertW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8596, 'Pokéfan♀ SachikoW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8597, 'Poké Fan♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8598, 'Poké Fan♀ Agnes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8599, 'Poké Fan♂ Corey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8600, 'Poké Fan♂ Gabe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8601, 'Poké Fan♀ Lydie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8602, 'Poké Fan♀ Roisin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8603, 'Poké Fan♀ Tara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8604, 'Poké Fan♂ Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8605, 'Poké Fan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8606, 'Poké Fan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8607, 'Poké Fan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8608, 'Poké Fan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8609, 'Poké Fan♀ Isabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8610, 'Poké Fan♀ Marissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8611, 'Poké Fan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8612, 'Poké Fan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8613, 'Poké Fan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8614, 'Poké Fan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8615, 'Poké Fan♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8616, 'Poké Fan♀ Vanessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8617, 'Pokéfan♂ Baxter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8618, 'Pokéfan♂ Baxter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8619, 'Pokéfan♂ Baxter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8620, 'Pokéfan♂ Baxter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8621, 'Pokéfan♀ Carmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8622, 'Pokéfan♀ Carmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8623, 'Pokéfan♀ Carmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8624, 'Pokéfan♀ Carmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8625, 'Pokéfan♀ Janet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8626, 'Pokéfan♀ Janet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8627, 'Pokéfan♂ Rex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8628, 'Pokéfan♂ Rex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8629, 'Poké Fan Family Jan & Erin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8630, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8631, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8632, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8633, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8634, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8635, 'Poké Kid Janet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8636, 'Poké Kid Meghan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8637, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8638, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8639, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8640, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8641, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8642, 'Poké Kid Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8643, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8644, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8645, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8646, 'Poké Kid Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8647, 'Poké Kid Janet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8648, 'Poké Kid Meghan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8649, 'PokéManiac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8650, 'PokéManiac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8651, 'PokéManiac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8652, 'PokéManiac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8653, 'PokéManiac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8654, 'PokéManiac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8655, 'PokéManiac Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8656, 'PokéManiac Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8657, 'PokéManiac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8658, 'PokéManiac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8659, 'PokéManiac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8660, 'PokéManiac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8661, 'PokéManiac Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8662, 'PokéManiac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8663, 'PokéManiac Isaac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8664, 'PokéManiac Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8665, 'PokéManiac Miller'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8666, 'PokéManiac Ron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8667, 'PokéManiac Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8668, 'PokéManiac Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8669, 'PokéManiac Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8670, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8671, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8672, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8673, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8674, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8675, 'PokéManiac Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8676, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8677, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8678, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8679, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8680, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8681, 'PokéManiac Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8682, 'PokéManiac Ashton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8683, 'PokéManiac Cooper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8684, 'PokéManiac Dawson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8685, 'PokéManiac Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8686, 'PokéManiac Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8687, 'PokéManiac Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8688, 'PokéManiac Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8689, 'PokéManiac Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8690, 'PokéManiac Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8691, 'PokéManiac Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8692, 'PokéManiac Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8693, 'PokéManiac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8694, 'PokéManiac Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8695, 'Poké Maniac Andrew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8696, 'Poké Maniac Beckett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8697, 'Poké Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8698, 'Poké Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8699, 'Poké Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8700, 'Poké Maniac Brent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8701, 'Poké Maniac Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8702, 'Poké Maniac Donald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8703, 'Poké Maniac Harrison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8704, 'Poké Maniac Issac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8705, 'Poké Maniac Larry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8706, 'Poké Maniac Ron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8707, 'Poké Maniac Shane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8708, 'Poké Maniac Zach'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8709, 'Poké Maniac Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8710, 'Poké Maniac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8711, 'Poké Maniac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8712, 'Poké Maniac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8713, 'Poké Maniac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8714, 'Poké Maniac Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8715, 'Pkmniac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8716, 'Pkmniac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8717, 'PokéManiac Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8718, 'PokéManiac Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8719, 'PokéManiac Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8720, 'PokéManiac Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8721, 'PokéManiac Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8722, 'Pokémon Ranger♂ Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8723, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8724, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8725, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8726, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8727, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8728, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8729, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8730, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8731, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8732, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8733, 'Pokémon Ranger♀ Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8734, 'Pokémon Ranger♂ Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8735, 'Pokémon Ranger♀ Sophia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8736, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8737, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8738, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8739, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8740, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8741, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8742, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8743, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8744, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8745, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8746, 'Pokémon Ranger♀ Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8747, 'Pokémon Ranger♂ Lorenzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8748, 'Pokémon Ranger♂ Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8749, 'Pokémon Ranger♀ Sophia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8750, 'Pokémon Ranger♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8751, 'Pokémon Ranger♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8752, 'Pokémon Ranger♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8753, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8754, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8755, 'Pokémon Ranger♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8756, 'Pokémon Ranger♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8757, 'Pokémon Ranger♂ Logan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8758, 'Pokémon Ranger♀ Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8759, 'Pokémon Ranger♀ Madeline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8760, 'Pokémon Ranger♂ Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8761, 'Pokémon Ranger♂ Nicolas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8762, 'Pokémon Ranger♂ Trenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8763, 'Pokémon Ranger♂ Trenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8764, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8765, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8766, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8767, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8768, 'Pokémon Ranger♀ Ashlee(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8769, 'Pokémon Ranger♀ Ashlee(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8770, 'Pokémon Ranger♂ Deshawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8771, 'Pokémon Ranger♂ Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8772, 'Pokémon Ranger♀ Felicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8773, 'Pokémon Ranger♂ Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8774, 'Pokémon Ranger♀ Krista'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8775, 'Pokémon Ranger♂ Kyler(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8776, 'Pokémon Ranger♂ Kyler(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8777, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8778, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8779, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8780, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8781, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8782, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8783, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8784, 'Pokémon Ranger♀ Allison(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8785, 'Pokémon Ranger♀ Ashlee(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8786, 'Pokémon Ranger♀ Ashlee(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8787, 'Pokémon Ranger♂ Deshawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8788, 'Pokémon Ranger♂ Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8789, 'Pokémon Ranger♀ Felicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8790, 'Pokémon Ranger♂ Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8791, 'Pokémon Ranger♀ Krista'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8792, 'Pokémon Ranger♂ Kyler(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8793, 'Pokémon Ranger♂ Kyler(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8794, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8795, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8796, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8797, 'Pokémon Ranger♂ Taylor(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8798, 'Pokémon Ranger♂ Alain'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8799, 'Pokémon Ranger♀ Annie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8800, 'Pokémon Ranger♀ Audra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8801, 'Pokémon Ranger♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8802, 'Pokémon Ranger♂ Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8803, 'Pokémon Ranger♀ Chloris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8804, 'Pokémon Ranger♂ Crofton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8805, 'Pokémon Ranger♀ ElizaB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8806, 'Pokémon Ranger♂ Forrest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8807, 'Pokémon Ranger♂ Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8808, 'Pokémon Ranger♀ Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8809, 'Pokémon Ranger♀ Irene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8810, 'Pokémon Ranger♂ Jaden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8811, 'Pokémon Ranger♂ Keith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8812, 'Pokémon Ranger♂ Lewis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8813, 'Pokémon Ranger♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8814, 'Pokémon Ranger♂ Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8815, 'Pokémon Ranger♀ Mylene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8816, 'Pokémon Ranger♂ Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8817, 'Pokémon Ranger♂ RalphB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8818, 'Pokémon Ranger♂ Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8819, 'Pokémon Ranger♀ Shanti'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8820, 'Pokémon Ranger♀ Shelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8821, 'Pokémon Ranger♀ Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8822, 'Pokémon Ranger♂ Alain'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8823, 'Pokémon Ranger♀ Anja'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8824, 'Pokémon Ranger♀ Audra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8825, 'Pokémon Ranger♂ BretAutumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8826, 'Pokémon Ranger♀ Briana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8827, 'Pokémon Ranger♂ Crofton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8828, 'Pokémon Ranger♂ Daryl*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8829, 'Pokémon Ranger♀ Dianna*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8830, 'Pokémon Ranger♂ Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8831, 'Pokémon Ranger♂ Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8832, 'Pokémon Ranger♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8833, 'Pokémon Ranger♀ Elle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8834, 'Pokémon Ranger♀ ElizaB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8835, 'Pokémon Ranger♀ ElizaW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8836, 'Pokémon Ranger♂ Forrest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8837, 'Pokémon Ranger♀ Heidi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8838, 'Pokémon Ranger♀ Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8839, 'Pokémon Ranger♂ Jaden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8840, 'Pokémon Ranger♂ Johan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8841, 'Pokémon Ranger♀ Katie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8842, 'Pokémon Ranger♂ LeafAutumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8843, 'Pokémon Ranger♀ Lena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8844, 'Pokémon Ranger♂ LewisB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8845, 'Pokémon Ranger♂ LewisW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8846, 'Pokémon Ranger♀ Lois'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8847, 'Pokémon Ranger♂ Louis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8848, 'Pokémon Ranger♀ MaloryAutumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8849, 'Pokémon Ranger♂ Maxwell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8850, 'Pokémon Ranger♀ Melita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8851, 'Pokémon Ranger♀ Mikiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8852, 'Pokémon Ranger♀ NaokoAutumn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8853, 'Pokémon Ranger♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8854, 'Pokémon Ranger♂ Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8855, 'Pokémon Ranger♂ Ralph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8856, 'Pokémon Ranger♂ Rick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8857, 'Pokémon Ranger♀ Serenity'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8858, 'Pokémon Ranger♂ Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8859, 'Pokémon Ranger♀ Thalia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8860, 'Pokémon Ranger♀ Ambre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8861, 'Pokémon Ranger♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8862, 'Pokémon Ranger♀ Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8863, 'Pokémon Ranger♂ Chaise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8864, 'Pokémon Ranger♀ Clementine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8865, 'Pokémon Ranger♂ Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8866, 'Pokémon Ranger♂ Keith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8867, 'Pokémon Ranger♂ Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8868, 'Pokémon Ranger♂ Maurice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8869, 'Pokémon Ranger♀ Melina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8870, 'Pokémon Ranger♂ Nash'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8871, 'Pokémon Ranger♂ Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8872, 'Pokémon Ranger♀ Petra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8873, 'Pokémon Ranger♂ Ralf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8874, 'Pokémon Ranger♂ Reed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8875, 'Pokémon Ranger♂ Shinobu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8876, 'Pokémon Ranger♂ Silas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8877, 'Pokémon Ranger♀ Twiggy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8878, 'Pokémon Ranger♂ Carlos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8879, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8880, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8881, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8882, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8883, 'Pokémon Ranger♀ Catherine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8884, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8885, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8886, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8887, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8888, 'Pokémon Ranger♂ Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8889, 'Pokémon Ranger♀ Jenna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8890, 'Pokémon Ranger♂ Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8891, 'Pokémon Ranger♀ Sophia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8892, 'Officer Dirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8893, 'Officer Keith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8894, 'Policeman Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8895, 'Policeman Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8896, 'Policeman Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8897, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8898, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8899, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8900, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8901, 'Policeman Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8902, 'Policeman Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8903, 'Policeman Alex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8904, 'Policeman Bobby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8905, 'Policeman Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8906, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8907, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8908, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8909, 'Policeman Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8910, 'Policeman Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8911, 'Policeman Thomas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8912, 'Policeman Dirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8913, 'Policeman Keith'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8914, 'Policeman Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8915, 'Policeman Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8916, 'Policeman BravenB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8917, 'Policeman DellB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8918, 'Policeman Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8919, 'Policeman NeagleB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8920, 'Police Officer Haruki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8921, 'Police Officer Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8922, 'Preschooler♂ Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8923, 'Preschooler♂ Doyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8924, 'Preschooler♂ Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8925, 'Preschooler♂ Homer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8926, 'Preschooler♀ Juliet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8927, 'Preschooler♀ Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8928, 'Preschooler♀ Sarah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8929, 'Preschooler♂ Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8930, 'Preschooler♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8931, 'Preschooler♀ Winter*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8932, 'Preschooler♂ Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8933, 'Preschooler♂ Buster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8934, 'Preschooler♀ Chrissy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8935, 'Preschooler♀ Eva'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8936, 'Preschooler♂ Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8937, 'Preschooler♂ Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8938, 'Preschooler♂ Ike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8939, 'Preschooler♂ Jojo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8940, 'Preschooler♂ José'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8941, 'Preschooler♀ Lin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8942, 'Preschooler♀ Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8943, 'Preschooler♀ Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8944, 'Preschooler♂ Tyrone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8945, 'Preschooler♂ Adrian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8946, 'Preschooler♀ Ella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8947, 'Preschooler♀ Lily'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8948, 'Preschooler♀ Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8949, 'Preschooler♀ Natalie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8950, 'Preschooler♂ Oliver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8951, 'Preschooler♀ Ailey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8952, 'Preschooler♀ Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8953, 'Preschooler♀ Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8954, 'Preschooler♂ Hayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8955, 'Preschooler♂ Hunter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8956, 'Preschooler♂ Kaleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8957, 'Preschooler♂ Liam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8958, 'Preschooler♀ Malia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8959, 'Preschooler♀ Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8960, 'Preschooler♂ Oliver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8961, 'Principal Asuka'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8962, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8963, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8964, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8965, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8966, 'Psychic Fidel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8967, 'Psychic Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8968, 'Psychic Gilbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8969, 'Psychic Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8970, 'Psychic Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8971, 'Psychic Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8972, 'Psychic Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8973, 'Psychic Nathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8974, 'Psychic Norman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8975, 'Psychic Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8976, 'Psychic Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8977, 'Psychic Rodney*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8978, 'Psychic♀ Alexis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8979, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8980, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8981, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8982, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8983, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8984, 'Psychic♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8985, 'Psychic♂ Fritz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8986, 'Psychic♀ Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8987, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8988, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8989, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8990, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8991, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8992, 'Psychic♀ Jaclyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8993, 'Psychic♂ Joshua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8994, 'Psychic♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8995, 'Psychic♀ Maura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8996, 'Psychic♂ Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8997, 'Psychic♀ Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8998, 'Psychic♂ Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (8999, 'Psychic♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9000, 'Psychic♀ Alix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9001, 'Psychic♂ Alvaro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9002, 'Psychic♂ Blake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9003, 'Psychic♀ Brandi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9004, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9005, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9006, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9007, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9008, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9009, 'Psychic♂ Cedric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9010, 'Psychic♂ Edie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9011, 'Psychic♀ Hannah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9012, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9013, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9014, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9015, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9016, 'Psychic♀ Jacki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9017, 'Psychic♀ Kayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9018, 'Psychic♂ Keenan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9019, 'Psychic♀ Macey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9020, 'Psychic♀ Mariella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9021, 'Psychic♀ Marlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9022, 'Psychic♀ Maura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9023, 'Psychic♂ Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9024, 'Psychic♂ Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9025, 'Psychic♀ Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9026, 'Psychic♂ Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9027, 'Psychic♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9028, 'Psychic♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9029, 'Psychic♂ Dario'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9030, 'Psychic♂ Dario'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9031, 'Psychic♀ Jaclyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9032, 'Psychic♀ Jaclyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9033, 'Psychic♂ Johan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9034, 'Psychic♀ Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9035, 'Psychic♂ Lorenzo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9036, 'Psychic♂ Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9037, 'Psychic♀ Rodette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9038, 'Psychic♀ Rodette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9039, 'Psychic♂ Tyron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9040, 'Psychic♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9041, 'Psychic♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9042, 'Psychic♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9043, 'Psychic♀ Brittney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9044, 'Psychic♀ Brittney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9045, 'Psychic♂ Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9046, 'Psychic♀ Chelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9047, 'Psychic♂ Corbin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9048, 'Psychic♂ Corbin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9049, 'Psychic♀ Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9050, 'Psychic♀ Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9051, 'Psychic♂ Deandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9052, 'Psychic♀ Desiree'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9053, 'Psychic♂ Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9054, 'Psychic♀ Kendra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9055, 'Psychic♂ Kody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9056, 'Psychic♂ Landon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9057, 'Psychic♀ Lindsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9058, 'Psychic♂ Maxwell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9059, 'Psychic♂ Maxwell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9060, 'Psychic♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9061, 'Psychic♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9062, 'Psychic♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9063, 'Psychic♀ Rachael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9064, 'Psychic♂ Sterling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9065, 'Psychic♀ Valencia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9066, 'Psychic♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9067, 'Psychic♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9068, 'Psychic♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9069, 'Psychic♀ Brittney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9070, 'Psychic♀ Brittney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9071, 'Psychic♂ Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9072, 'Psychic♀ Chelsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9073, 'Psychic♂ Corbin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9074, 'Psychic♂ Corbin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9075, 'Psychic♀ Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9076, 'Psychic♀ Daisy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9077, 'Psychic♂ Deandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9078, 'Psychic♀ Desiree'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9079, 'Psychic♂ Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9080, 'Psychic♀ Kendra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9081, 'Psychic♂ Kody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9082, 'Psychic♂ Landon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9083, 'Psychic♀ Lindsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9084, 'Psychic♂ Maxwell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9085, 'Psychic♂ Maxwell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9086, 'Psychic♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9087, 'Psychic♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9088, 'Psychic♂ Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9089, 'Psychic♀ Rachael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9090, 'Psychic♂ Sterling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9091, 'Psychic♀ Valencia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9092, 'Psychic Eli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9093, 'Psychic Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9094, 'Psychic Fidel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9095, 'Psychic Greg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9096, 'Psychic Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9097, 'Psychic Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9098, 'Psychic Mark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9099, 'Psychic Nathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9100, 'Psychic Norman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9101, 'Psychic Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9102, 'Psychic Rodney*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9103, 'Psychic Tōru*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9104, 'Psychic Vernon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9105, 'Psychic♀ Belle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9106, 'Psychic♂ Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9107, 'Psychic♀ Cybil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9108, 'Psychic♀ Doreen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9109, 'Psychic♀ Dua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9110, 'Psychic♀ Future'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9111, 'Psychic♂ Gaven'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9112, 'Psychic♂ Gerard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9113, 'Psychic♀ Lin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9114, 'Psychic♂ Low'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9115, 'Psychic♀ Madhu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9116, 'Psychic♂ Micki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9117, 'Psychic♂ Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9118, 'Psychic♂ Rudolf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9119, 'Psychic♂ Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9120, 'Psychic♂ Al'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9121, 'Psychic♀ Alia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9122, 'Psychic♂ Bryce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9123, 'Psychic♀ Dua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9124, 'Psychic♀ Ena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9125, 'Psychic♀ Future'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9126, 'Psychic♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9127, 'Psychic♂ Low'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9128, 'Psychic♀ Lynette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9129, 'Psychic♂ Micki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9130, 'Psychic♂ Nandor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9131, 'Psychic♀ Olesia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9132, 'Psychic♂ Perry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9133, 'Psychic♀ Sarah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9134, 'Psychic♂ Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9135, 'Psychic♂ Tully'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9136, 'Psychic♂ Arthur'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9137, 'Psychic♂ Emanuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9138, 'Psychic♂ Franz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9139, 'Psychic♂ Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9140, 'Psychic♂ Paschal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9141, 'Psychic♂ Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9142, 'Psychic♂ Sayid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9143, 'Psychic♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9144, 'Psychic Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9145, 'Psychic Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9146, 'Psychic Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9147, 'Psychic Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9148, 'Psychic Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9149, 'Psychic Fritz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9150, 'Psychic Joshua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9151, 'Psychic Preston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9152, 'Psychic Virgil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9153, 'Psychic William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9154, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9155, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9156, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9157, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9158, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9159, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9160, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9161, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9162, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9163, 'Psychic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9164, 'Psychic Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9165, 'Psychic Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9166, 'Psychic Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9167, 'Psychic Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9168, 'Punk Couple Zoya & Asa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9169, 'Punk Girl Cecile'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9170, 'Punk Girl Jeanne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9171, 'Punk Girl Lillian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9172, 'Punk Girl Anna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9173, 'Punk Girl Melissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9174, 'Punk Guy Faust'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9175, 'Punk Guy Jacques'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9176, 'Punk Guy Sid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9177, 'Punk Guy Slater'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9178, 'Punk Guy Adam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9179, 'Punk Pair Marie and Troy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9180, 'Punk Pair Yoko and Lane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9181, 'Rancher Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9182, 'Rancher Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9183, 'Rancher Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9184, 'Rancher Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9185, 'Rancher Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9186, 'Rancher Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9187, 'Rangers Fern & Lee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9188, 'Rangers Ivy & Orrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9189, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9190, 'Reporter Valerie(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9191, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9192, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9193, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9194, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9195, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9196, 'Reporter Kinsey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9197, 'Reporter Valerie(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9198, 'Rich Boy Garret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9199, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9200, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9201, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9202, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9203, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9204, 'Rich Boy Dawson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9205, 'Rich Boy Garret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9206, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9207, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9208, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9209, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9210, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9211, 'Rich Boy Jason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9212, 'Rich Boy Roman(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9213, 'Rich Boy Trey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9214, 'Rich Boy Trey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9215, 'Rich Boy Trey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9216, 'Rich Boy Jason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9217, 'Rich Boy Liam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9218, 'Rich Boy Roman(Tag battle)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9219, 'Rich Boy Trey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9220, 'Rich Boy Trey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9221, 'Rich Boy Trey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9222, 'Rich Boy Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9223, 'Rich Boy Brad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9224, 'Rich Boy Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9225, 'Rich Boy Manuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9226, 'Rich Boy Martin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9227, 'Rich Boy Pierce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9228, 'Rich Boy Rolan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9229, 'Rich Boy Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9230, 'Rich Boy Brad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9231, 'Rich Boy Brad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9232, 'Rich Boy KeenanW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9233, 'Rich Boy Rolan*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9234, 'Rich Boy Filbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9235, 'Rich Boy Garret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9236, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9237, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9238, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9239, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9240, 'Rich Boy Winston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9241, 'Rich Boy Cyus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9242, 'Rich Boy Diek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9243, 'Rich Boy Dugo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9244, 'Rich Boy Flitz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9245, 'Rich Boy Jurek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9246, 'Rich Boy Lond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9247, 'Rich Boy Perd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9248, 'Rich Boy Quint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9249, 'Rich Boy Basto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9250, 'Rich Boy Benit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9251, 'Rich Boy Brot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9252, 'Rich Boy Denc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9253, 'Rich Boy Guyit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9254, 'Rich Boy Marcon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9255, 'Rich Boy Perc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9256, 'Rich Boy Puros'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9257, 'Rich Boy Roex'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9258, 'Rich Boy Sainz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9259, 'Rich Boy Symin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9260, 'Rich Boy Tark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9261, 'Rich Boy Venak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9262, 'Rider♂ Delan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9263, 'Rider♂ Delan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9264, 'Rider♂ Derid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9265, 'Rider♂ Derid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9266, 'Rider♀ Elose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9267, 'Rider♀ Eshan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9268, 'Rider♀ Heral'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9269, 'Rider♂ Hesle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9270, 'Rider♂ Kevel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9271, 'Rider♀ Kimit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9272, 'Rider♀ Leba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9273, 'Rider♀ Leba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9274, 'Rider♀ Leba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9275, 'Rider♀ Leba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9276, 'Rider♀ Leba'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9277, 'Rider♂ Ligam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9278, 'Rider♀ Nelis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9279, 'Rider♀ Nelis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9280, 'Rider♀ Nelis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9281, 'Rider♀ Nelon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9282, 'Rider♀ Neni'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9283, 'Rider♂ Nover'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9284, 'Rider♂ Nover'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9285, 'Rider♂ Nover'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9286, 'Rider♂ Nover'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9287, 'Rider♂ Nover'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9288, 'Rider♀ Raleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9289, 'Rider♀ Raleen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9290, 'Rider♂ Riden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9291, 'Rider♂ Rions'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9292, 'Rider♂ Ronal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9293, 'Rider♀ Shatol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9294, 'Rider♀ Sosh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9295, 'Rider♀ Sosh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9296, 'Rider♀ Sosh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9297, 'Rider♀ Trona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9298, 'Rider♂ Turo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9299, 'Rider♂ Twan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9300, 'Rider♂ Twan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9301, 'Rider♂ Twan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9302, 'Rider♂ Vant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9303, 'Rider♂ Vant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9304, 'Rider♂ Vant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9305, 'Rider♂ Vant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9306, 'Rider♂ Vant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9307, 'Rider♂ Vorem'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9308, 'Rider♂ Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9309, 'Rider♂ Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9310, 'Rider♂ Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9311, 'Rider♂ Finson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9312, 'Rider♂ Fokil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9313, 'Rider♀ Jorner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9314, 'Rider♀ Kibbe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9315, 'Rider♀ Kimery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9316, 'Rider♀ Kou'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9317, 'Rider♀ Laret'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9318, 'Rider♂ Lohon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9319, 'Rider♀ Maloo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9320, 'Rider♀ Marley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9321, 'Rider♀ Mayme'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9322, 'Rider♂ Orden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9323, 'Rider♀ Porta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9324, 'Rider♀ Pulink'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9325, 'Rider♂ Rebin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9326, 'Rider♂ Rogin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9327, 'Rider♀ Stefet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9328, 'Rider♂ Trank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9329, 'Rider♂ Wendo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9330, 'Rider♂ Veston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9331, 'Rider♀ Vlum'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9332, 'Rider♀ Zalla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9333, 'Rider♂ Atill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9334, 'Rider♂ Dert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9335, 'Rider♂ Dert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9336, 'Rider♂ Dert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9337, 'Rider♂ Echart'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9338, 'Rider♂ Hebon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9339, 'Rider♂ Hebon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9340, 'Rider♂ Hebon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9341, 'Rider♂ Herlam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9342, 'Rider♂ Kulig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9343, 'Rider♂ Lorgo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9344, 'Rider♂ Polot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9345, 'Rider♂ Mobid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9346, 'Rider♂ Sogle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9347, 'Rider♂ Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9348, 'Rider♂ Willie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9349, 'Rising Star♂ Didier'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9350, 'Rising Star♀ Estel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9351, 'Rising Star♂ Hamish'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9352, 'Rising Star♀ Helene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9353, 'Rising Star♂ Loïc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9354, 'Rising Star♀ Louise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9355, 'Rising Star♀ Manon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9356, 'Rising Star♀ Nelly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9357, 'Rising Star♀ Paulette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9358, 'Rising Star♂ Rhys'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9359, 'Rising Star♂ Tyson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9360, 'Rising Star♂ Elijah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9361, 'Rising Star♂ Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9362, 'Rising Star♂ Joseph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9363, 'Rising Star♂ Joshua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9364, 'Rising Star♂ Kainoa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9365, 'Rising Star♂ Kainoa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9366, 'Rising Star♀ Leilani'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9367, 'Rising Star♂ Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9368, 'Rising Star♂ Mikey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9369, 'Rising Star♀ Nicki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9370, 'Rising Star♂ Sean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9371, 'Rising Star♀ Tatiana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9372, 'Rising Star Duo Lauren and Justin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9373, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9374, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9375, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9376, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9377, 'Rocker Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9378, 'Rocker Luca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9379, 'Rocker Luca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9380, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9381, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9382, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9383, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9384, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9385, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9386, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9387, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9388, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9389, 'Rocker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9390, 'Roller Boy Ardine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9391, 'Roller Boy Arez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9392, 'Roller Boy Azal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9393, 'Roller Boy Daga'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9394, 'Roller Boy Dorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9395, 'Roller Boy Dult'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9396, 'Roller Boy Evat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9397, 'Roller Boy Evat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9398, 'Roller Boy Gort'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9399, 'Roller Boy Greb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9400, 'Roller Boy Grel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9401, 'Roller Boy Kaib'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9402, 'Roller Boy Lon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9403, 'Roller Boy Lon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9404, 'Roller Boy Lon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9405, 'Roller Boy Lon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9406, 'Roller Boy Lon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9407, 'Roller Boy Pabe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9408, 'Roller Boy Pera'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9409, 'Roller Boy Pike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9410, 'Roller Boy Pike'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9411, 'Roller Boy Toli'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9412, 'Roller Boy Tran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9413, 'Roller Boy Warl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9414, 'Roller Boy Aich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9415, 'Roller Boy Bidix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9416, 'Roller Boy Garlow'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9417, 'Roller Boy Gars'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9418, 'Roller Boy Hites'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9419, 'Roller Boy Peres'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9420, 'Roller Boy Polet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9421, 'Roller Boy Shail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9422, 'Roller Boy Tary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9423, 'Roller Boy Tobit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9424, 'Roller Skater♀ Calida'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9425, 'Roller Skater♂ Dash'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9426, 'Roller Skater♂ Florin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9427, 'Roller Skater♀ Jet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9428, 'Roller Skater♀ Kate'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9429, 'Roller Skater♂ Olle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9430, 'Roller Skater♀ Rinka'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9431, 'Roller Skater♂ Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9432, 'Roller Skater♀ Rolanda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9433, 'Roller Skater♂ Shun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9434, 'Roller Skater♀ Winnie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9435, 'Rotation Girl Circie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9436, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9437, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9438, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9439, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9440, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9441, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9442, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9443, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9444, 'Cue Ball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9445, 'Cue Ball Camron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9446, 'Cue Ball Camron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9447, 'Cue Ball Corey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9448, 'Cue Ball Corey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9449, 'Cue Ball Gabriel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9450, 'Cue Ball Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9451, 'Cue Ball Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9452, 'Cue Ball Jamal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9453, 'Cue Ball Koji'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9454, 'Cue Ball Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9455, 'Cue Ball Paxton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9456, 'Cue Ball Raul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9457, 'Cue Ball Zeek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9458, 'Roughneck Kirby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9459, 'Roughneck Kirby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9460, 'Roughneck Chance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9461, 'Roughneck DaveB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9462, 'Roughneck Fletcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9463, 'Roughneck JohnnyB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9464, 'Roughneck Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9465, 'Roughneck Chance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9466, 'Roughneck Fletcher'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9467, 'Roughneck JoeyB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9468, 'Roughneck Nicky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9469, 'Roughneck Reese'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9470, 'Roughneck Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9471, 'Roughneck SilvesterB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9472, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9473, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9474, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9475, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9476, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9477, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9478, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9479, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9480, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9481, 'Cueball'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9482, 'Sage Chow'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9483, 'Sage Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9484, 'Sage GakuC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9485, 'Sage Jeffrey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9486, 'Sage Jin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9487, 'Sage KojiC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9488, 'Sage Li'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9489, 'Sage MasaC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9490, 'Sage Neal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9491, 'Sage Nico'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9492, 'Sage Ping'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9493, 'Sage Troy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9494, 'Sage Chow'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9495, 'Sage Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9496, 'Sage Jin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9497, 'Sage Neal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9498, 'Sage Nico'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9499, 'Sage Troy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9500, 'Sage Chen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9501, 'Sage Chen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9502, 'Sage Chen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9503, 'Sage Chen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9504, 'Sage Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9505, 'Sage Ty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9506, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9507, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9508, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9509, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9510, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9511, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9512, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9513, 'Sailor RB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9514, 'Sailor Y'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9515, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9516, 'Sailor Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9517, 'Sailor Garrett*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9518, 'Sailor Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9519, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9520, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9521, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9522, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9523, 'Sailor Jeff*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9524, 'Sailor Kenneth*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9525, 'Sailor Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9526, 'Sailor Stanly*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9527, 'Sailor Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9528, 'Sailor Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9529, 'Sailor Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9530, 'Sailor Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9531, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9532, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9533, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9534, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9535, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9536, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9537, 'Sailor Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9538, 'Sailor Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9539, 'Sailor Brenden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9540, 'Sailor Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9541, 'Sailor Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9542, 'Sailor Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9543, 'Sailor Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9544, 'Sailor Cory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9545, 'Sailor Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9546, 'Sailor Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9547, 'Sailor Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9548, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9549, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9550, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9551, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9552, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9553, 'Sailor Hudson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9554, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9555, 'Sailor Kelvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9556, 'Sailor Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9557, 'Sailor Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9558, 'Sailor Alberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9559, 'Sailor Brenan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9560, 'Sailor Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9561, 'Sailor Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9562, 'Sailor Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9563, 'Sailor Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9564, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9565, 'Sailor Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9566, 'Sailor Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9567, 'Sailor Trevor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9568, 'Sailor Damian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9569, 'Sailor Luther'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9570, 'Sailor Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9571, 'Sailor Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9572, 'Sailor Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9573, 'Sailor Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9574, 'Sailor Samson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9575, 'Sailor Skyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9576, 'Sailor Zachariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9577, 'Sailor Zachariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9578, 'Sailor Damian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9579, 'Sailor Luther'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9580, 'Sailor Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9581, 'Sailor Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9582, 'Sailor Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9583, 'Sailor Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9584, 'Sailor Samson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9585, 'Sailor Skyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9586, 'Sailor Zachariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9587, 'Sailor Zachariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9588, 'Sailor Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9589, 'Sailor Eugene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9590, 'Sailor Garrett*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9591, 'Sailor Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9592, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9593, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9594, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9595, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9596, 'Sailor Jeff*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9597, 'Sailor Kenneth*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9598, 'Sailor Kent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9599, 'Sailor Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9600, 'Sailor Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9601, 'Sailor Stanly*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9602, 'Sailor Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9603, 'Sailor Duncan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9604, 'Sailor Dwayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9605, 'Sailor Edmond'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9606, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9607, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9608, 'Sailor Ernest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9609, 'Sailor Huey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9610, 'Sailor Leonard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9611, 'Sailor Phillip'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9612, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9613, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9614, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9615, 'Sailor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9616, 'Sailor Bost'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9617, 'Sailor Golos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9618, 'Sailor Gratin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9619, 'Sailor Grestly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9620, 'Sailor Hols'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9621, 'Sailor Jebol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9622, 'Sailor Knook'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9623, 'Sailor Mifis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9624, 'Sailor Monar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9625, 'Sailor Morkor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9626, 'Sailor Ordes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9627, 'Sailor Oxlin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9628, 'Sailor Tebu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9629, 'Schoolboy Arno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9630, 'Schoolboy Brighton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9631, 'Schoolboy Finnian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9632, 'Schoolboy Macon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9633, 'Schoolboy Rabbie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9634, 'Schoolboy Sherlock'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9635, 'Schoolgirl Bridget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9636, 'Schoolgirl Callie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9637, 'Schoolgirl Mackenzie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9638, 'Schoolboy Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9639, 'Schoolboy Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9640, 'Schoolboy Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9641, 'Schoolboy Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9642, 'Schoolboy Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9643, 'Schoolboy Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9644, 'Schoolboy Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9645, 'Schoolboy Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9646, 'Schoolboy Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9647, 'Schoolboy Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9648, 'Schoolboy Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9649, 'Schoolboy Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9650, 'Schoolboy Dudley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9651, 'Schoolboy Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9652, 'Schoolboy Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9653, 'Schoolboy Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9654, 'Schoolboy Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9655, 'Schoolboy Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9656, 'Schoolboy Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9657, 'Schoolboy Johnny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9658, 'Schoolboy Kipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9659, 'Schoolboy Nate*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9660, 'Schoolboy Ricky*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9661, 'Schoolboy Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9662, 'School Kid♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9663, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9664, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9665, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9666, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9667, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9668, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9669, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9670, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9671, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9672, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9673, 'School Kid♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9674, 'School Kid♂ Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9675, 'School Kid♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9676, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9677, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9678, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9679, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9680, 'School Kid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9681, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9682, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9683, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9684, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9685, 'School Kid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9686, 'School Kid♂ Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9687, 'School Kid♂ Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9688, 'School Kid♂ Chance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9689, 'School Kid♀ Christine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9690, 'School Kid♂ Esteban*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9691, 'School Kid♂ Forrest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9692, 'School Kid♂ Harrison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9693, 'School Kid♀ Mackenzie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9694, 'School Kid♀ Tiera'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9695, 'School Kid♂ Chance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9696, 'School Kid♀ Christine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9697, 'School Kid♂ Esteban*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9698, 'School Kid♂ Forrest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9699, 'School Kid♂ Harrison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9700, 'School Kid♀ Mackenzie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9701, 'School Kid♀ Tiera'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9702, 'School Kid Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9703, 'School Kid Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9704, 'School Kid Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9705, 'School Kid Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9706, 'School Kid Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9707, 'School Kid Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9708, 'School Kid Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9709, 'School Kid Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9710, 'School Kid Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9711, 'School Kid Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9712, 'School Kid Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9713, 'School Kid Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9714, 'School Kid Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9715, 'School Kid Danny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9716, 'School Kid Dudley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9717, 'School Kid Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9718, 'School Kid Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9719, 'School Kid Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9720, 'School Kid Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9721, 'School Kid Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9722, 'School Kid Johnny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9723, 'School Kid Kipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9724, 'School Kid Nate*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9725, 'School Kid Ricky*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9726, 'School Kid Sherman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9727, 'School Kid Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9728, 'School Kid Torin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9729, 'School Kid Torin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9730, 'School Kid Torin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9731, 'School Kid Torin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9732, 'School Kid Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9733, 'School Kid♂ Al'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9734, 'School Kid♂ Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9735, 'School Kid♀ Ann'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9736, 'School Kid♂ Carter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9737, 'School Kid♂ Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9738, 'School Kid♀ Gina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9739, 'School Kid♂ Jem'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9740, 'School Kid♀ Lydia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9741, 'School Kid♀ Marsha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9742, 'School Kid♀ Millie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9743, 'School Kid♀ Sally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9744, 'School Kid♂ Sammy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9745, 'School Kid♀ Serena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9746, 'School Kid♂ ShaneB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9747, 'School Kid♂ ShayneW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9748, 'School Kid♀ SilviaB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9749, 'School Kid♂ Alan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9750, 'School Kid♀ Alberta'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9751, 'School Kid♂ Alvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9752, 'School Kid♀ Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9753, 'School Kid♀ Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9754, 'School Kid♀ Cassie*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9755, 'School Kid♂ Edgar*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9756, 'School Kid♂ Keston'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9757, 'School Kid♀ Mara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9758, 'School Kid♀ Marsha*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9759, 'School Kid♀ Millie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9760, 'School Kid♂ Neil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9761, 'School Kid♀ Rita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9762, 'School Kid♀ Sally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9763, 'School Kid♂ Seymour*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9764, 'School Kid♂ Seymour*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9765, 'School Kid♂ Seymour*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9766, 'School Kid♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9767, 'Schoolkid♀ Georgia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9768, 'Schoolkid♀ Georgie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9769, 'Schoolkid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9770, 'Schoolkid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9771, 'Schoolkid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9772, 'Schoolkid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9773, 'Schoolkid♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9774, 'Schoolkid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9775, 'Schoolkid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9776, 'Schoolkid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9777, 'Schoolkid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9778, 'Schoolkid♀ Karen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9779, 'Schoolkid♀ Meena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9780, 'Schoolkid♀ Nitzel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9781, 'Schoolkid♂ Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9782, 'Schoolboy Carson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9783, 'Schoolboy Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9784, 'Schoolboy Clark'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9785, 'Schoolboy Nolan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9786, 'Sci-Fi Maniac Todd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9787, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9788, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9789, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9790, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9791, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9792, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9793, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9794, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9795, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9796, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9797, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9798, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9799, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9800, 'Scientist'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9801, 'Scientist Jed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9802, 'Scientist Marc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9803, 'Scientist Mitch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9804, 'Scientist Rich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9805, 'Scientist Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9806, 'Scientist Beau'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9807, 'Scientist Braydon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9808, 'Scientist Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9809, 'Scientist Ed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9810, 'Scientist Gideon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9811, 'Scientist Ivan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9812, 'Scientist Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9813, 'Scientist Jose'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9814, 'Scientist Joshua'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9815, 'Scientist Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9816, 'Scientist Rodney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9817, 'Scientist Taylor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9818, 'Scientist Ted'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9819, 'Scientist Travis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9820, 'Scientist Zachary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9821, 'Scientist Darrius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9822, 'Scientist Emilio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9823, 'Scientist Fredrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9824, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9825, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9826, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9827, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9828, 'Scientist Stefano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9829, 'Scientist Travon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9830, 'Scientist Darrius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9831, 'Scientist Emilio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9832, 'Scientist Fredrick'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9833, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9834, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9835, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9836, 'Scientist Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9837, 'Scientist Stefano'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9838, 'Scientist Travon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9839, 'Scientist Daniel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9840, 'Scientist Garett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9841, 'Scientist Gregg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9842, 'Scientist Linden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9843, 'Scientist Lowell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9844, 'Scientist Mitch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9845, 'Scientist Ross'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9846, 'Scientist Trenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9847, 'Scientist♀ Blythe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9848, 'Scientist♀ Chan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9849, 'Scientist♀ Kathrine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9850, 'Scientist♀ MarieB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9851, 'Scientist♂ Dudley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9852, 'Scientist♂ Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9853, 'Scientist♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9854, 'Scientist♂ Markus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9855, 'Scientist♀ Naoko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9856, 'Scientist♂ Nathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9857, 'Scientist♂ Orville'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9858, 'Scientist♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9859, 'Scientist♂ Ron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9860, 'Scientist♂ Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9861, 'Scientist♀ Samantha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9862, 'Scientist♀ Satomi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9863, 'Scientist♀ Shannon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9864, 'Scientist♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9865, 'Scientist♂ Steve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9866, 'Scientist♂ William'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9867, 'Scientist♀ Blythe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9868, 'Scientist♀ Athena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9869, 'Scientist♂ Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9870, 'Scientist♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9871, 'Scientist♂ Clarke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9872, 'Scientist♂ Jacques'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9873, 'Scientist♀ Lumi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9874, 'Scientist♀ Lumina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9875, 'Scientist♀ Marie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9876, 'Scientist♀ Marissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9877, 'Scientist♂ Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9878, 'Scientist♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9879, 'Scientist♂ Terrance'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9880, 'Scientist♂ Ernst'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9881, 'Scientist♂ Justus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9882, 'Scientist♀ Sonia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9883, 'Scientist Ikaika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9884, 'Scientist Jayson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9885, 'Scientist Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9886, 'Scientist Reid'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9887, 'Scientist Tyrone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9888, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9889, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9890, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9891, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9892, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9893, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9894, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9895, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9896, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9897, 'Lab Man'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9898, 'Scientist Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9899, 'Scientist Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9900, 'Researcher Coren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9901, 'Researcher Dubik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9902, 'Researcher Kotan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9903, 'Researcher Lethco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9904, 'Researcher Mante'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9905, 'Researcher Mort'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9906, 'Researcher Myron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9907, 'Researcher Odlow'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9908, 'Researcher Ribek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9909, 'Researcher Roeck'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9910, 'Researcher Vogi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9911, 'Researcher Vonder'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9912, 'Researcher Zogo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9913, 'Researcher Doimo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9914, 'Researcher Doton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9915, 'Researcher Durel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9916, 'Researcher Hildon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9917, 'Researcher Kukla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9918, 'Researcher Messa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9919, 'Researcher Nanot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9920, 'Researcher Platen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9921, 'Researcher Raburn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9922, 'Researcher Reman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9923, 'Cipher R&D Acrod'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9924, 'Cipher R&D Coffy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9925, 'Cipher R&D Elrok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9926, 'Researcher Foss'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9927, 'Researcher Hardig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9928, 'Researcher Hombol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9929, 'Cipher R&D Hospel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9930, 'Cipher R&D Kaller'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9931, 'Cipher R&D Klots'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9932, 'Researcher Krilok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9933, 'Researcher Limar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9934, 'Cipher R&D Loket'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9935, 'Cipher R&D Mesak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9936, 'Cipher R&D Morbit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9937, 'Researcher Newin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9938, 'Researcher Orill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9939, 'Researcher Tabor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9940, 'Cipher R&D Tekot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9941, 'Scuba Diver Colten'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9942, 'Scuba Diver Dmitry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9943, 'Scuba Diver Jason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9944, 'Scuba Diver Javier'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9945, 'Scuba Diver Keaton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9946, 'Scuba Diver Kylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9947, 'Scuba Diver Kylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9948, 'Scuba Diver Kylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9949, 'Scuba Diver Silas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9950, 'Scuba Diver Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9951, 'Scuba Diver Yutaka'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9952, 'Senior Representative Hiromi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9953, 'Shady Guy Folly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9954, 'Shady Guy Wes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9955, 'Sightseer♀ Akali'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9956, 'Sightseer♀ Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9957, 'Sightseer♀ Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9958, 'Sightseer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9959, 'Sightseer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9960, 'Sightseer♀ Jamie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9961, 'Sightseer♂ Marcus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9962, 'Sightseer♀ Mariah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9963, 'Sightseer♂ Mitch'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9964, 'Sightseer♂ Scotty'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9965, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9966, 'VR Trainer Aito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9967, 'VR Trainer Aito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9968, 'VR Trainer Aito'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9969, 'VR Trainer Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9970, 'VR Trainer Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9971, 'VR Trainer Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9972, 'VR Trainer Bit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9973, 'VR Trainer Bit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9974, 'VR Trainer Bit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9975, 'VR Trainer ボデス'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9976, 'VR Trainer Cal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9977, 'VR Trainer Cal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9978, 'VR Trainer Cal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9979, 'VR Trainer Cut'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9980, 'VR Trainer Cut'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9981, 'VR Trainer Cut'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9982, 'VR Trainer Draw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9983, 'VR Trainer Draw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9984, 'VR Trainer Draw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9985, 'VR Trainer Ellen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9986, 'VR Trainer Gaku'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9987, 'VR Trainer Gaku'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9988, 'VR Trainer Gaku'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9989, 'VR Trainer Gonne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9990, 'VR Trainer Gonne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9991, 'VR Trainer Gonne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9992, 'VR Trainer Grego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9993, 'VR Trainer Grego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9994, 'VR Trainer Grego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9995, 'VR Trainer Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9996, 'VR Trainer Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9997, 'VR Trainer Hank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9998, 'VR Trainer Haran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (9999, 'VR Trainer Hipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10000, 'VR Trainer Hipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10001, 'VR Trainer Hipp'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10002, 'VR Trainer ホル'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10003, 'VR Trainer Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10004, 'VR Trainer Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10005, 'VR Trainer Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10006, 'VR Trainer Kilk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10007, 'VR Trainer Kilk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10008, 'VR Trainer Kilk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10009, 'VR Trainer Lios'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10010, 'VR Trainer Lios'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10011, 'VR Trainer Lios'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10012, 'VR Trainer Melia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10013, 'VR Trainer Melia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10014, 'VR Trainer Melia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10015, 'VR Trainer Nicol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10016, 'VR Trainer Nicol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10017, 'VR Trainer Nicol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10018, 'VR Trainer Niena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10019, 'VR Trainer Niena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10020, 'VR Trainer Niena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10021, 'VR Trainer Orren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10022, 'VR Trainer Orren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10023, 'VR Trainer Orren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10024, 'VR Trainer Seno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10025, 'VR Trainer Seno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10026, 'VR Trainer Seno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10027, 'VR Trainer Shana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10028, 'VR Trainer Shana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10029, 'VR Trainer Shana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10030, 'VR Trainer Sildy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10031, 'VR Trainer Sildy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10032, 'VR Trainer Sildy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10033, 'VR Trainer Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10034, 'VR Trainer Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10035, 'VR Trainer Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10036, 'VR Trainer Tome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10037, 'VR Trainer Tome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10038, 'VR Trainer Tome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10039, 'VR Trainer Vigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10040, 'VR Trainer Vigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10041, 'VR Trainer Vigo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10042, 'VR Trainer Wamoo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10043, 'VR Trainer Wamoo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10044, 'VR Trainer Wamoo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10045, 'VR Trainer ワーバン'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10046, 'VR Trainer Yarmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10047, 'VR Trainer Yarmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10048, 'VR Trainer Yarmon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10049, 'Sim Trainer Abono'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10050, 'Sim Trainer Acel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10051, 'Sim Trainer Agora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10052, 'Sim Trainer Astor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10053, 'Sim Trainer Basin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10054, 'Sim Trainer Barsto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10055, 'Sim Trainer Bixy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10056, 'Sim Trainer Burg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10057, 'Sim Trainer Burg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10058, 'Sim Trainer Bynds'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10059, 'Sim Trainer Caben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10060, 'Sim Trainer Caben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10061, 'Sim Trainer Cliks'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10062, 'Sim Trainer Cord'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10063, 'Sim Trainer Coki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10064, 'Sim Trainer Corbin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10065, 'Sim Trainer Cuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10066, 'Sim Trainer Cuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10067, 'Sim Trainer Dacel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10068, 'Sim Trainer Dalix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10069, 'Sim Trainer Dibit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10070, 'Sim Trainer Dilson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10071, 'Sim Trainer Dilson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10072, 'Sim Trainer Docol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10073, 'Sim Trainer Ekeol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10074, 'Sim Trainer Feltsa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10075, 'Sim Trainer Frego'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10076, 'Sim Trainer Gepherd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10077, 'Sim Trainer Geplin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10078, 'Sim Trainer Habtel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10079, 'Sim Trainer Havek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10080, 'Sim Trainer Hector'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10081, 'Sim Trainer Hezzy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10082, 'Sim Trainer Hezzy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10083, 'Sim Trainer Hiplog'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10084, 'Sim Trainer Holit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10085, 'Sim Trainer Horoh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10086, 'Sim Trainer Ifong'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10087, 'Sim Trainer Ival'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10088, 'Sim Trainer Jorg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10089, 'Sim Trainer Kabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10090, 'Sim Trainer Kabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10091, 'Sim Trainer Kilf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10092, 'Sim Trainer Kilf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10093, 'Sim Trainer Kleason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10094, 'Sim Trainer Kupol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10095, 'Sim Trainer Leez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10096, 'Sim Trainer Logan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10097, 'Sim Trainer Mestol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10098, 'Sim Trainer Poplet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10099, 'Sis and Bro Lisa & Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10100, 'Sis and Bro Rell & Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10101, 'Sis and Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10102, 'Sis and Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10103, 'Sis and Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10104, 'Sis and Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10105, 'Sis and Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10106, 'Sis and Bro Lila & Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10107, 'Sis and Bro Lila & Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10108, 'Sis and Bro Lila & Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10109, 'Sis and Bro Lila & Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10110, 'Sis and Bro Lila & Roy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10111, 'Sis and Bro Lisa & Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10112, 'Sis and Bro Reli & Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10113, 'Sis and Bro Ava & Geb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10114, 'Sis and Bro Axe & Ren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10115, 'Sis and Bro Kat & Kitt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10116, 'Sis and Bro Lia & Luc'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10117, 'Sis and Bro Lil & Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10118, 'Sis and Bro Lil & Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10119, 'Sis and Bro Lil & Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10120, 'Sis & Bro Lisa & Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10121, 'Sis & Bro Rell & Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10122, 'Sis & Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10123, 'Sis & Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10124, 'Sis & Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10125, 'Sis & Bro Rita & Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10126, 'Skier Clarissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10127, 'Skier Roxanne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10128, 'Skier♀ Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10129, 'Skier♀ Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10130, 'Skier♀ Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10131, 'Skier♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10132, 'Skier♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10133, 'Skier♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10134, 'Skier♂ Bradley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10135, 'Skier♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10136, 'Skier♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10137, 'Skier♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10138, 'Skier♀ Kaitlyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10139, 'Skier♀ Lexie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10140, 'Skier♀ Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10141, 'Skier♀ Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10142, 'Skier♀ Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10143, 'Skier♂ Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10144, 'Skier♀ Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10145, 'Skier♀ Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10146, 'Skier♀ Andrea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10147, 'Skier♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10148, 'Skier♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10149, 'Skier♂ Bjorn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10150, 'Skier♂ Bradley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10151, 'Skier♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10152, 'Skier♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10153, 'Skier♂ Edward'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10154, 'Skier♀ Kaitlyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10155, 'Skier♀ Lexie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10156, 'Skier♀ Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10157, 'Skier♀ Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10158, 'Skier♀ Madison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10159, 'Skier♂ Shawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10160, 'Skier Cady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10161, 'Skier Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10162, 'Skier Jill'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10163, 'Skier Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10164, 'Skier Carol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10165, 'Skier Kathy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10166, 'Skier Kathy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10167, 'Sky Trainer♀ Anila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10168, 'Sky Trainer♀ Aveza'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10169, 'Sky Trainer♂ Celso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10170, 'Sky Trainer♀ Clara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10171, 'Sky Trainer♂ Colm'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10172, 'Sky Trainer♀ Elatal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10173, 'Sky Trainer♀ Era'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10174, 'Sky Trainer♂ Gavin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10175, 'Sky Trainer♂ Howe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10176, 'Sky Trainer♂ Indra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10177, 'Sky Trainer♂ Jeremy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10178, 'Sky Trainer♂ Orion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10179, 'Sky Trainer♀ Sera'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10180, 'Sky Trainer♀ Yvette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10181, 'Smasher Aspen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10182, 'Smasher Aspen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10183, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10184, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10185, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10186, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10187, 'Smasher Mari'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10188, 'Smasher Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10189, 'Smasher Aspen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10190, 'Smasher Aspen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10191, 'Smasher Aspen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10192, 'Smasher Aspen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10193, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10194, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10195, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10196, 'Smasher Elena'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10197, 'Smasher Lizzy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10198, 'Smasher Mari'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10199, 'Smasher Mari'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10200, 'Smasher Mari'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10201, 'Smasher Mari'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10202, 'Mystery Troop Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10203, 'Mystery Troop Bluno'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10204, 'Mystery Troop Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10205, 'Mystery Troop Rosso'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10206, 'Mystery Troop Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10207, 'Mystery Troop Verde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10208, 'Spy Naps'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10209, 'St.Performer Balton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10210, 'St.Performer Diogo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10211, 'St.Performer Diogo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10212, 'St.Performer Diogo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10213, 'St.Performer Diogo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10214, 'St.Performer Diogo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10215, 'St.Performer Kreble'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10216, 'St.Performer Luper'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10217, 'St.Performer Nortz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10218, 'St.Performer Regol'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10219, 'St.Performer Shuf'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10220, 'St.Performer Simes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10221, 'St.Performer Simes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10222, 'St.Performer Erion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10223, 'St.Performer Lirel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10224, 'St.Performer Lonen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10225, 'St.Performer Macik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10226, 'St.Performer Mino'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10227, 'St.Performer Scherla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10228, 'St.Performer Sido'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10229, 'St.Performer Sirko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10230, 'St.Performer Volivia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10231, 'Star Actor Cristoph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10232, 'Street Thug Alfredo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10233, 'Street Thug Barley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10234, 'Street Thug Bass'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10235, 'Street Thug Blair'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10236, 'Street Thug Gomez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10237, 'Street Thug Gomez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10238, 'Street Thug Gomez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10239, 'Street Thug Gomez'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10240, 'Street Thug Hannibal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10241, 'Street Thug Jaylin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10242, 'Street Thug Pitaha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10243, 'Street Thug Regan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10244, 'Street Thug Rice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10245, 'Street Thug Soyer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10246, 'Street Thug Wellington'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10247, 'Striker Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10248, 'Striker Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10249, 'Striker Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10250, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10251, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10252, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10253, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10254, 'Striker Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10255, 'Striker Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10256, 'Striker Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10257, 'Striker Marco'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10258, 'Striker Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10259, 'Striker Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10260, 'Striker Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10261, 'Striker Roberto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10262, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10263, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10264, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10265, 'Striker Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10266, 'Stubborn Boy David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10267, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10268, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10269, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10270, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10271, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10272, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10273, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10274, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10275, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10276, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10277, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10278, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10279, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10280, 'Subway Boss Emmet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10281, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10282, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10283, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10284, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10285, 'Subway Boss Ingo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10286, 'Suit Actor ♀ Christina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10287, 'Suit Actor ♀ Christina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10288, 'Suit Actor ♂ Craig'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10289, 'Suit Actor ♂ Crandall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10290, 'Suit Actor ♂ Creed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10291, 'Suit Actor ♂ Creed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10292, 'Suit Actor ♂ Creed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10293, 'Suit Actor ♀ Crystie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10294, 'Suit Actor ♀ Crystie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10295, 'Suit Actor ♀ Crystie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10296, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10297, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10298, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10299, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10300, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10301, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10302, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10303, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10304, 'Super Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10305, 'Super Nerd Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10306, 'Super Nerd Markus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10307, 'Super Nerd Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10308, 'Super Nerd Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10309, 'Super Nerd Shawn*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10310, 'Super Nerd Teru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10311, 'Super Nerd Tom'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10312, 'Super Nerd Aidan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10313, 'Super Nerd Avery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10314, 'Super Nerd Derek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10315, 'Super Nerd Erik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10316, 'Super Nerd Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10317, 'Super Nerd Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10318, 'Super Nerd Jovan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10319, 'Super Nerd Leslie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10320, 'Super Nerd Miguel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10321, 'Super Nerd Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10322, 'Super Nerd Zac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10323, 'Super Nerd Cary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10324, 'Super Nerd Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10325, 'Super Nerd Markus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10326, 'Super Nerd Merle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10327, 'Super Nerd Pat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10328, 'Super Nerd Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10329, 'Super Nerd Shawn*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10330, 'Super Nerd Teru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10331, 'Super Nerd Tyrone'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10332, 'Super Nerd Waldo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10333, 'Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10334, 'Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10335, 'Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10336, 'Nerd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10337, 'Super Nerd Clifford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10338, 'Super Nerd Clifford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10339, 'Super Nerd Clifford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10340, 'Super Nerd Clifford'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10341, 'Super Nerd Melvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10342, 'Supertrainer♀ Avos'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10343, 'Supertrainer♂ Buril'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10344, 'Supertrainer♀ Charl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10345, 'Supertrainer♂ Codel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10346, 'Supertrainer♂ Gally'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10347, 'Supertrainer♀ Garvon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10348, 'Supertrainer♀ Grang'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10349, 'Supertrainer♂ Gravet'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10350, 'Supertrainer♀ Holoh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10351, 'Supertrainer♂ Hufnak'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10352, 'Supertrainer♀ Huron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10353, 'Supertrainer♂ Kauson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10354, 'Supertrainer♂ Lagin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10355, 'Supertrainer♂ Okamoo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10356, 'Supertrainer♀ Saya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10357, 'Supertrainer♂ Shoo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10358, 'Supertrainer♂ Shun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10359, 'Supertrainer♀ Tangut'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10360, 'Supertrainer♂ Tardel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10361, 'Supertrainer♂ Aferd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10362, 'Supertrainer♂ Aferd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10363, 'Supertrainer♂ Aferd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10364, 'Supertrainer♂ Aferd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10365, 'Supertrainer♂ Aferd'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10366, 'Supertrainer♀ Agoll'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10367, 'Supertrainer♀ Jols'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10368, 'Supertrainer♀ Lest'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10369, 'Supertrainer♀ Libal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10370, 'Supertrainer♀ Nimblis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10371, 'Supertrainer♂ Nopel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10372, 'Supertrainer♀ Pixen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10373, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10374, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10375, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10376, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10377, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10378, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10379, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10380, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10381, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10382, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10383, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10384, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10385, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10386, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10387, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10388, 'Swimmer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10389, 'Swimmer♀ Briana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10390, 'Swimmer♂ Cameron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10391, 'Swimmer♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10392, 'Swimmer♀ Dawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10393, 'Swimmer♀ Denise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10394, 'Swimmer♀ Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10395, 'Swimmer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10396, 'Swimmer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10397, 'Swimmer♂ Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10398, 'Swimmer♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10399, 'Swimmer♀ Kara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10400, 'Swimmer♀ Kaylee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10401, 'Swimmer♂ Kirk'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10402, 'Swimmer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10403, 'Swimmer♂ Mathew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10404, 'Swimmer♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10405, 'Swimmer♀ Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10406, 'Swimmer♂ Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10407, 'Swimmer♀ Paula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10408, 'Swimmer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10409, 'Swimmer♂ Seth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10410, 'Swimmer♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10411, 'Swimmer♀ Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10412, 'Swimmer♂ Tucker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10413, 'Swimmer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10414, 'Swimmer♀ Alice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10415, 'Swimmer♂ Austin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10416, 'Swimmer♂ Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10417, 'Swimmer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10418, 'Swimmer♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10419, 'Swimmer♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10420, 'Swimmer♂ Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10421, 'Swimmer♂ Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10422, 'Swimmer♀ Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10423, 'Swimmer♂ Darrin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10424, 'Swimmer♂ David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10425, 'Swimmer♀ Dawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10426, 'Swimmer♂ Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10427, 'Swimmer♀ Debra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10428, 'Swimmer♀ Denise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10429, 'Swimmer♂ Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10430, 'Swimmer♂ Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10431, 'Swimmer♂ Gilbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10432, 'Swimmer♀ Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10433, 'Swimmer♂ Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10434, 'Swimmer♂ Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10435, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10436, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10437, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10438, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10439, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10440, 'Swimmer♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10441, 'Swimmer♀ Kara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10442, 'Swimmer♀ Katie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10443, 'Swimmer♀ Laurel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10444, 'Swimmer♀ Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10445, 'Swimmer♂ Luis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10446, 'Swimmer♂ Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10447, 'Swimmer♀ Missy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10448, 'Swimmer♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10449, 'Swimmer♀ Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10450, 'Swimmer♂ Reed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10451, 'Swimmer♂ Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10452, 'Swimmer♂ Rodney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10453, 'Swimmer♂ Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10454, 'Swimmer♀ Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10455, 'Swimmer♂ Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10456, 'Swimmer♂ Stan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10457, 'Swimmer♀ Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10458, 'Swimmer♀ Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10459, 'Swimmer♀ Tara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10460, 'Swimmer♀ Tisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10461, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10462, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10463, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10464, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10465, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10466, 'Swimmer♀ Alice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10467, 'Swimmer♂ Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10468, 'Swimmer♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10469, 'Swimmer♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10470, 'Swimmer♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10471, 'Swimmer♀ Carlee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10472, 'Swimmer♂ Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10473, 'Swimmer♂ Clarence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10474, 'Swimmer♀ Dana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10475, 'Swimmer♂ Darrin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10476, 'Swimmer♂ David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10477, 'Swimmer♂ Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10478, 'Swimmer♀ Debra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10479, 'Swimmer♂ Declan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10480, 'Swimmer♀ Denise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10481, 'Swimmer♂ Dominik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10482, 'Swimmer♂ Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10483, 'Swimmer♂ Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10484, 'Swimmer♂ Gilbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10485, 'Swimmer♀ Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10486, 'Swimmer♂ Harrison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10487, 'Swimmer♂ Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10488, 'Swimmer♀ Imani'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10489, 'Swimmer♀ Isabelle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10490, 'Swimmer♂ Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10491, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10492, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10493, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10494, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10495, 'Swimmer♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10496, 'Swimmer♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10497, 'Swimmer♀ Kara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10498, 'Swimmer♀ Katie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10499, 'Swimmer♂ Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10500, 'Swimmer♀ Kyla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10501, 'Swimmer♀ Laurel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10502, 'Swimmer♂ Leonardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10503, 'Swimmer♀ Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10504, 'Swimmer♂ Luis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10505, 'Swimmer♂ Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10506, 'Swimmer♀ Missy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10507, 'Swimmer♀ Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10508, 'Swimmer♂ Nolen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10509, 'Swimmer♂ Pete'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10510, 'Swimmer♂ Reed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10511, 'Swimmer♂ Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10512, 'Swimmer♂ Rodney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10513, 'Swimmer♂ Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10514, 'Swimmer♂ Santiago'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10515, 'Swimmer♀ Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10516, 'Swimmer♀ Sienna'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10517, 'Swimmer♂ Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10518, 'Swimmer♂ Stan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10519, 'Swimmer♀ Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10520, 'Swimmer♀ Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10521, 'Swimmer♀ Tara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10522, 'Swimmer♀ Tisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10523, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10524, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10525, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10526, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10527, 'Swimmer♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10528, 'Swimmer♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10529, 'Swimmer♀ Alice(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10530, 'Swimmer♀ Alice(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10531, 'Swimmer♀ Amara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10532, 'Swimmer♀ Anya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10533, 'Swimmer♂ Axle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10534, 'Swimmer♂ Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10535, 'Swimmer♂ Braden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10536, 'Swimmer♀ Connie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10537, 'Swimmer♂ Darrin(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10538, 'Swimmer♂ Darrin(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10539, 'Swimmer♂ David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10540, 'Swimmer♂ Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10541, 'Swimmer♀ Denise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10542, 'Swimmer♂ Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10543, 'Swimmer♂ Finn(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10544, 'Swimmer♂ Finn(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10545, 'Swimmer♂ Garrett'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10546, 'Swimmer♂ Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10547, 'Swimmer♂ Jack(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10548, 'Swimmer♂ Jack(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10549, 'Swimmer♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10550, 'Swimmer♂ Luis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10551, 'Swimmer♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10552, 'Swimmer♂ Matthew(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10553, 'Swimmer♂ Matthew(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10554, 'Swimmer♀ Melissa(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10555, 'Swimmer♀ Melissa(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10556, 'Swimmer♂ Mymo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10557, 'Swimmer♀ Nicole(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10558, 'Swimmer♀ Nicole(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10559, 'Swimmer♀ Nora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10560, 'Swimmer♂ Reece'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10561, 'Swimmer♂ Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10562, 'Swimmer♂ Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10563, 'Swimmer♂ Samir(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10564, 'Swimmer♂ Samir(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10565, 'Swimmer♀ Shirley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10566, 'Swimmer♂ Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10567, 'Swimmer♀ Shania'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10568, 'Swimmer♀ Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10569, 'Swimmer♀ Tisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10570, 'Swimmer♂ Toby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10571, 'Swimmer♂ Tony(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10572, 'Swimmer♂ Tony(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10573, 'Swimmer♂ Adrian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10574, 'Swimmer♀ Aubree'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10575, 'Swimmer♀ Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10576, 'Swimmer♀ Claire'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10577, 'Swimmer♂ Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10578, 'Swimmer♀ Crystal(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10579, 'Swimmer♀ Crystal(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10580, 'Swimmer♂ Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10581, 'Swimmer♀ Erica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10582, 'Swimmer♂ Erik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10583, 'Swimmer♂ Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10584, 'Swimmer♂ Francisco(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10585, 'Swimmer♂ Francisco(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10586, 'Swimmer♀ Gabrielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10587, 'Swimmer♂ Glenn(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10588, 'Swimmer♂ Glenn(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10589, 'Swimmer♀ Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10590, 'Swimmer♀ Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10591, 'Swimmer♀ Joanna(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10592, 'Swimmer♀ Joanna(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10593, 'Swimmer♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10594, 'Swimmer♂ Kurt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10595, 'Swimmer♀ Lydia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10596, 'Swimmer♀ Mallory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10597, 'Swimmer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10598, 'Swimmer♀ Miranda(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10599, 'Swimmer♀ Miranda(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10600, 'Swimmer♂ Oscar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10601, 'Swimmer♀ Paige'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10602, 'Swimmer♂ Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10603, 'Swimmer♂ Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10604, 'Swimmer♂ Sheltin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10605, 'Swimmer♀ Sophia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10606, 'Swimmer♂ Troy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10607, 'Swimmer♀ Vanessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10608, 'Swimmer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10609, 'Swimmer♂ Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10610, 'Swimmer♂ Wesley(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10611, 'Swimmer♂ Wesley(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10612, 'Swimmer♂ Adrian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10613, 'Swimmer♀ Aubree'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10614, 'Swimmer♀ Cassandra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10615, 'Swimmer♀ Claire'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10616, 'Swimmer♂ Colton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10617, 'Swimmer♀ Crystal(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10618, 'Swimmer♀ Crystal(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10619, 'Swimmer♂ Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10620, 'Swimmer♀ Erica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10621, 'Swimmer♂ Erik'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10622, 'Swimmer♂ Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10623, 'Swimmer♂ Francisco(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10624, 'Swimmer♂ Francisco(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10625, 'Swimmer♀ Gabrielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10626, 'Swimmer♂ Glenn(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10627, 'Swimmer♂ Glenn(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10628, 'Swimmer♀ Haley'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10629, 'Swimmer♀ Jessica'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10630, 'Swimmer♀ Joanna(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10631, 'Swimmer♀ Joanna(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10632, 'Swimmer♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10633, 'Swimmer♂ Kurt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10634, 'Swimmer♀ Lydia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10635, 'Swimmer♀ Mallory'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10636, 'Swimmer♀ Mary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10637, 'Swimmer♀ Miranda(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10638, 'Swimmer♀ Miranda(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10639, 'Swimmer♂ Oscar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10640, 'Swimmer♀ Paige'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10641, 'Swimmer♂ Ricardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10642, 'Swimmer♂ Sam'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10643, 'Swimmer♂ Sheltin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10644, 'Swimmer♀ Sophia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10645, 'Swimmer♂ Troy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10646, 'Swimmer♀ Vanessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10647, 'Swimmer♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10648, 'Swimmer♂ Wade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10649, 'Swimmer♂ Wesley(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10650, 'Swimmer♂ Wesley(Rematch)'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10651, 'Swimmer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10652, 'Swimmer♀ Briana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10653, 'Swimmer♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10654, 'Swimmer♀ Chelan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10655, 'Swimmer♀ Debbie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10656, 'Swimmer♀ Denise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10657, 'Swimmer♀ Diana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10658, 'Swimmer♂ Duane'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10659, 'Swimmer♀ Elaine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10660, 'Swimmer♂ Elmo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10661, 'Swimmer♂ Esteban'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10662, 'Swimmer♂ Frankie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10663, 'Swimmer♂ George'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10664, 'Swimmer♂ Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10665, 'Swimmer♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10666, 'Swimmer♀ Joy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10667, 'Swimmer♀ Kara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10668, 'Swimmer♀ Kaylee'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10669, 'Swimmer♀ Kendra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10670, 'Swimmer♀ Leona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10671, 'Swimmer♀ Lori'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10672, 'Swimmer♂ Luis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10673, 'Swimmer♂ Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10674, 'Swimmer♀ Mina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10675, 'Swimmer♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10676, 'Swimmer♀ Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10677, 'Swimmer♀ Paula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10678, 'Swimmer♂ Randall'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10679, 'Swimmer♂ Ronald'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10680, 'Swimmer♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10681, 'Swimmer♀ Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10682, 'Swimmer♂ Tucker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10683, 'Swimmer♂ Tyson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10684, 'Swimmer♀ Wendy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10685, 'Swimmer♂ Bart'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10686, 'Swimmer♂ Berke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10687, 'Swimmer♀ Caroline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10688, 'Swimmer♀ Joyce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10689, 'Swimmer♀ Larissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10690, 'Swimmer♂ Matt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10691, 'Swimmer♀ Rebecca'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10692, 'Swimmer♂ Tim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10693, 'Swimmer♀ Tyra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10694, 'Swimmer♂ Wright'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10695, 'Swimmer♂ Wright'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10696, 'Swimmer♀ Dara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10697, 'Swimmer♀ Desiree'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10698, 'Swimmer♂ Harold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10699, 'Swimmer♂ Jeffery'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10700, 'Swimmer♀ Kaoru'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10701, 'Swimmer♂ Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10702, 'Swimmer♀ Ruth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10703, 'Swimmer ♂ Alessandro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10704, 'Swimmer ♀ Coral'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10705, 'Swimmer ♂ Estaban'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10706, 'Swimmer ♀ Genevieve'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10707, 'Swimmer ♀ Isla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10708, 'Swimmer ♂ Kieran'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10709, 'Swimmer ♀ Marissa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10710, 'Swimmer ♂ Ramses'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10711, 'Swimmer ♀ Romy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10712, 'Swimmer ♀ Alice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10713, 'Swimmer ♂ Austin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10714, 'Swimmer ♂ Barry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10715, 'Swimmer ♀ Beth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10716, 'Swimmer ♀ Beverly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10717, 'Swimmer ♀ Brenda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10718, 'Swimmer ♂ Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10719, 'Swimmer ♂ Cody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10720, 'Swimmer ♂ Darrin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10721, 'Swimmer ♂ David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10722, 'Swimmer ♀ Dawn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10723, 'Swimmer ♂ Dean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10724, 'Swimmer ♀ Debra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10725, 'Swimmer ♀ Denise'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10726, 'Swimmer ♂ Douglas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10727, 'Swimmer ♂ Franklin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10728, 'Swimmer ♂ Gilbert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10729, 'Swimmer ♀ Grace'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10730, 'Swimmer ♂ Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10731, 'Swimmer ♂ Jack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10732, 'Swimmer ♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10733, 'Swimmer ♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10734, 'Swimmer ♀ Jenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10735, 'Swimmer ♂ Jerome'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10736, 'Swimmer ♀ Kara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10737, 'Swimmer ♀ Katie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10738, 'Swimmer ♀ Laurel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10739, 'Swimmer ♀ Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10740, 'Swimmer ♂ Luis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10741, 'Swimmer ♂ Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10742, 'Swimmer ♀ Missy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10743, 'Swimmer ♀ Nicole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10744, 'Swimmer ♀ Nikki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10745, 'Swimmer ♂ Reed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10746, 'Swimmer ♂ Richard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10747, 'Swimmer ♂ Rodney'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10748, 'Swimmer ♂ Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10749, 'Swimmer ♀ Sharon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10750, 'Swimmer ♀ Sheryl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10751, 'Swimmer ♂ Spencer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10752, 'Swimmer ♂ Stan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10753, 'Swimmer ♀ Susie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10754, 'Swimmer ♀ Tanya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10755, 'Swimmer ♀ Tara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10756, 'Swimmer ♀ Tisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10757, 'Swimmer ♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10758, 'Swimmer ♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10759, 'Swimmer ♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10760, 'Swimmer ♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10761, 'Swimmer ♂ Tony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10762, 'Swimmer♀ Alexandria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10763, 'Swimmer♀ Alicia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10764, 'Swimmer♂ Casey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10765, 'Swimmer♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10766, 'Swimmer♂ Dakota'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10767, 'Swimmer♀ Jade'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10768, 'Swimmer♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10769, 'Swimmer♂ Kalani'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10770, 'Swimmer♀ Kelsie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10771, 'Swimmer♂ Keoni'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10772, 'Swimmer♀ Laura'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10773, 'Swimmer♂ Lawrence'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10774, 'Swimmer♂ Logan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10775, 'Swimmer♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10776, 'Swimmer♂ Robert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10777, 'Swimmer♂ Roddy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10778, 'Swimmer♀ Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10779, 'Swimmer♀ Sara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10780, 'Swimmer♀ Tiare'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10781, 'Swimmer♀ Vanessa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10782, 'Swimmer♂ Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10783, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10784, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10785, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10786, 'Swimmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10787, 'Swimmer♂ Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10788, 'Swimmer♂ Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10789, 'Swimmer♂ Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10790, 'Swimmer♂ Bruce'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10791, 'Swimmer♂ Clayton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10792, 'Swimmer♀ Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10793, 'Swimmer♀ Cora'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10794, 'Swimmer Girls Kylie and Ashlyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10795, 'Swimmers Yumi and Jake'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10796, 'Swimming Club Member Sierra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10797, 'Swimming Club Member Linda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10798, 'Swimming Club Member Logan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10799, 'Swimming Club Member Tamara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10800, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10801, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10802, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10803, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10804, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10805, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10806, 'Tamer Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10807, 'Tamer Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10808, 'Tamer Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10809, 'Tamer Evan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10810, 'Tamer Jason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10811, 'Tamer Phil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10812, 'Tamer Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10813, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10814, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10815, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10816, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10817, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10818, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10819, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10820, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10821, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10822, 'Tamer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10823, 'Teacher Colette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10824, 'Teacher Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10825, 'Teacher Shirley*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10826, 'Teacher Clarice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10827, 'Teacher Colette'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10828, 'Teacher Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10829, 'Teacher Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10830, 'Teacher Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10831, 'Teacher Hillary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10832, 'Teacher Shirley*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10833, 'Teacher Emily'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10834, 'Teacher Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10835, 'Teacher Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10836, 'Teacher Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10837, 'Teacher Molly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10838, 'Teacher Tina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10839, 'Teacher Tina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10840, 'Teacher Glais'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10841, 'Teacher Holen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10842, 'Teacher Kinson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10843, 'Teacher Leine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10844, 'Teacher Loden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10845, 'Teacher Nacie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10846, 'Teacher Nevie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10847, 'Teacher Vona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10848, 'Teacher Carden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10849, 'Teacher Denaw'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10850, 'Teacher Drada'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10851, 'Teacher Elnor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10852, 'Teacher Feren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10853, 'Teacher Foshe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10854, 'Teacher Kaede'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10855, 'Teacher Keeda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10856, 'Teacher Lagron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10857, 'Teacher Larial'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10858, 'Teacher Lisot'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10859, 'Teacher Massi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10860, 'Teacher Tash'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10861, 'Team Flare Aliana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10862, 'Team Flare Aliana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10863, 'Team Flare Bryony*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10864, 'Team Flare Bryony*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10865, 'Team Flare Celosia*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10866, 'Team Flare Celosia*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10867, 'Team Flare Lysandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10868, 'Team Flare Lysandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10869, 'Team Flare Mable'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10870, 'Team Flare Mable'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10871, 'Team Flare Xerosic'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10872, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10873, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10874, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10875, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10876, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10877, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10878, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10879, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10880, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10881, 'Team Flare Admin♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10882, 'Team Flare Admin♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10883, 'Team Flare Admin♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10884, 'Team Flare Admin♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10885, 'Team Flare Admin♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10886, 'Team Flare Admin♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10887, 'Team Flare Admin♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10888, 'Team Flare Admin♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10889, 'Team Flare Admin♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10890, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10891, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10892, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10893, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10894, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10895, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10896, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10897, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10898, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10899, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10900, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10901, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10902, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10903, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10904, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10905, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10906, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10907, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10908, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10909, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10910, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10911, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10912, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10913, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10914, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10915, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10916, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10917, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10918, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10919, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10920, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10921, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10922, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10923, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10924, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10925, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10926, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10927, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10928, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10929, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10930, 'Team Flare Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10931, 'Team Flare Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10932, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10933, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10934, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10935, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10936, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10937, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10938, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10939, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10940, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10941, 'Team Plasma Ghetsis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10942, 'Team Plasma N'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10943, 'Team Plasma N'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10944, 'Team Plasma NB'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10945, 'Team Plasma NW'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10946, 'Team Plasma Colress'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10947, 'Team Plasma Ghetsis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10948, 'Team Plasma Shadow #1'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10949, 'Team Plasma Shadow #1'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10950, 'Team Plasma Shadow #1'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10951, 'Team Plasma Shadow #2*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10952, 'Team Plasma Shadow #2*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10953, 'Team Plasma Shadow #3*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10954, 'Team Plasma Shadow #3*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10955, 'Team Plasma Zinzolin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10956, 'Team Plasma Zinzolin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10957, 'Team Plasma Zinzolin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10958, 'Team Plasma Zinzolin*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10959, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10960, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10961, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10962, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10963, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10964, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10965, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10966, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10967, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10968, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10969, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10970, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10971, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10972, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10973, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10974, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10975, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10976, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10977, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10978, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10979, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10980, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10981, 'Team Skull Grunt♀Multi Battle with Grunt below'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10982, 'Team Skull Grunt♂Multi Battle with Grunt above'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10983, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10984, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10985, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10986, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10987, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10988, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10989, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10990, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10991, 'Team Skull Grunt♂Double Battle with Grunt below'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10992, 'Team Skull Grunt♀Double Battle with Grunt above'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10993, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10994, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10995, 'Team Skull Grunt♀Double Battle with Grunt below'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10996, 'Team Skull Grunt♀Double Battle with Grunt above'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10997, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10998, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (10999, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11000, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11001, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11002, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11003, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11004, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11005, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11006, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11007, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11008, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11009, 'Team Skull Grunt♀'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11010, 'Team Skull Grunt♂'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11011, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11012, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11013, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11014, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11015, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11016, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11017, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11018, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11019, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11020, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11021, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11022, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11023, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11024, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11025, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11026, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11027, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11028, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11029, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11030, 'Team Snagem Agrev'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11031, 'Team Snagem Biden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11032, 'Team Snagem Driton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11033, 'Team Snagem Fusten'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11034, 'Team Snagem Niver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11035, 'Team Snagem Wakin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11036, 'Team Snagem Agrev'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11037, 'Team Snagem Biden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11038, 'Team Snagem Biden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11039, 'Team Snagem Biden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11040, 'Team Snagem Fudlo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11041, 'Team Snagem Gaply'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11042, 'Team Snagem Golit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11043, 'Team Snagem Hobble'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11044, 'Team Snagem Jedo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11045, 'Team Snagem Jedo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11046, 'Team Snagem Jinok'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11047, 'Team Snagem Wakin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11048, 'Team Snagem Wakin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11049, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11050, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11051, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11052, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11053, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11054, 'Sr. and Jr. Kate & Joy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11055, 'Sr. and Jr. Kim & Iris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11056, 'Sr. and Jr. Tyra & Ivy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11057, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11058, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11059, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11060, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11061, 'Sr. and Jr. Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11062, 'Sr. and Jr. Kate & Joy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11063, 'Sr. and Jr. Kim & Iris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11064, 'Sr. and Jr. Tyra & Ivy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11065, 'Teammates Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11066, 'Teammates Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11067, 'Teammates Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11068, 'Teammates Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11069, 'Teammates Anna & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11070, 'Teammates Kate & Joy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11071, 'Teammates Kim & Iris'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11072, 'Teammates Tyra & Ivy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11073, 'Three Brothers Aric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11074, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11075, 'Three Sisters Crystal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11076, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11077, 'Tomboy Brooke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11078, 'Tomboy Melody'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11079, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11080, 'Tourist♀ Eriko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11081, 'Tourist♀ Fumiko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11082, 'Tourist♂ Haruto'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11083, 'Tourist♀ Hiroko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11084, 'Tourist♀ Mari'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11085, 'Tourist♀ Monami'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11086, 'Tourist♂ Takemi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11087, 'Tourist♀ Tomoko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11088, 'Salon Maiden Anabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11089, 'Salon Maiden Anabel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11090, 'Tower Tycoon Palmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11091, 'Tower Tycoon Palmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11092, 'Tower Tycoon Palmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11093, 'Tower Tycoon Palmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11094, 'Tower Tycoon Palmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11095, 'Tower Tycoon Palmer'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11096, 'Ordinary Guy Alec'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11097, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11098, 'Traveling Girl Kaila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11099, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11100, 'Trial Guide♂ Bronson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11101, 'Trial Guide♀ Katrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11102, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11103, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11104, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11105, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11106, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11107, 'Triathlete♀ Allison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11108, 'Triathlete♂ Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11109, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11110, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11111, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11112, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11113, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11114, 'Triathlete♂ Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11115, 'Triathlete♂ Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11116, 'Triathlete♀ Connor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11117, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11118, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11119, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11120, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11121, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11122, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11123, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11124, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11125, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11126, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11127, 'Triathlete♂ Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11128, 'Triathlete♀ Jasmine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11129, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11130, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11131, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11132, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11133, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11134, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11135, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11136, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11137, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11138, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11139, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11140, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11141, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11142, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11143, 'Triathlete♀ Abigail'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11144, 'Triathlete♀ Allison'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11145, 'Triathlete♀ Alyssa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11146, 'Triathlete♂ Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11147, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11148, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11149, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11150, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11151, 'Triathlete♂ Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11152, 'Triathlete♂ Camden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11153, 'Triathlete♂ Camron'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11154, 'Triathlete♂ Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11155, 'Triathlete♀ Donny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11156, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11157, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11158, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11159, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11160, 'Triathlete♂ Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11161, 'Triathlete♀ Isabella'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11162, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11163, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11164, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11165, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11166, 'Triathlete♂ Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11167, 'Triathlete♀ Isobel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11168, 'Triathlete♂ Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11169, 'Triathlete♀ Jasmine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11170, 'Triathlete♂ Julio'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11171, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11172, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11173, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11174, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11175, 'Triathlete♀ Katelyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11176, 'Triathlete♀ Kyra'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11177, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11178, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11179, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11180, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11181, 'Triathlete♀ Maria'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11182, 'Triathlete♀ Melina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11183, 'Triathlete♂ Pablo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11184, 'Triathlete♂ Pablo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11185, 'Triathlete♂ Pablo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11186, 'Triathlete♂ Pablo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11187, 'Triathlete♂ Pablo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11188, 'Triathlete♀ Taila'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11189, 'Triathlete Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11190, 'Triathlete Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11191, 'Triathlete Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11192, 'Triathlete Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11193, 'Triathlete Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11194, 'Triathlete Benjamin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11195, 'Triathlete Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11196, 'Triathlete Chase'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11197, 'Triathlete Denzel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11198, 'Triathlete Dolph'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11199, 'Triathlete Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11200, 'Triathlete Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11201, 'Triathlete Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11202, 'Triathlete Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11203, 'Triathlete Dylan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11204, 'Triathlete Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11205, 'Triathlete Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11206, 'Triathlete Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11207, 'Triathlete Isaiah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11208, 'Triathlete Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11209, 'Triathlete Jaylon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11210, 'Triathlete Karsen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11211, 'Triathlete Sloan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11212, 'Triathlete Vin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11213, 'Tuber♀ Austina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11214, 'Tuber♀ Carmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11215, 'Tuber♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11216, 'Tuber♀ Gwen '); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11217, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11218, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11219, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11220, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11221, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11222, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11223, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11224, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11225, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11226, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11227, 'Tuber♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11228, 'Tuber♀ Austina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11229, 'Tuber♂ Chandler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11230, 'Tuber♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11231, 'Tuber♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11232, 'Tuber♀ Hailey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11233, 'Tuber♀ Jani'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11234, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11235, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11236, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11237, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11238, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11239, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11240, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11241, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11242, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11243, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11244, 'Tuber♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11245, 'Tuber Alexis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11246, 'Tuber Amira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11247, 'Tuber Amira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11248, 'Tuber Priscilla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11249, 'Tuber♀ Caitlyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11250, 'Tuber♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11251, 'Tuber♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11252, 'Tuber♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11253, 'Tuber♂ Conner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11254, 'Tuber♀ Holly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11255, 'Tuber♂ Jacky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11256, 'Tuber♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11257, 'Tuber♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11258, 'Tuber♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11259, 'Tuber♀ Mariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11260, 'Tuber♂ Trenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11261, 'Tuber♀ Caitlyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11262, 'Tuber♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11263, 'Tuber♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11264, 'Tuber♀ Chelsea'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11265, 'Tuber♂ Conner'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11266, 'Tuber♀ Holly'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11267, 'Tuber♂ Jacky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11268, 'Tuber♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11269, 'Tuber♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11270, 'Tuber♂ Jared'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11271, 'Tuber♀ Mariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11272, 'Tuber♂ Trenton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11273, 'Tuber♀ Carmen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11274, 'Tuber♂ Charlie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11275, 'Tuber♂ Delmar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11276, 'Tuber♀ Gwen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11277, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11278, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11279, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11280, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11281, 'Tuber♀ Lola'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11282, 'Tuber♀ Marlene'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11283, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11284, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11285, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11286, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11287, 'Tuber♂ Ricky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11288, 'Tuber♂ Simon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11289, 'Twin Brothers Milton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11290, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11291, 'Twin Sisters Christa'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11292, 'Twin Sisters Christine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11293, ''); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11294, 'Twins Amy & May'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11295, 'Twins Jo & Zoe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11296, 'Twins Meg & Peg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11297, 'Twins Ann & Anne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11298, 'Twins Lea & PiaC'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11299, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11300, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11301, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11302, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11303, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11304, 'Twins Gina & Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11305, 'Twins Miu & Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11306, 'Twins Tori & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11307, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11308, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11309, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11310, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11311, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11312, 'Twins Gina & Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11313, 'Twins Miu & Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11314, 'Twins Tori & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11315, 'Twins Eli & Anne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11316, 'Twins Eli & Anne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11317, 'Twins Jen & Kira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11318, 'Twins Joy & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11319, 'Twins Joy & Meg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11320, 'Twins Kiri & Jan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11321, 'Twins Miu & Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11322, 'Twins Emma & Lil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11323, 'Twins Liv & Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11324, 'Twins Teri & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11325, 'Twins Teri & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11326, 'Twins Teri & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11327, 'Twins Emma & Lil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11328, 'Twins Liv & Liz'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11329, 'Twins Teri & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11330, 'Twins Teri & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11331, 'Twins Teri & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11332, 'Twins Amy & May'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11333, 'Twins Clea & Gil'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11334, 'Twins Day & Dani'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11335, 'Twins Jo & Zoe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11336, 'Twins Kay & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11337, 'Twins Kay & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11338, 'Twins Kay & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11339, 'Twins Kay & Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11340, 'Twins Meg & Peg'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11341, 'Twins Saya & Aya*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11342, 'Twins Tori & Til'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11343, 'Twins Emy & Lin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11344, 'Twins Kumi & Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11345, 'Twins Mayo & May'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11346, 'Twins Ally & Amy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11347, 'Twins Lia & Lily'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11348, 'Twins Rae & Ula'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11349, 'Twins Sola & Ana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11350, 'Twins Tara & ValW2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11351, 'Twins Faith & Joy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11352, 'Twins Nana & Nina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11353, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11354, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11355, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11356, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11357, 'Twins Amy & Liv'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11358, 'Twins Gina & Mia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11359, 'Twins Miu & Yuki'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11360, 'Twins Harper and Sarah'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11361, 'Twins Isa and Nico'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11362, 'Twins Myn&Lyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11363, 'Twins Myn&Lyn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11364, 'Unique Star Karla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11365, 'Veteran Armando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11366, 'Veteran Armando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11367, 'Veteran Brenden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11368, 'Veteran Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11369, 'Veteran Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11370, 'Veteran Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11371, 'Veteran Clayton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11372, 'Veteran Edger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11373, 'Veteran Emanuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11374, 'Veteran Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11375, 'Veteran Harlan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11376, 'Veteran Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11377, 'Veteran Armando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11378, 'Veteran Armando'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11379, 'Veteran Brenden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11380, 'Veteran Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11381, 'Veteran Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11382, 'Veteran Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11383, 'Veteran Clayton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11384, 'Veteran Edgar'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11385, 'Veteran Emanuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11386, 'Veteran Grant'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11387, 'Veteran Harlan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11388, 'Veteran Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11389, 'Veteran♂ Arlen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11390, 'Veteran♂ Chester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11391, 'Veteran♂ Hugo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11392, 'Veteran♀ Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11393, 'Veteran♀ Karla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11394, 'Veteran♀ Kim'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11395, 'Veteran♂ Martell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11396, 'Veteran♂ Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11397, 'Veteran♀ Sayuri'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11398, 'Veteran♂ Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11399, 'Veteran♀ Tiffany'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11400, 'Veteran♂ Abraham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11401, 'Veteran♂ Arlen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11402, 'Veteran♀ Cathy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11403, 'Veteran♂ Carter*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11404, 'Veteran♀ Cecile'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11405, 'Veteran♂ Chester*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11406, 'Veteran♀ Chloris*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11407, 'Veteran♂ Claude'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11408, 'Veteran♀ Denae*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11409, 'Veteran♀ Gina*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11410, 'Veteran♂ Hugo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11411, 'Veteran♂ Jerry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11412, 'Veteran♀ Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11413, 'Veteran♂ Lucius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11414, 'Veteran♀ Maya'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11415, 'Veteran♂ Murphy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11416, 'Veteran♀ Oriana'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11417, 'Veteran♀ Portia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11418, 'Veteran♂ Rayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11419, 'Veteran♀ Rhona'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11420, 'Veteran♂ Ron*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11421, 'Veteran♀ Rosaline'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11422, 'Veteran♀ Sayuri'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11423, 'Veteran♂ Shaun'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11424, 'Veteran♂ Sinan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11425, 'Veteran♂ Sterling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11426, 'Veteran♂ Vincent'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11427, 'Veteran♂ ZachWinter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11428, 'Veteran♀ Catrina'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11429, 'Veteran♂ Gerard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11430, 'Veteran♂ Gilles'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11431, 'Veteran♀ Inga'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11432, 'Veteran♂ Louis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11433, 'Veteran♂ Timeo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11434, 'Veteran♀ Trisha'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11435, 'Veteran♂ Akira'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11436, 'Veteran♂ Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11437, 'Veteran♂ Eric'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11438, 'Veteran♂ Harry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11439, 'Veteran♀ Heather'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11440, 'Veteran♂ Leon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11441, 'Veteran♀ Lynn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11442, 'Veteran♂ Roger'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11443, 'Veteran♀ Sheri'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11444, 'Veteran Duo Tsunekazu and Nobuko'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11445, 'Veteran Actor J.J.'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11446, 'Veteran Actor Masachika'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11447, 'Veteran Actor Peter'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11448, 'Viscount Ardmore'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11449, 'Viscount Braine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11450, 'Viscount Cullinan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11451, 'Viscount Gourdon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11452, 'Viscount Herault'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11453, 'Viscount Orloff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11454, 'Viscount Tolkowsky'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11455, 'Viscountess Anne-Laure'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11456, 'Viscountess Ayla'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11457, 'Viscountess Beatrice'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11458, 'Viscountess Danielle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11459, 'Viscountess Julia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11460, 'Viscountess Mathilde'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11461, 'Viscountess Regine'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11462, 'Waiter Bert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11463, 'Waiter Clint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11464, 'Waiter Maxwell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11465, 'Waiter Clint'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11466, 'Waiter Lou'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11467, 'Waitress Kati'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11468, 'Waitress Kati'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11469, 'Waitress Aurora*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11470, 'Waitress Bonita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11471, 'Waitress Flo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11472, 'Waitress Tia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11473, 'Waitress Jan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11474, 'Waitress Paget'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11475, 'Waitress Paula*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11476, 'Waitress Talia'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11477, 'Worker Braden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11478, 'Worker Brendon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11479, 'Worker Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11480, 'Worker Conrad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11481, 'Worker Dillan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11482, 'Worker Gary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11483, 'Worker Gerardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11484, 'Worker Holden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11485, 'Worker Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11486, 'Worker Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11487, 'Worker Quentin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11488, 'Worker Willy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11489, 'Worker Braden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11490, 'Worker Brendon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11491, 'Worker Colin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11492, 'Worker Conrad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11493, 'Worker Dillan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11494, 'Worker Gary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11495, 'Worker Gerardo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11496, 'Worker Holden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11497, 'Worker Jackson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11498, 'Worker Mason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11499, 'Worker Noel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11500, 'Worker Quentin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11501, 'Worker Arnold'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11502, 'Worker Brady'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11503, 'Worker Brand'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11504, 'Worker Cairn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11505, 'Worker Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11506, 'Worker Don'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11507, 'Worker Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11508, 'Worker Felix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11509, 'Worker Filipe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11510, 'Worker Glenn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11511, 'Worker Gus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11512, 'Worker Heath'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11513, 'Worker Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11514, 'Worker Patton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11515, 'Worker Rich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11516, 'Worker Rob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11517, 'Worker Ryan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11518, 'Worker Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11519, 'Worker Shelby'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11520, 'Worker Sterling'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11521, 'Worker Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11522, 'Worker Victor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11523, 'Worker Zack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11524, 'Worker Brand'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11525, 'Worker Cairn'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11526, 'Worker Cliff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11527, 'Worker Friedrich'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11528, 'Worker Gus'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11529, 'Worker Herman'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11530, 'Worker Isaac'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11531, 'Worker Leo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11532, 'Worker Matthew'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11533, 'Worker Maynard'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11534, 'Worker Mitchell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11535, 'Worker Morgann'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11536, 'Worker Nathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11537, 'Worker Niel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11538, 'Worker Noel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11539, 'Worker Pasqual'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11540, 'Worker Patton'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11541, 'Worker Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11542, 'Worker Ryan*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11543, 'Worker Scott'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11544, 'Worker Tavarius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11545, 'Worker Tibor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11546, 'Worker Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11547, 'Worker Victor*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11548, 'Worker Zack'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11549, 'Worker Dimitri'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11550, 'Worker Narek'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11551, 'Worker Yusif'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11552, 'Worker Frank'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11553, 'Worker Jeff'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11554, 'Worker Vaclav'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11555, 'Worker Sangon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11556, 'Worker Toway'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11557, 'Worker Bomber'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11558, 'Worker Chean'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11559, 'Worker Demit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11560, 'Worker Hubor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11561, 'Worker Kebile'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11562, 'Worker Laber'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11563, 'Worker Ordo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11564, 'Worker Retay'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11565, 'Worker Ronix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11566, 'Worker Wagel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11567, 'Worker Dobit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11568, 'Worker Dobit'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11569, 'Worker Kaster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11570, 'Worker Lobel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11571, 'Worker Releo'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11572, 'Worker Saken'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11573, 'Worker Rustix'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11574, 'World Champion Abram'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11575, 'World Champion Toler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11576, 'World Champion Ray'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11577, 'World Finalist Brendan*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11578, 'World Finalist Brendan*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11579, 'World Finalist Kippei'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11580, 'World Finalist Nitesh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11581, 'World Finalist Henry'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11582, 'World Finalist Abel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11583, 'World Finalist Joe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11584, 'World Finalist Brian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11585, 'World Finalist Jaime'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11586, 'World Finalist Wolfe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11587, 'Young Couple Dez & Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11588, 'Young Couple Lea & Jed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11589, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11590, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11591, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11592, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11593, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11594, 'Young Couple Dez & Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11595, 'Young Couple Kira & Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11596, 'Young Couple Kira & Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11597, 'Young Couple Kira & Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11598, 'Young Couple Kira & Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11599, 'Young Couple Kira & Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11600, 'Young Couple Lea & Jed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11601, 'Young Couple Mel & Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11602, 'Young Couple Alek & Emy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11603, 'Young Couple Eve & Jon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11604, 'Young Couple Gia & Jes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11605, 'Young Couple Gia & Jes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11606, 'Young Couple Gia & Jes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11607, 'Young Couple Lea & Jed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11608, 'Young Couple Mike & Nat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11609, 'Young Couple Ty & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11610, 'Young Couple Mike & Nat'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11611, 'Young Couple Ty & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11612, 'Young Couple Duff & Eda'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11613, 'Young Couple Moe & Lulu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11614, 'Young Couple Tim & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11615, 'Young Couple Tim & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11616, 'Young Couple Tim & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11617, 'Young Couple Tim & Sue'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11618, 'Young Couple Vic & Tara'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11619, 'Young Couple Dez & Luke'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11620, 'Young Couple Lea & Jed'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11621, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11622, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11623, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11624, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11625, 'Young Couple Lois & Hal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11626, 'Young Couple Mel & Paul'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11627, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11628, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11629, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11630, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11631, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11632, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11633, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11634, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11635, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11636, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11637, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11638, 'Youngster'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11639, 'Youngster *Y'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11640, 'Youngster Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11641, 'Youngster Gordon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11642, 'Youngster Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11643, 'Youngster Jason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11644, 'Youngster Jimmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11645, 'Youngster Joey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11646, 'Youngster Joey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11647, 'Youngster Joey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11648, 'Youngster Joey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11649, 'Youngster Joey*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11650, 'Youngster Mikey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11651, 'Youngster Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11652, 'Youngster Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11653, 'Youngster Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11654, 'Youngster Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11655, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11656, 'Youngster Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11657, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11658, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11659, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11660, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11661, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11662, 'Youngster Dillion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11663, 'Youngster Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11664, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11665, 'Youngster Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11666, 'Youngster Neal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11667, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11668, 'Youngster Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11669, 'Youngster Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11670, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11671, 'Youngster Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11672, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11673, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11674, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11675, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11676, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11677, 'Youngster Deandre'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11678, 'Youngster Demetrius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11679, 'Youngster Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11680, 'Youngster Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11681, 'Youngster Jaylen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11682, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11683, 'Youngster Johnson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11684, 'Youngster Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11685, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11686, 'Youngster Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11687, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11688, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11689, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11690, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11691, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11692, 'Youngster Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11693, 'Youngster Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11694, 'Youngster Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11695, 'Youngster Chad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11696, 'Youngster Cole'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11697, 'Youngster Cordell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11698, 'Youngster Dan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11699, 'Youngster Dave'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11700, 'Youngster Destin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11701, 'Youngster Destin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11702, 'Youngster Dillon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11703, 'Youngster Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11704, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11705, 'Youngster Johnson'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11706, 'Youngster Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11707, 'Youngster Nash'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11708, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11709, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11710, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11711, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11712, 'Youngster Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11713, 'Youngster Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11714, 'Youngster Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11715, 'Youngster Yasu'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11716, 'Youngster Austin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11717, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11718, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11719, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11720, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11721, 'Youngster Darius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11722, 'Youngster Donny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11723, 'Youngster Jonathon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11724, 'Youngster Logan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11725, 'Youngster Michael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11726, 'Youngster Oliver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11727, 'Youngster Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11728, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11729, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11730, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11731, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11732, 'Youngster Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11733, 'Youngster Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11734, 'Youngster Austin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11735, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11736, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11737, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11738, 'Youngster Dallas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11739, 'Youngster Darius'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11740, 'Youngster Donny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11741, 'Youngster Jonathon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11742, 'Youngster Logan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11743, 'Youngster Michael'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11744, 'Youngster Oliver'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11745, 'Youngster Sebastian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11746, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11747, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11748, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11749, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11750, 'Youngster Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11751, 'Youngster Wayne'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11752, 'Youngster Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11753, 'Youngster Gordon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11754, 'Youngster Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11755, 'Youngster Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11756, 'Youngster Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11757, 'Youngster Ian'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11758, 'Youngster Jason'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11759, 'Youngster Jimmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11760, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11761, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11762, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11763, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11764, 'Youngster Mikey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11765, 'Youngster Owen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11766, 'Youngster Regis'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11767, 'Youngster Samuel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11768, 'Youngster Warren'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11769, 'Youngster Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11770, 'Youngster Albert'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11771, 'Youngster Astor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11772, 'Youngster Jimmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11773, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11774, 'Youngster Keita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11775, 'Youngster Kenneth'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11776, 'Youngster Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11777, 'Youngster Kyle'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11778, 'Youngster Lester'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11779, 'Youngster Masao'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11780, 'Youngster Mikey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11781, 'Youngster Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11782, 'Youngster Parker'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11783, 'Youngster Roland'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11784, 'Youngster Wes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11785, 'Youngster Zachary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11786, 'Youngster Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11787, 'Youngster Abe'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11788, 'Youngster Astor'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11789, 'Youngster Cody*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11790, 'Youngster Henley*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11791, 'Youngster Jaye'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11792, 'Youngster Jimmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11793, 'Youngster Karl'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11794, 'Youngster Keita*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11795, 'Youngster Keita*'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11796, 'Youngster Kenny'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11797, 'Youngster Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11798, 'Youngster Masahiro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11799, 'Youngster Mikey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11800, 'Youngster Nicholas'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11801, 'Youngster Pedro'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11802, 'Youngster Petey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11803, 'Youngster SinclairB2'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11804, 'Youngster Terrell'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11805, 'Youngster Waylon'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11806, 'Youngster Wes'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11807, 'Youngster Aidan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11808, 'Youngster Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11809, 'Youngster Austin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11810, 'Youngster David'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11811, 'Youngster Keita'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11812, 'Youngster Jacob'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11813, 'Youngster Jayden'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11814, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11815, 'Youngster Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11816, 'Youngster Zachary'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11817, 'Youngster Allen'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11818, 'Youngster Ben'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11819, 'Youngster Billy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11820, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11821, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11822, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11823, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11824, 'Youngster Calvin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11825, 'Youngster Cutler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11826, 'Youngster Dillion'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11827, 'Youngster Eddie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11828, 'Youngster Ham'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11829, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11830, 'Youngster Josh'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11831, 'Youngster Neal'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11832, 'Youngster Timmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11833, 'Youngster Tommy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11834, 'Youngster Anthony'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11835, 'Youngster Caleb'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11836, 'Youngster Jimmy'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11837, 'Youngster Joey'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11838, 'Youngster Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11839, 'Youngster Kai'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11840, 'Youngster Kevin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11841, 'Youngster Tristan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11842, 'Youngster Tyler'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11843, 'Lad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11844, 'Lad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11845, 'Lad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11846, 'Lad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11847, 'Lad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11848, 'Lad'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11849, 'Youngster Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11850, 'Youngster Bernie'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11851, 'Youngster Dustin'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11852, 'Youngster Jonathan'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11853, 'Youngster Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11854, 'Youngster Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11855, 'Youngster Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11856, 'Youngster Wyatt'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11857, 'Youth Athlete♀ Hiromi'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11858, 'Youthful Couple Ariel'); +INSERT INTO pokemon.trainers (trainerID, trainername) VALUES (11859, 'Youthful Couple River'); \ No newline at end of file diff --git a/pokemon_sql/pokemon_types.sql b/pokemon_sql/pokemon_types.sql new file mode 100644 index 0000000..43defc5 --- /dev/null +++ b/pokemon_sql/pokemon_types.sql @@ -0,0 +1,19 @@ +##create table types(id int auto_increment primary key,name text not null); +INSERT INTO pokemon.types (id, name) VALUES (1, 'Normal'); +INSERT INTO pokemon.types (id, name) VALUES (2, 'Water'); +INSERT INTO pokemon.types (id, name) VALUES (3, 'Grass'); +INSERT INTO pokemon.types (id, name) VALUES (4, 'Rock'); +INSERT INTO pokemon.types (id, name) VALUES (5, 'Fire'); +INSERT INTO pokemon.types (id, name) VALUES (6, 'Ground'); +INSERT INTO pokemon.types (id, name) VALUES (7, 'Poison'); +INSERT INTO pokemon.types (id, name) VALUES (8, 'Bug'); +INSERT INTO pokemon.types (id, name) VALUES (9, 'Electric'); +INSERT INTO pokemon.types (id, name) VALUES (10, 'Dragon'); +INSERT INTO pokemon.types (id, name) VALUES (11, 'Steel'); +INSERT INTO pokemon.types (id, name) VALUES (12, 'Dark'); +INSERT INTO pokemon.types (id, name) VALUES (13, 'Fighting'); +INSERT INTO pokemon.types (id, name) VALUES (14, 'Psychic'); +INSERT INTO pokemon.types (id, name) VALUES (15, 'Ghost'); +INSERT INTO pokemon.types (id, name) VALUES (16, 'Fairy'); +INSERT INTO pokemon.types (id, name) VALUES (17, 'Ice'); +INSERT INTO pokemon.types (id, name) VALUES (18, 'Flying'); \ No newline at end of file From 4cb44a4d97b8b64abad2d4d2122238ebb76de3d9 Mon Sep 17 00:00:00 2001 From: Keerthana Srinivasan Date: Tue, 7 Dec 2021 21:57:42 -0500 Subject: [PATCH 2/2] Lab completed --- .DS_Store | Bin 6148 -> 6148 bytes Part 2.rtf | 37 ------------------------------ Part 2.txt | 27 ++++++++++++++++++++++ Part 3.rtf | 65 ----------------------------------------------------- Part 3.txt | 44 ++++++++++++++++++++++++++++++++++++ part 4.rtf | 30 ------------------------- part 4.txt | 18 +++++++++++++++ 7 files changed, 89 insertions(+), 132 deletions(-) delete mode 100644 Part 2.rtf create mode 100644 Part 2.txt delete mode 100644 Part 3.rtf create mode 100644 Part 3.txt delete mode 100644 part 4.rtf create mode 100644 part 4.txt diff --git a/.DS_Store b/.DS_Store index 5f939d5c85cba22b553b1e7148429d7530f00f82..b52d8fed10c5c896a5c465940c50e141e9e7d87b 100644 GIT binary patch delta 139 zcmZoMXfc@J&&abeU^g=(&tx7JZ^jdoBUl<(#jC50%_iStQDU4inUPhVapq)2Ru?sf z^$ZLQ^ZtVYkj22j#Sp-d$WX*k!l1xl#GnVHD;P>9hqLOlLRj6b`jTLlXHI@{Qcivn bP>%o*I|A{%$((FTo4>N&XWY!r@s}R}>+UA8 delta 85 zcmZoMXfc@J&&a(oU^g=(_hcRx@5z~LXD2JOI!>O!syI22Re16lRz<}kh7yJ}&z$_^ dq@4UD1_lO!|7c({AKOpHi4De^**X650{}a0B@h4r diff --git a/Part 2.rtf b/Part 2.rtf deleted file mode 100644 index f19cfe1..0000000 --- a/Part 2.rtf +++ /dev/null @@ -1,37 +0,0 @@ -{\rtf1\ansi\ansicpg1252\cocoartf2580 -\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Menlo-Regular;} -{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} -{\*\expandedcolortbl;;\csgray\c0;} -\margl1440\margr1440\vieww11520\viewh8400\viewkind0 -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 - -\f0\fs24 \cf0 ### Part 2: Simple Selects and Counts\ -\ -Directions: Write a sql query or sql queries that can answer the following questions\ -\ -* What are all the types of pokemon that a pokemon can have?\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT * FROM types; -\f0\fs24 \cf0 \CocoaLigature1 \ -\ -* What is the name of the pokemon with id 45?\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT name * FROM pokemons WHERE id = 45;\ - -\f0\fs24 \cf0 \CocoaLigature1 \ -* How many pokemon are there?\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(*) FROM pokemons;\ - -\f0\fs24 \cf0 \CocoaLigature1 \ -* How many types are there?\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(*) FROM types; -\f0\fs24 \cf0 \CocoaLigature1 \ -\ -* How many pokemon have a secondary type?\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(*)AS Number_of_Pokemons,secondary_type FROM pokemons GROUP BY secondary_type; -\f0\fs24 \cf0 \CocoaLigature1 \ -\ -} \ No newline at end of file diff --git a/Part 2.txt b/Part 2.txt new file mode 100644 index 0000000..431a268 --- /dev/null +++ b/Part 2.txt @@ -0,0 +1,27 @@ +### Part 2: Simple Selects and Counts + +Directions: Write a sql query or sql queries that can answer the following questions + +* What are all the types of pokemon that a pokemon can have? + + SELECT * FROM types; + +* What is the name of the pokemon with id 45? + + SELECT name * FROM pokemons WHERE id = 45; + + +* How many pokemon are there? + + SELECT COUNT(*) FROM pokemons; + + +* How many types are there? + +SELECT COUNT(*) FROM types; + + +* How many pokemon have a secondary type? + + SELECT COUNT(*)AS Number_of_Pokemons,secondary_type FROM pokemons GROUP BY secondary_type; + diff --git a/Part 3.rtf b/Part 3.rtf deleted file mode 100644 index 22e4167..0000000 --- a/Part 3.rtf +++ /dev/null @@ -1,65 +0,0 @@ -{\rtf1\ansi\ansicpg1252\cocoartf2580 -\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Menlo-Regular;} -{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} -{\*\expandedcolortbl;;\csgray\c0;} -\margl1440\margr1440\vieww11520\viewh8400\viewkind0 -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 - -\f0\fs24 \cf0 \ -### Part 3: Joins and Groups\ -Directions: Write a sql query or sql queries that can answer the following questions\ -\ -\ -* What is each pokemon's primary type?\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT p.name, t.name\ -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 - -> FROM pokemons p\ - -> JOIN types t\ - -> ON p.primary_type = t.id; -\f0\fs24 \cf0 \CocoaLigature1 \ -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 -\cf0 * What is Rufflet's secondary type?\ -\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT secondary_type FROM pokemons WHERE name = "Rufflet"; -\f0\fs24 \cf0 \CocoaLigature1 \ -\ -* What are the names of the pokemon that belong to the trainer with trainerID 303?\ -\ - -\f1\fs22 \cf2 \CocoaLigature0 SELECT p.name AS pokemon_name FROM pokemons p JOIN trainers t ON p.id=t.trainerID WHERE trainerID=303; -\f0\fs24 \cf0 \CocoaLigature1 \ -* How many pokemon have a secondary type `Poison`?\ -\ -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 - -\f1\fs22 \cf2 \CocoaLigature0 SELECT count(*) FROM pokemons p JOIN types t ON p.secondary_type=t.id WHERE t.name='Poison';\ - -\f0\fs24 \cf0 \CocoaLigature1 \ -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 -\cf0 * What are all the primary types and how many pokemon have that type?\ -\ -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 - -\f1\fs22 \cf2 \CocoaLigature0 SELECT t.name,count(p.primary_type)\ - -> FROM types t\ - -> JOIN pokemons p\ - -> ON p.primary_type = t.id\ - -> GROUP BY t.name; -\f0\fs24 \cf0 \CocoaLigature1 \ -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 -\cf0 * How many pokemon at level 100 does each trainer with at least one level 100 pokemone have? (Hint: your query should not display a trainer)\ -\ -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 - -\f1\fs22 \cf2 \CocoaLigature0 SELECT COUNT(pokemon_id)\ - -> FROM pokemon_trainer\ - -> WHERE pokelevel = 100\ - -> GROUP BY trainerID\ - -> HAVING COUNT(pokelevel)>1;\ - -\f0\fs24 \cf0 \CocoaLigature1 \ -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 -\cf0 * How many pokemon only belong to one trainer and no other?\ -} \ No newline at end of file diff --git a/Part 3.txt b/Part 3.txt new file mode 100644 index 0000000..4932b13 --- /dev/null +++ b/Part 3.txt @@ -0,0 +1,44 @@ + +### Part 3: Joins and Groups +Directions: Write a sql query or sql queries that can answer the following questions + +* What is each pokemon's primary type? + + SELECT p.name, t.name + -> FROM pokemons p + -> JOIN types t + -> ON p.primary_type = t.id; + + * What is Rufflet's secondary type? + + + SELECT secondary_type FROM pokemons WHERE name = "Rufflet"; + + +* What are the names of the pokemon that belong to the trainer with trainerID 303? + + + SELECT p.name AS pokemon_name FROM pokemons p JOIN trainers t ON p.id=t.trainerID WHERE trainerID=303; + +* How many pokemon have a secondary type `Poison`? + +SELECT count(*) FROM pokemons p JOIN types t ON p.secondary_type=t.id WHERE t.name='Poison'; + + +* What are all the primary types and how many pokemon have that type? + +SELECT t.name,count(p.primary_type) + -> FROM types t + -> JOIN pokemons p + -> ON p.primary_type = t.id + -> GROUP BY t.name; + +* How many pokemon at level 100 does each trainer with at least one level 100 pokemone have? (Hint: your query should not display a trainer) + SELECT COUNT(pokemon_id) + -> FROM pokemon_trainer + -> WHERE pokelevel = 100 + -> GROUP BY trainerID + -> HAVING COUNT(pokelevel)>1; + + + * How many pokemon only belong to one trainer and no other? diff --git a/part 4.rtf b/part 4.rtf deleted file mode 100644 index 82f7a70..0000000 --- a/part 4.rtf +++ /dev/null @@ -1,30 +0,0 @@ -{\rtf1\ansi\ansicpg1252\cocoartf2580 -\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Menlo-Regular;} -{\colortbl;\red255\green255\blue255;\red0\green0\blue0;} -{\*\expandedcolortbl;;\csgray\c0;} -\margl1440\margr1440\vieww11520\viewh8400\viewkind0 -\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 - -\f0\fs24 \cf0 ### Part 4: Final Report\ -\ -Directions: Write a query that returns the following collumns:\ -\ -| Pokemon Name | Trainer Name | Level | Primary Type | Secondary Type |\ -|:------------:|:------------:|:-----:|:------------:|:--------------:|\ -| Pokemon's name| Trainer's name| Current Level| Primary Type Name| Secondary Type Name|\ -\ -Sort the data by finding out which trainer has the strongest pokemon so that this will act as a ranking of strongest to weakest trainer. You may interpret strongest in whatever way you want, but you will have to explain your decision.\ -\ -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0 - -\f1\fs22 \cf2 \CocoaLigature0 SELECT pokemons_name, trainers_name, current_level, primary_type_name, types.name AS secondary_type_name\ -FROM (select pokemons.name as pokemons_name, trainers.trainername as trainers_name, pokemon_trainer.pokelevel as current_level, types.name as primary_type_name, pokemons.secondary_type as secondary_type_id\ - -> FROM pokemons\ - -> JOIN pokemon_trainer ON pokemon_trainer.pokemon_id = pokemons.id\ - -> JOIN trainers on trainers.trainerid = pokemon_trainer.trainerid\ - -> JOIN types on types.id = pokemons.primary_type) table_1\ - -> JOIN types on types.id = secondary_type_id\ - -> ORDER BY current_level desc\ - -> \ - -> ;\ -} \ No newline at end of file diff --git a/part 4.txt b/part 4.txt new file mode 100644 index 0000000..fe74076 --- /dev/null +++ b/part 4.txt @@ -0,0 +1,18 @@ + Part 4: Final Report + +Directions: Write a query that returns the following collumns: + +| Pokemon Name | Trainer Name | Level | Primary Type | Secondary Type | +|:------------:|:------------:|:-----:|:------------:|:--------------:| +| Pokemon's name| Trainer's name| Current Level| Primary Type Name| Secondary Type Name| + +Sort the data by finding out which trainer has the strongest pokemon so that this will act as a ranking of strongest to weakest trainer. You may interpret strongest in whatever way you want, but you will have to explain your decision. + +SELECT pokemons_name, trainers_name, current_level, primary_type_name, types.name AS secondary_type_name +FROM (select pokemons.name as pokemons_name, trainers.trainername as trainers_name, pokemon_trainer.pokelevel as current_level, types.name as primary_type_name, pokemons.secondary_type as secondary_type_id + -> FROM pokemons + -> JOIN pokemon_trainer ON pokemon_trainer.pokemon_id = pokemons.id + -> JOIN trainers on trainers.trainerid = pokemon_trainer.trainerid + -> JOIN types on types.id = pokemons.primary_type) table_1 + -> JOIN types on types.id = secondary_type_id + -> ORDER BY current_level desc