diff --git a/Resources/scripts/data/gen8/ability_names.py b/Resources/scripts/data/gen8/ability_names.py new file mode 100644 index 00000000..c15dc469 --- /dev/null +++ b/Resources/scripts/data/gen8/ability_names.py @@ -0,0 +1,65 @@ +import csv +import os +from read_swsh import TextFile + +# data_path contains the countents of the `message` folder found in sword/shield's romfs:/bin/ +if __name__ == "__main__": + path = os.path.abspath(os.path.dirname(__file__)) + data_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "..", "data") + csv_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "pokedex", "data", "csv") + + languages = { + "JPN": 1, + "Korean": 3, + "Trad_Chinese": 4, + "French": 5, + "German": 6, + "Spanish": 7, + "Italian": 8, + "English": 9, + "JPN_KANJI": 11, + "Simp_Chinese": 12, + } + + header = ["ability_id", "local_language_id", "name"] + entries = [] + + # conquest abilities + with open(os.path.join(csv_path, "ability_names.csv"), "r", encoding="utf-8", newline="") as csv_file: + reader = csv.reader(csv_file, delimiter=",") + for row in reader: + if row[0].isnumeric() and int(row[0]) > 10000: + entries.append([int(row[0]), int(row[1]), row[2]]) + + with open(os.path.join(csv_path, "ability_names.csv"), "w", encoding="utf-8", newline="") as csv_file: + writer = csv.writer(csv_file, delimiter=",", lineterminator="\n") + for language_dir, language_id in languages.items(): + try: + # Parse through the .dat and .tbl + textFile = TextFile( + os.path.join(data_path, language_dir, "common", "tokusei.dat"), + os.path.join(data_path, language_dir, "common", "tokusei.tbl"), + ) + dictionary = textFile.GetDict() + except UserWarning as error: + print(error) + + try: + if len(dictionary) == 0: + raise UserWarning("Error: the files returned no data") + + # Loop through the text file's dictionary and append the parsed data into the list + for label, text in dictionary.items(): + id = int(label[0].split("_")[1]) + if id == 0: + continue + entries.append([id, language_id, text]) + + except UserWarning as error: + print(error) + + # Sort the list based on species id + writer.writerow(header) + entries.sort() + writer.writerows(entries) + print("Done") diff --git a/Resources/scripts/data/gen8/move_names.py b/Resources/scripts/data/gen8/move_names.py new file mode 100644 index 00000000..e56fbe73 --- /dev/null +++ b/Resources/scripts/data/gen8/move_names.py @@ -0,0 +1,65 @@ +import csv +import os +from read_swsh import TextFile + +# data_path contains the countents of the `message` folder found in sword/shield's romfs:/bin/ +if __name__ == "__main__": + path = os.path.abspath(os.path.dirname(__file__)) + data_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "..", "data") + csv_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "..", "..", "pokedex", "data", "csv") + + languages = { + "JPN": 1, + "Korean": 3, + "Trad_Chinese": 4, + "French": 5, + "German": 6, + "Spanish": 7, + "Italian": 8, + "English": 9, + "JPN_KANJI": 11, + "Simp_Chinese": 12, + } + + header = ["move_id", "local_language_id", "name"] + entries = [] + + # shadow moves + with open(os.path.join(csv_path, "move_names.csv"), "r", encoding="utf-8", newline="") as csv_file: + reader = csv.reader(csv_file, delimiter=",") + for row in reader: + if row[0].isnumeric() and int(row[0]) > 10000: + entries.append([int(row[0]), int(row[1]), row[2]]) + + with open(os.path.join(csv_path, "move_names.csv"), "w", encoding="utf-8", newline="") as csv_file: + writer = csv.writer(csv_file, delimiter=",", lineterminator="\n") + for language_dir, language_id in languages.items(): + try: + # Parse through the .dat and .tbl + textFile = TextFile( + os.path.join(data_path, language_dir, "common", "wazaname.dat"), + os.path.join(data_path, language_dir, "common", "wazaname.tbl"), + ) + dictionary = textFile.GetDict() + except UserWarning as error: + print(error) + + try: + if len(dictionary) == 0: + raise UserWarning("Error: the files returned no data") + + # Loop through the text file's dictionary and append the parsed data into the list + for label, text in dictionary.items(): + id = int(label[0].split("_")[1]) + if id == 0: + continue + entries.append([id, language_id, text.strip("\r")]) + + except UserWarning as error: + print(error) + + # Sort the list based on species id + writer.writerow(header) + entries.sort() + writer.writerows(entries) + print("Done") diff --git a/Resources/scripts/data/gen8/read_swsh.py b/Resources/scripts/data/gen8/read_swsh.py new file mode 100644 index 00000000..acb134ac --- /dev/null +++ b/Resources/scripts/data/gen8/read_swsh.py @@ -0,0 +1,214 @@ +import copy +import os +import struct +import sys + +class TextLine(): + offset = None + length = None + +class TextFile(): + def __init__(this, path1, path2): + this.__dictEntries = {} + this.__magic = 0x42544841 + this.__KEY_BASE = 0x7C89 + this.__KEY_ADVANCE = 0x2983 + this.__KEY_VARIABLE = 0x0010 + this.__KEY_TERMINATOR = 0x0000 + + # Load dex labels + if (os.path.splitext(path1)[1] == ".tbl"): + this.__OpenTbl(path1) + elif (os.path.splitext(path2)[1] == ".tbl"): + this.__OpenTbl(path2) + else: + raise UserWarning("Error: a .tbl was not given") + + # Load dex entries + if (os.path.splitext(path1)[1] == ".dat"): + this.__OpenDat(path1) + elif (os.path.splitext(path2)[1] == ".dat"): + this.__OpenDat(path2) + else: + raise UserWarning("Error: a .dat was not given") + + # The table has 1 more entry than the dat to show when the table ends + if (len(this.__labels) == len(this.__lines) + 1): + for i in range(0, len(this.__lines)): + this.__dictEntries[this.__labels[i]] = this.__lines[i] + + @property + def __TextSections(this): + """(2 bytes) Gets the number of text sections""" + return struct.unpack_from("> 8) % 256) + # Bit-shift and OR key, then cast to 16-bits (otherwise things break) + key = (key << 3 | key >> 13) % 2**16 + + return result + + def __GetLineString(this, data): + """Turns the given list of bytes into a finished string""" + if (data is None): + return None + + string = "" + i = 0 + while (i < len(data)): + # Cast 2 bytes to figure out what to do next + value = struct.unpack_from(" 1 and "[VAR]" not in flavor_text): + species = int(label[0][14:17]) + entriesList.append([species, version, language, flavor_text]) + + # Append a duplicate entry for Let's Go Eevee (both games use the same table) + if (dupe): + entriesList.append([species, 32, language, flavor_text]) + + except UserWarning as error: + print(error) + except Exception as error: + print(error) + + with open(path + "\\pokemon_species_flavor_text.csv", "r", encoding = "utf-8", newline = "") as fPoke: + reader = csv.reader(fPoke, delimiter = ",") + + currentEntries = [] + # Get first line (info on what each column represents) + header = next(reader) + for row in reader: + # species_id, version_id, language_id, flavor_text + row = [int(row[0]), int(row[1]), int(row[2]), row[3]] + entriesList.append(row) + + # Sort the list based on species id + writer.writerow(header) + entriesList.sort() + writer.writerows(entriesList) + print("Done") \ No newline at end of file diff --git a/Resources/scripts/data/scraper_go/data/new_abilities.txt b/Resources/scripts/data/scraper_go/data/new_abilities.txt new file mode 100644 index 00000000..69269bf3 --- /dev/null +++ b/Resources/scripts/data/scraper_go/data/new_abilities.txt @@ -0,0 +1,29 @@ +Ball Fetch (Ability) +Cotton Down (Ability) +Dauntless Shield (Ability) +Dragon's Maw (Ability) +Gorilla Tactics (Ability) +Gulp Missile (Ability) +Hunger Switch (Ability) +Ice Face (Ability) +Ice Scales (Ability) +Intrepid Sword (Ability) +Libero (Ability) +Mimicry (Ability) +Mirror Armor (Ability) +Neutralizing Gas (Ability) +Pastel Veil (Ability) +Perish Body (Ability) +Power Spot (Ability) +Propeller Tail (Ability) +Punk Rock (Ability) +Quick Draw (Ability) +Ripen (Ability) +Sand Spit (Ability) +Screen Cleaner (Ability) +Stalwart (Ability) +Steam Engine (Ability) +Steely Spirit (Ability) +Transistor (Ability) +Unseen Fist (Ability) +Wandering Spirit (Ability) \ No newline at end of file diff --git a/Resources/scripts/data/scraper_go/data/new_moves.txt b/Resources/scripts/data/scraper_go/data/new_moves.txt new file mode 100644 index 00000000..68bb1ab4 --- /dev/null +++ b/Resources/scripts/data/scraper_go/data/new_moves.txt @@ -0,0 +1,114 @@ +Apple Acid (move) +Aura Wheel (move) +Behemoth Bash (move) +Behemoth Blade (move) +Body Press (move) +Bolt Beak (move) +Branch Poke (move) +Breaking Swipe (move) +Burning Jealousy (move) +Clangorous Soul (move) +Coaching (move) +Corrosive Gas (move) +Court Change (move) +Decorate (move) +Dragon Darts (move) +Dragon Energy (move) +Drum Beating (move) +Dual Wingbeat (move) +Dynamax Cannon (move) +Eternabeam (move) +Expanding Force (move) +False Surrender (move) +Fiery Wrath (move) +Fishious Rend (move) +Flip Turn (move) +Freezing Glare (move) +G-Max Befuddle (move) +G-Max Cannonade (move) +G-Max Centiferno (move) +G-Max Chi Strike (move) +G-Max Cuddle (move) +G-Max Depletion (move) +G-Max Drum Solo (move) +G-Max Finale (move) +G-Max Fireball (move) +G-Max Foam Burst (move) +G-Max Gold Rush (move) +G-Max Gravitas (move) +G-Max Hydrosnipe (move) +G-Max Malodor (move) +G-Max Meltdown (move) +G-Max One Blow (move) +G-Max Rapid Flow (move) +G-Max Replenish (move) +G-Max Resonance (move) +G-Max Sandblast (move) +G-Max Smite (move) +G-Max Snooze (move) +G-Max Steelsurge (move) +G-Max Stonesurge (move) +G-Max Stun Shock (move) +G-Max Sweetness (move) +G-Max Tartness (move) +G-Max Terror (move) +G-Max Vine Lash (move) +G-Max Volcalith (move) +G-Max Volt Crash (move) +G-Max Wildfire (move) +G-Max Wind Rage (move) +Grassy Glide (move) +Grav Apple (move) +Jaw Lock (move) +Jungle Healing (move) +Lash Out (move) +Life Dew (move) +Magic Powder (move) +Max Airstream (move) +Max Darkness (move) +Max Flare (move) +Max Flutterby (move) +Max Geyser (move) +Max Guard (move) +Max Hailstorm (move) +Max Knuckle (move) +Max Lightning (move) +Max Mindstorm (move) +Max Ooze (move) +Max Overgrowth (move) +Max Phantasm (move) +Max Quake (move) +Max Rockfall (move) +Max Starfall (move) +Max Steelspike (move) +Max Strike (move) +Max Wyrmwind (move) +Meteor Assault (move) +Meteor Beam (move) +Misty Explosion (move) +No Retreat (move) +Obstruct (move) +Octolock (move) +Overdrive (move) +Poltergeist (move) +Pyro Ball (move) +Rising Voltage (move) +Scale Shot (move) +Scorching Sands (move) +Shell Side Arm (move) +Skitter Smack (move) +Snap Trap (move) +Snipe Shot (move) +Spirit Break (move) +Steel Beam (move) +Steel Roller (move) +Strange Steam (move) +Stuff Cheeks (move) +Surging Strikes (move) +Tar Shot (move) +Teatime (move) +Terrain Pulse (move) +Thunder Cage (move) +Thunderous Kick (move) +Triple Axel (move) +Wicked Blow (move) \ No newline at end of file diff --git a/Resources/scripts/data/scraper_go/data/new_pokemon.txt b/Resources/scripts/data/scraper_go/data/new_pokemon.txt new file mode 100644 index 00000000..7f1b76ad --- /dev/null +++ b/Resources/scripts/data/scraper_go/data/new_pokemon.txt @@ -0,0 +1,87 @@ +Alcremie_(Pok%C3%A9mon) +Appletun_(Pok%C3%A9mon) +Applin_(Pok%C3%A9mon) +Arctovish_(Pok%C3%A9mon) +Arctozolt_(Pok%C3%A9mon) +Arrokuda_(Pok%C3%A9mon) +Barraskewda_(Pok%C3%A9mon) +Blipbug_(Pok%C3%A9mon) +Boltund_(Pok%C3%A9mon) +Calyrex_(Pok%C3%A9mon) +Carkol_(Pok%C3%A9mon) +Centiskorch_(Pok%C3%A9mon) +Chewtle_(Pok%C3%A9mon) +Cinderace_(Pok%C3%A9mon) +Clobbopus_(Pok%C3%A9mon) +Coalossal_(Pok%C3%A9mon) +Copperajah_(Pok%C3%A9mon) +Corviknight_(Pok%C3%A9mon) +Corvisquire_(Pok%C3%A9mon) +Cramorant_(Pok%C3%A9mon) +Cufant_(Pok%C3%A9mon) +Cursola_(Pok%C3%A9mon) +Dottler_(Pok%C3%A9mon) +Dracovish_(Pok%C3%A9mon) +Dracozolt_(Pok%C3%A9mon) +Dragapult_(Pok%C3%A9mon) +Drakloak_(Pok%C3%A9mon) +Drednaw_(Pok%C3%A9mon) +Dreepy_(Pok%C3%A9mon) +Drizzile_(Pok%C3%A9mon) +Dubwool_(Pok%C3%A9mon) +Duraludon_(Pok%C3%A9mon) +Eiscue_(Pok%C3%A9mon) +Eldegoss_(Pok%C3%A9mon) +Eternatus_(Pok%C3%A9mon) +Falinks_(Pok%C3%A9mon) +Flapple_(Pok%C3%A9mon) +Frosmoth_(Pok%C3%A9mon) +Gossifleur_(Pok%C3%A9mon) +Grapploct_(Pok%C3%A9mon) +Greedent_(Pok%C3%A9mon) +Grimmsnarl_(Pok%C3%A9mon) +Grookey_(Pok%C3%A9mon) +Hatenna_(Pok%C3%A9mon) +Hatterene_(Pok%C3%A9mon) +Hattrem_(Pok%C3%A9mon) +Impidimp_(Pok%C3%A9mon) +Indeedee_(Pok%C3%A9mon) +Inteleon_(Pok%C3%A9mon) +Kubfu_(Pok%C3%A9mon) +Milcery_(Pok%C3%A9mon) +Morgrem_(Pok%C3%A9mon) +Morpeko_(Pok%C3%A9mon) +Mr._Rime_(Pok%C3%A9mon) +Nickit_(Pok%C3%A9mon) +Obstagoon_(Pok%C3%A9mon) +Orbeetle_(Pok%C3%A9mon) +Perrserker_(Pok%C3%A9mon) +Pincurchin_(Pok%C3%A9mon) +Polteageist_(Pok%C3%A9mon) +Raboot_(Pok%C3%A9mon) +Regidrago_(Pok%C3%A9mon) +Regieleki_(Pok%C3%A9mon) +Rillaboom_(Pok%C3%A9mon) +Rolycoly_(Pok%C3%A9mon) +Rookidee_(Pok%C3%A9mon) +Runerigus_(Pok%C3%A9mon) +Sandaconda_(Pok%C3%A9mon) +Scorbunny_(Pok%C3%A9mon) +Silicobra_(Pok%C3%A9mon) +Sinistea_(Pok%C3%A9mon) +Sirfetch%27d_(Pok%C3%A9mon) +Sizzlipede_(Pok%C3%A9mon) +Skwovet_(Pok%C3%A9mon) +Snom_(Pok%C3%A9mon) +Sobble_(Pok%C3%A9mon) +Stonjourner_(Pok%C3%A9mon) +Thievul_(Pok%C3%A9mon) +Thwackey_(Pok%C3%A9mon) +Toxel_(Pok%C3%A9mon) +Toxtricity_(Pok%C3%A9mon) +Urshifu_(Pok%C3%A9mon) +Wooloo_(Pok%C3%A9mon) +Yamper_(Pok%C3%A9mon) +Zacian_(Pok%C3%A9mon) +Zamazenta_(Pok%C3%A9mon) +Zarude_(Pok%C3%A9mon) \ No newline at end of file diff --git a/Resources/scripts/data/scraper_go/data/pokemon.csv b/Resources/scripts/data/scraper_go/data/pokemon.csv new file mode 100644 index 00000000..c9eb367a --- /dev/null +++ b/Resources/scripts/data/scraper_go/data/pokemon.csv @@ -0,0 +1,965 @@ +id,identifier,species_id,height,weight,base_experience,order,is_default +1,bulbasaur,1,7,69,64,1,1 +2,ivysaur,2,10,130,142,2,1 +3,venusaur,3,20,1000,236,3,1 +4,charmander,4,6,85,62,5,1 +5,charmeleon,5,11,190,142,6,1 +6,charizard,6,17,905,240,7,1 +7,squirtle,7,5,90,63,10,1 +8,wartortle,8,10,225,142,11,1 +9,blastoise,9,16,855,239,12,1 +10,caterpie,10,3,29,39,14,1 +11,metapod,11,7,99,72,15,1 +12,butterfree,12,11,320,178,16,1 +13,weedle,13,3,32,39,17,1 +14,kakuna,14,6,100,72,18,1 +15,beedrill,15,10,295,178,19,1 +16,pidgey,16,3,18,50,21,1 +17,pidgeotto,17,11,300,122,22,1 +18,pidgeot,18,15,395,216,23,1 +19,rattata,19,3,35,51,25,1 +20,raticate,20,7,185,145,27,1 +21,spearow,21,3,20,52,30,1 +22,fearow,22,12,380,155,31,1 +23,ekans,23,20,69,58,32,1 +24,arbok,24,35,650,157,33,1 +25,pikachu,25,4,60,112,35,1 +26,raichu,26,8,300,218,49,1 +27,sandshrew,27,6,120,60,51,1 +28,sandslash,28,10,295,158,53,1 +29,nidoran-f,29,4,70,55,55,1 +30,nidorina,30,8,200,128,56,1 +31,nidoqueen,31,13,600,227,57,1 +32,nidoran-m,32,5,90,55,58,1 +33,nidorino,33,9,195,128,59,1 +34,nidoking,34,14,620,227,60,1 +35,clefairy,35,6,75,113,62,1 +36,clefable,36,13,400,217,63,1 +37,vulpix,37,6,99,60,64,1 +38,ninetales,38,11,199,177,66,1 +39,jigglypuff,39,5,55,95,69,1 +40,wigglytuff,40,10,120,196,70,1 +41,zubat,41,8,75,49,71,1 +42,golbat,42,16,550,159,72,1 +43,oddish,43,5,54,64,74,1 +44,gloom,44,8,86,138,75,1 +45,vileplume,45,12,186,221,76,1 +46,paras,46,3,54,57,78,1 +47,parasect,47,10,295,142,79,1 +48,venonat,48,10,300,61,80,1 +49,venomoth,49,15,125,158,81,1 +50,diglett,50,2,8,53,82,1 +51,dugtrio,51,7,333,149,84,1 +52,meowth,52,4,42,58,86,1 +53,persian,53,10,320,154,88,1 +54,psyduck,54,8,196,64,90,1 +55,golduck,55,17,766,175,91,1 +56,mankey,56,5,280,61,92,1 +57,primeape,57,10,320,159,93,1 +58,growlithe,58,7,190,70,94,1 +59,arcanine,59,19,1550,194,95,1 +60,poliwag,60,6,124,60,96,1 +61,poliwhirl,61,10,200,135,97,1 +62,poliwrath,62,13,540,230,98,1 +63,abra,63,9,195,62,100,1 +64,kadabra,64,13,565,140,101,1 +65,alakazam,65,15,480,225,102,1 +66,machop,66,8,195,61,104,1 +67,machoke,67,15,705,142,105,1 +68,machamp,68,16,1300,227,106,1 +69,bellsprout,69,7,40,60,107,1 +70,weepinbell,70,10,64,137,108,1 +71,victreebel,71,17,155,221,109,1 +72,tentacool,72,9,455,67,110,1 +73,tentacruel,73,16,550,180,111,1 +74,geodude,74,4,200,60,112,1 +75,graveler,75,10,1050,137,114,1 +76,golem,76,14,3000,223,116,1 +77,ponyta,77,10,300,82,118,1 +78,rapidash,78,17,950,175,119,1 +79,slowpoke,79,12,360,63,120,1 +80,slowbro,80,16,785,172,121,1 +81,magnemite,81,3,60,65,124,1 +82,magneton,82,10,600,163,125,1 +83,farfetchd,83,8,150,132,127,1 +84,doduo,84,14,392,62,128,1 +85,dodrio,85,18,852,165,129,1 +86,seel,86,11,900,65,130,1 +87,dewgong,87,17,1200,166,131,1 +88,grimer,88,9,300,65,132,1 +89,muk,89,12,300,175,134,1 +90,shellder,90,3,40,61,136,1 +91,cloyster,91,15,1325,184,137,1 +92,gastly,92,13,1,62,138,1 +93,haunter,93,16,1,142,139,1 +94,gengar,94,15,405,225,140,1 +95,onix,95,88,2100,77,142,1 +96,drowzee,96,10,324,66,145,1 +97,hypno,97,16,756,169,146,1 +98,krabby,98,4,65,65,147,1 +99,kingler,99,13,600,166,148,1 +100,voltorb,100,5,104,66,149,1 +101,electrode,101,12,666,172,150,1 +102,exeggcute,102,4,25,65,151,1 +103,exeggutor,103,20,1200,186,152,1 +104,cubone,104,4,65,64,154,1 +105,marowak,105,10,450,149,155,1 +106,hitmonlee,106,15,498,159,159,1 +107,hitmonchan,107,14,502,159,160,1 +108,lickitung,108,12,655,77,162,1 +109,koffing,109,6,10,68,164,1 +110,weezing,110,12,95,172,165,1 +111,rhyhorn,111,10,1150,69,166,1 +112,rhydon,112,19,1200,170,167,1 +113,chansey,113,11,346,395,170,1 +114,tangela,114,10,350,87,172,1 +115,kangaskhan,115,22,800,172,174,1 +116,horsea,116,4,80,59,176,1 +117,seadra,117,12,250,154,177,1 +118,goldeen,118,6,150,64,179,1 +119,seaking,119,13,390,158,180,1 +120,staryu,120,8,345,68,181,1 +121,starmie,121,11,800,182,182,1 +122,mr-mime,122,13,545,161,184,1 +123,scyther,123,15,560,100,185,1 +124,jynx,124,14,406,159,189,1 +125,electabuzz,125,11,300,172,191,1 +126,magmar,126,13,445,173,194,1 +127,pinsir,127,15,550,175,196,1 +128,tauros,128,14,884,172,198,1 +129,magikarp,129,9,100,40,199,1 +130,gyarados,130,65,2350,189,200,1 +131,lapras,131,25,2200,187,202,1 +132,ditto,132,3,40,101,203,1 +133,eevee,133,3,65,65,204,1 +134,vaporeon,134,10,290,184,205,1 +135,jolteon,135,8,245,184,206,1 +136,flareon,136,9,250,184,207,1 +137,porygon,137,8,365,79,213,1 +138,omanyte,138,4,75,71,216,1 +139,omastar,139,10,350,173,217,1 +140,kabuto,140,5,115,71,218,1 +141,kabutops,141,13,405,173,219,1 +142,aerodactyl,142,18,590,180,220,1 +143,snorlax,143,21,4600,189,223,1 +144,articuno,144,17,554,261,224,1 +145,zapdos,145,16,526,261,225,1 +146,moltres,146,20,600,261,226,1 +147,dratini,147,18,33,60,227,1 +148,dragonair,148,40,165,147,228,1 +149,dragonite,149,22,2100,270,229,1 +150,mewtwo,150,20,1220,306,230,1 +151,mew,151,4,40,270,233,1 +152,chikorita,152,9,64,64,234,1 +153,bayleef,153,12,158,142,235,1 +154,meganium,154,18,1005,236,236,1 +155,cyndaquil,155,5,79,62,237,1 +156,quilava,156,9,190,142,238,1 +157,typhlosion,157,17,795,240,239,1 +158,totodile,158,6,95,63,240,1 +159,croconaw,159,11,250,142,241,1 +160,feraligatr,160,23,888,239,242,1 +161,sentret,161,8,60,43,243,1 +162,furret,162,18,325,145,244,1 +163,hoothoot,163,7,212,52,245,1 +164,noctowl,164,16,408,158,246,1 +165,ledyba,165,10,108,53,247,1 +166,ledian,166,14,356,137,248,1 +167,spinarak,167,5,85,50,249,1 +168,ariados,168,11,335,140,250,1 +169,crobat,169,18,750,241,73,1 +170,chinchou,170,5,120,66,251,1 +171,lanturn,171,12,225,161,252,1 +172,pichu,172,3,20,41,34,1 +173,cleffa,173,3,30,44,61,1 +174,igglybuff,174,3,10,42,68,1 +175,togepi,175,3,15,49,253,1 +176,togetic,176,6,32,142,254,1 +177,natu,177,2,20,64,256,1 +178,xatu,178,15,150,165,257,1 +179,mareep,179,6,78,56,258,1 +180,flaaffy,180,8,133,128,259,1 +181,ampharos,181,14,615,230,260,1 +182,bellossom,182,4,58,221,77,1 +183,marill,183,4,85,88,263,1 +184,azumarill,184,8,285,189,264,1 +185,sudowoodo,185,12,380,144,266,1 +186,politoed,186,11,339,225,99,1 +187,hoppip,187,4,5,50,267,1 +188,skiploom,188,6,10,119,268,1 +189,jumpluff,189,8,30,207,269,1 +190,aipom,190,8,115,72,270,1 +191,sunkern,191,3,18,36,272,1 +192,sunflora,192,8,85,149,273,1 +193,yanma,193,12,380,78,274,1 +194,wooper,194,4,85,42,276,1 +195,quagsire,195,14,750,151,277,1 +196,espeon,196,9,265,184,208,1 +197,umbreon,197,10,270,184,209,1 +198,murkrow,198,5,21,81,278,1 +199,slowking,199,20,795,172,123,1 +200,misdreavus,200,7,10,87,280,1 +201,unown,201,5,50,118,282,1 +202,wobbuffet,202,13,285,142,284,1 +203,girafarig,203,15,415,159,285,1 +204,pineco,204,6,72,58,286,1 +205,forretress,205,12,1258,163,287,1 +206,dunsparce,206,15,140,145,288,1 +207,gligar,207,11,648,86,289,1 +208,steelix,208,92,4000,179,143,1 +209,snubbull,209,6,78,60,291,1 +210,granbull,210,14,487,158,292,1 +211,qwilfish,211,5,39,88,293,1 +212,scizor,212,18,1180,175,186,1 +213,shuckle,213,6,205,177,294,1 +214,heracross,214,15,540,175,295,1 +215,sneasel,215,9,280,86,297,1 +216,teddiursa,216,6,88,66,299,1 +217,ursaring,217,18,1258,175,300,1 +218,slugma,218,7,350,50,301,1 +219,magcargo,219,8,550,151,302,1 +220,swinub,220,4,65,50,303,1 +221,piloswine,221,11,558,158,304,1 +222,corsola,222,6,50,144,306,1 +223,remoraid,223,6,120,60,307,1 +224,octillery,224,9,285,168,308,1 +225,delibird,225,9,160,116,309,1 +226,mantine,226,21,2200,170,311,1 +227,skarmory,227,17,505,163,312,1 +228,houndour,228,6,108,66,313,1 +229,houndoom,229,14,350,175,314,1 +230,kingdra,230,18,1520,243,178,1 +231,phanpy,231,5,335,66,316,1 +232,donphan,232,11,1200,175,317,1 +233,porygon2,233,6,325,180,214,1 +234,stantler,234,14,712,163,318,1 +235,smeargle,235,12,580,88,319,1 +236,tyrogue,236,7,210,42,158,1 +237,hitmontop,237,14,480,159,161,1 +238,smoochum,238,4,60,61,188,1 +239,elekid,239,6,235,72,190,1 +240,magby,240,7,214,73,193,1 +241,miltank,241,12,755,172,320,1 +242,blissey,242,15,468,608,171,1 +243,raikou,243,19,1780,261,321,1 +244,entei,244,21,1980,261,322,1 +245,suicune,245,20,1870,261,323,1 +246,larvitar,246,6,720,60,324,1 +247,pupitar,247,12,1520,144,325,1 +248,tyranitar,248,20,2020,270,326,1 +249,lugia,249,52,2160,306,328,1 +250,ho-oh,250,38,1990,306,329,1 +251,celebi,251,6,50,270,330,1 +252,treecko,252,5,50,62,331,1 +253,grovyle,253,9,216,142,332,1 +254,sceptile,254,17,522,239,333,1 +255,torchic,255,4,25,62,335,1 +256,combusken,256,9,195,142,336,1 +257,blaziken,257,19,520,239,337,1 +258,mudkip,258,4,76,62,339,1 +259,marshtomp,259,7,280,142,340,1 +260,swampert,260,15,819,241,341,1 +261,poochyena,261,5,136,56,343,1 +262,mightyena,262,10,370,147,344,1 +263,zigzagoon,263,4,175,56,345,1 +264,linoone,264,5,325,147,346,1 +265,wurmple,265,3,36,56,347,1 +266,silcoon,266,6,100,72,348,1 +267,beautifly,267,10,284,178,349,1 +268,cascoon,268,7,115,72,350,1 +269,dustox,269,12,316,173,351,1 +270,lotad,270,5,26,44,352,1 +271,lombre,271,12,325,119,353,1 +272,ludicolo,272,15,550,216,354,1 +273,seedot,273,5,40,44,355,1 +274,nuzleaf,274,10,280,119,356,1 +275,shiftry,275,13,596,216,357,1 +276,taillow,276,3,23,54,358,1 +277,swellow,277,7,198,159,359,1 +278,wingull,278,6,95,54,360,1 +279,pelipper,279,12,280,154,361,1 +280,ralts,280,4,66,40,362,1 +281,kirlia,281,8,202,97,363,1 +282,gardevoir,282,16,484,233,364,1 +283,surskit,283,5,17,54,368,1 +284,masquerain,284,8,36,159,369,1 +285,shroomish,285,4,45,59,370,1 +286,breloom,286,12,392,161,371,1 +287,slakoth,287,8,240,56,372,1 +288,vigoroth,288,14,465,154,373,1 +289,slaking,289,20,1305,252,374,1 +290,nincada,290,5,55,53,375,1 +291,ninjask,291,8,120,160,376,1 +292,shedinja,292,8,12,83,377,1 +293,whismur,293,6,163,48,378,1 +294,loudred,294,10,405,126,379,1 +295,exploud,295,15,840,221,380,1 +296,makuhita,296,10,864,47,381,1 +297,hariyama,297,23,2538,166,382,1 +298,azurill,298,2,20,38,262,1 +299,nosepass,299,10,970,75,383,1 +300,skitty,300,6,110,52,385,1 +301,delcatty,301,11,326,140,386,1 +302,sableye,302,5,110,133,387,1 +303,mawile,303,6,115,133,389,1 +304,aron,304,4,600,66,391,1 +305,lairon,305,9,1200,151,392,1 +306,aggron,306,21,3600,239,393,1 +307,meditite,307,6,112,56,395,1 +308,medicham,308,13,315,144,396,1 +309,electrike,309,6,152,59,398,1 +310,manectric,310,15,402,166,399,1 +311,plusle,311,4,42,142,401,1 +312,minun,312,4,42,142,402,1 +313,volbeat,313,7,177,151,403,1 +314,illumise,314,6,177,151,404,1 +315,roselia,315,3,20,140,406,1 +316,gulpin,316,4,103,60,408,1 +317,swalot,317,17,800,163,409,1 +318,carvanha,318,8,208,61,410,1 +319,sharpedo,319,18,888,161,411,1 +320,wailmer,320,20,1300,80,413,1 +321,wailord,321,145,3980,175,414,1 +322,numel,322,7,240,61,415,1 +323,camerupt,323,19,2200,161,416,1 +324,torkoal,324,5,804,165,418,1 +325,spoink,325,7,306,66,419,1 +326,grumpig,326,9,715,165,420,1 +327,spinda,327,11,50,126,421,1 +328,trapinch,328,7,150,58,422,1 +329,vibrava,329,11,153,119,423,1 +330,flygon,330,20,820,234,424,1 +331,cacnea,331,4,513,67,425,1 +332,cacturne,332,13,774,166,426,1 +333,swablu,333,4,12,62,427,1 +334,altaria,334,11,206,172,428,1 +335,zangoose,335,13,403,160,430,1 +336,seviper,336,27,525,160,431,1 +337,lunatone,337,10,1680,161,432,1 +338,solrock,338,12,1540,161,433,1 +339,barboach,339,4,19,58,434,1 +340,whiscash,340,9,236,164,435,1 +341,corphish,341,6,115,62,436,1 +342,crawdaunt,342,11,328,164,437,1 +343,baltoy,343,5,215,60,438,1 +344,claydol,344,15,1080,175,439,1 +345,lileep,345,10,238,71,440,1 +346,cradily,346,15,604,173,441,1 +347,anorith,347,7,125,71,442,1 +348,armaldo,348,15,682,173,443,1 +349,feebas,349,6,74,40,444,1 +350,milotic,350,62,1620,189,445,1 +351,castform,351,3,8,147,446,1 +352,kecleon,352,10,220,154,450,1 +353,shuppet,353,6,23,59,451,1 +354,banette,354,11,125,159,452,1 +355,duskull,355,8,150,59,454,1 +356,dusclops,356,16,306,159,455,1 +357,tropius,357,20,1000,161,457,1 +358,chimecho,358,6,10,159,459,1 +359,absol,359,12,470,163,460,1 +360,wynaut,360,6,140,52,283,1 +361,snorunt,361,7,168,60,462,1 +362,glalie,362,15,2565,168,463,1 +363,spheal,363,8,395,58,466,1 +364,sealeo,364,11,876,144,467,1 +365,walrein,365,14,1506,239,468,1 +366,clamperl,366,4,525,69,469,1 +367,huntail,367,17,270,170,470,1 +368,gorebyss,368,18,226,170,471,1 +369,relicanth,369,10,234,170,472,1 +370,luvdisc,370,6,87,116,473,1 +371,bagon,371,6,421,60,474,1 +372,shelgon,372,11,1105,147,475,1 +373,salamence,373,15,1026,270,476,1 +374,beldum,374,6,952,60,478,1 +375,metang,375,12,2025,147,479,1 +376,metagross,376,16,5500,270,480,1 +377,regirock,377,17,2300,261,482,1 +378,regice,378,18,1750,261,483,1 +379,registeel,379,19,2050,261,484,1 +380,latias,380,14,400,270,485,1 +381,latios,381,20,600,270,487,1 +382,kyogre,382,45,3520,302,489,1 +383,groudon,383,35,9500,302,491,1 +384,rayquaza,384,70,2065,306,493,1 +385,jirachi,385,3,11,270,495,1 +386,deoxys-normal,386,17,608,270,496,1 +387,turtwig,387,4,102,64,500,1 +388,grotle,388,11,970,142,501,1 +389,torterra,389,22,3100,236,502,1 +390,chimchar,390,5,62,62,503,1 +391,monferno,391,9,220,142,504,1 +392,infernape,392,12,550,240,505,1 +393,piplup,393,4,52,63,506,1 +394,prinplup,394,8,230,142,507,1 +395,empoleon,395,17,845,239,508,1 +396,starly,396,3,20,49,509,1 +397,staravia,397,6,155,119,510,1 +398,staraptor,398,12,249,218,511,1 +399,bidoof,399,5,200,50,512,1 +400,bibarel,400,10,315,144,513,1 +401,kricketot,401,3,22,39,514,1 +402,kricketune,402,10,255,134,515,1 +403,shinx,403,5,95,53,516,1 +404,luxio,404,9,305,127,517,1 +405,luxray,405,14,420,235,518,1 +406,budew,406,2,12,56,405,1 +407,roserade,407,9,145,232,407,1 +408,cranidos,408,9,315,70,519,1 +409,rampardos,409,16,1025,173,520,1 +410,shieldon,410,5,570,70,521,1 +411,bastiodon,411,13,1495,173,522,1 +412,burmy,412,2,34,45,523,1 +413,wormadam-plant,413,5,65,148,524,1 +414,mothim,414,9,233,148,527,1 +415,combee,415,3,55,49,528,1 +416,vespiquen,416,12,385,166,529,1 +417,pachirisu,417,4,39,142,530,1 +418,buizel,418,7,295,66,531,1 +419,floatzel,419,11,335,173,532,1 +420,cherubi,420,4,33,55,533,1 +421,cherrim,421,5,93,158,534,1 +422,shellos,422,3,63,65,535,1 +423,gastrodon,423,9,299,166,536,1 +424,ambipom,424,12,203,169,271,1 +425,drifloon,425,4,12,70,537,1 +426,drifblim,426,12,150,174,538,1 +427,buneary,427,4,55,70,539,1 +428,lopunny,428,12,333,168,540,1 +429,mismagius,429,9,44,173,281,1 +430,honchkrow,430,9,273,177,279,1 +431,glameow,431,5,39,62,542,1 +432,purugly,432,10,438,158,543,1 +433,chingling,433,2,6,57,458,1 +434,stunky,434,4,192,66,544,1 +435,skuntank,435,10,380,168,545,1 +436,bronzor,436,5,605,60,546,1 +437,bronzong,437,13,1870,175,547,1 +438,bonsly,438,5,150,58,265,1 +439,mime-jr,439,6,130,62,183,1 +440,happiny,440,6,244,110,169,1 +441,chatot,441,5,19,144,548,1 +442,spiritomb,442,10,1080,170,549,1 +443,gible,443,7,205,60,550,1 +444,gabite,444,14,560,144,551,1 +445,garchomp,445,19,950,270,552,1 +446,munchlax,446,6,1050,78,222,1 +447,riolu,447,7,202,57,554,1 +448,lucario,448,12,540,184,555,1 +449,hippopotas,449,8,495,66,557,1 +450,hippowdon,450,20,3000,184,558,1 +451,skorupi,451,8,120,66,559,1 +452,drapion,452,13,615,175,560,1 +453,croagunk,453,7,230,60,561,1 +454,toxicroak,454,13,444,172,562,1 +455,carnivine,455,14,270,159,563,1 +456,finneon,456,4,70,66,564,1 +457,lumineon,457,12,240,161,565,1 +458,mantyke,458,10,650,69,310,1 +459,snover,459,10,505,67,566,1 +460,abomasnow,460,22,1355,173,567,1 +461,weavile,461,11,340,179,298,1 +462,magnezone,462,12,1800,241,126,1 +463,lickilicky,463,17,1400,180,163,1 +464,rhyperior,464,24,2828,241,168,1 +465,tangrowth,465,20,1286,187,173,1 +466,electivire,466,18,1386,243,192,1 +467,magmortar,467,16,680,243,195,1 +468,togekiss,468,15,380,245,255,1 +469,yanmega,469,19,515,180,275,1 +470,leafeon,470,10,255,184,210,1 +471,glaceon,471,8,259,184,211,1 +472,gliscor,472,20,425,179,290,1 +473,mamoswine,473,25,2910,239,305,1 +474,porygon-z,474,9,340,241,215,1 +475,gallade,475,16,520,233,366,1 +476,probopass,476,14,3400,184,384,1 +477,dusknoir,477,22,1066,236,456,1 +478,froslass,478,13,266,168,465,1 +479,rotom,479,3,3,154,569,1 +480,uxie,480,3,3,261,575,1 +481,mesprit,481,3,3,261,576,1 +482,azelf,482,3,3,261,577,1 +483,dialga,483,54,6830,306,578,1 +484,palkia,484,42,3360,306,579,1 +485,heatran,485,17,4300,270,580,1 +486,regigigas,486,37,4200,302,581,1 +487,giratina-altered,487,45,7500,306,582,1 +488,cresselia,488,15,856,270,584,1 +489,phione,489,4,31,216,585,1 +490,manaphy,490,3,14,270,586,1 +491,darkrai,491,15,505,270,587,1 +492,shaymin-land,492,2,21,270,588,1 +493,arceus,493,32,3200,324,590,1 +494,victini,494,4,40,270,591,1 +495,snivy,495,6,81,62,592,1 +496,servine,496,8,160,145,593,1 +497,serperior,497,33,630,238,594,1 +498,tepig,498,5,99,62,595,1 +499,pignite,499,10,555,146,596,1 +500,emboar,500,16,1500,238,597,1 +501,oshawott,501,5,59,62,598,1 +502,dewott,502,8,245,145,599,1 +503,samurott,503,15,946,238,600,1 +504,patrat,504,5,116,51,601,1 +505,watchog,505,11,270,147,602,1 +506,lillipup,506,4,41,55,603,1 +507,herdier,507,9,147,130,604,1 +508,stoutland,508,12,610,225,605,1 +509,purrloin,509,4,101,56,606,1 +510,liepard,510,11,375,156,607,1 +511,pansage,511,6,105,63,608,1 +512,simisage,512,11,305,174,609,1 +513,pansear,513,6,110,63,610,1 +514,simisear,514,10,280,174,611,1 +515,panpour,515,6,135,63,612,1 +516,simipour,516,10,290,174,613,1 +517,munna,517,6,233,58,614,1 +518,musharna,518,11,605,170,615,1 +519,pidove,519,3,21,53,616,1 +520,tranquill,520,6,150,125,617,1 +521,unfezant,521,12,290,220,618,1 +522,blitzle,522,8,298,59,619,1 +523,zebstrika,523,16,795,174,620,1 +524,roggenrola,524,4,180,56,621,1 +525,boldore,525,9,1020,137,622,1 +526,gigalith,526,17,2600,232,623,1 +527,woobat,527,4,21,65,624,1 +528,swoobat,528,9,105,149,625,1 +529,drilbur,529,3,85,66,626,1 +530,excadrill,530,7,404,178,627,1 +531,audino,531,11,310,390,628,1 +532,timburr,532,6,125,61,630,1 +533,gurdurr,533,12,400,142,631,1 +534,conkeldurr,534,14,870,227,632,1 +535,tympole,535,5,45,59,633,1 +536,palpitoad,536,8,170,134,634,1 +537,seismitoad,537,15,620,229,635,1 +538,throh,538,13,555,163,636,1 +539,sawk,539,14,510,163,637,1 +540,sewaddle,540,3,25,62,638,1 +541,swadloon,541,5,73,133,639,1 +542,leavanny,542,12,205,225,640,1 +543,venipede,543,4,53,52,641,1 +544,whirlipede,544,12,585,126,642,1 +545,scolipede,545,25,2005,218,643,1 +546,cottonee,546,3,6,56,644,1 +547,whimsicott,547,7,66,168,645,1 +548,petilil,548,5,66,56,646,1 +549,lilligant,549,11,163,168,647,1 +550,basculin-red-striped,550,10,180,161,648,1 +551,sandile,551,7,152,58,650,1 +552,krokorok,552,10,334,123,651,1 +553,krookodile,553,15,963,234,652,1 +554,darumaka,554,6,375,63,653,1 +555,darmanitan-standard,555,13,929,168,654,1 +556,maractus,556,10,280,161,656,1 +557,dwebble,557,3,145,65,657,1 +558,crustle,558,14,2000,170,658,1 +559,scraggy,559,6,118,70,659,1 +560,scrafty,560,11,300,171,660,1 +561,sigilyph,561,14,140,172,661,1 +562,yamask,562,5,15,61,662,1 +563,cofagrigus,563,17,765,169,663,1 +564,tirtouga,564,7,165,71,664,1 +565,carracosta,565,12,810,173,665,1 +566,archen,566,5,95,71,666,1 +567,archeops,567,14,320,177,667,1 +568,trubbish,568,6,310,66,668,1 +569,garbodor,569,19,1073,166,669,1 +570,zorua,570,7,125,66,670,1 +571,zoroark,571,16,811,179,671,1 +572,minccino,572,4,58,60,672,1 +573,cinccino,573,5,75,165,673,1 +574,gothita,574,4,58,58,674,1 +575,gothorita,575,7,180,137,675,1 +576,gothitelle,576,15,440,221,676,1 +577,solosis,577,3,10,58,677,1 +578,duosion,578,6,80,130,678,1 +579,reuniclus,579,10,201,221,679,1 +580,ducklett,580,5,55,61,680,1 +581,swanna,581,13,242,166,681,1 +582,vanillite,582,4,57,61,682,1 +583,vanillish,583,11,410,138,683,1 +584,vanilluxe,584,13,575,241,684,1 +585,deerling,585,6,195,67,685,1 +586,sawsbuck,586,19,925,166,686,1 +587,emolga,587,4,50,150,687,1 +588,karrablast,588,5,59,63,688,1 +589,escavalier,589,10,330,173,689,1 +590,foongus,590,2,10,59,690,1 +591,amoonguss,591,6,105,162,691,1 +592,frillish,592,12,330,67,692,1 +593,jellicent,593,22,1350,168,693,1 +594,alomomola,594,12,316,165,694,1 +595,joltik,595,1,6,64,695,1 +596,galvantula,596,8,143,165,696,1 +597,ferroseed,597,6,188,61,697,1 +598,ferrothorn,598,10,1100,171,698,1 +599,klink,599,3,210,60,699,1 +600,klang,600,6,510,154,700,1 +601,klinklang,601,6,810,234,701,1 +602,tynamo,602,2,3,55,702,1 +603,eelektrik,603,12,220,142,703,1 +604,eelektross,604,21,805,232,704,1 +605,elgyem,605,5,90,67,705,1 +606,beheeyem,606,10,345,170,706,1 +607,litwick,607,3,31,55,707,1 +608,lampent,608,6,130,130,708,1 +609,chandelure,609,10,343,234,709,1 +610,axew,610,6,180,64,710,1 +611,fraxure,611,10,360,144,711,1 +612,haxorus,612,18,1055,243,712,1 +613,cubchoo,613,5,85,61,713,1 +614,beartic,614,26,2600,177,714,1 +615,cryogonal,615,11,1480,180,715,1 +616,shelmet,616,4,77,61,716,1 +617,accelgor,617,8,253,173,717,1 +618,stunfisk,618,7,110,165,718,1 +619,mienfoo,619,9,200,70,719,1 +620,mienshao,620,14,355,179,720,1 +621,druddigon,621,16,1390,170,721,1 +622,golett,622,10,920,61,722,1 +623,golurk,623,28,3300,169,723,1 +624,pawniard,624,5,102,68,724,1 +625,bisharp,625,16,700,172,725,1 +626,bouffalant,626,16,946,172,726,1 +627,rufflet,627,5,105,70,727,1 +628,braviary,628,15,410,179,728,1 +629,vullaby,629,5,90,74,729,1 +630,mandibuzz,630,12,395,179,730,1 +631,heatmor,631,14,580,169,731,1 +632,durant,632,3,330,169,732,1 +633,deino,633,8,173,60,733,1 +634,zweilous,634,14,500,147,734,1 +635,hydreigon,635,18,1600,270,735,1 +636,larvesta,636,11,288,72,736,1 +637,volcarona,637,16,460,248,737,1 +638,cobalion,638,21,2500,261,738,1 +639,terrakion,639,19,2600,261,739,1 +640,virizion,640,20,2000,261,740,1 +641,tornadus-incarnate,641,15,630,261,741,1 +642,thundurus-incarnate,642,15,610,261,743,1 +643,reshiram,643,32,3300,306,745,1 +644,zekrom,644,29,3450,306,746,1 +645,landorus-incarnate,645,15,680,270,747,1 +646,kyurem,646,30,3250,297,749,1 +647,keldeo-ordinary,647,14,485,261,752,1 +648,meloetta-aria,648,6,65,270,754,1 +649,genesect,649,15,825,270,756,1 +650,chespin,650,4,90,63,757,1 +651,quilladin,651,7,290,142,758,1 +652,chesnaught,652,16,900,239,759,1 +653,fennekin,653,4,94,61,760,1 +654,braixen,654,10,145,143,761,1 +655,delphox,655,15,390,240,762,1 +656,froakie,656,3,70,63,763,1 +657,frogadier,657,6,109,142,764,1 +658,greninja,658,15,400,239,765,1 +659,bunnelby,659,4,50,47,768,1 +660,diggersby,660,10,424,148,769,1 +661,fletchling,661,3,17,56,770,1 +662,fletchinder,662,7,160,134,771,1 +663,talonflame,663,12,245,175,772,1 +664,scatterbug,664,3,25,40,773,1 +665,spewpa,665,3,84,75,774,1 +666,vivillon,666,12,170,185,775,1 +667,litleo,667,6,135,74,776,1 +668,pyroar,668,15,815,177,777,1 +669,flabebe,669,1,1,61,778,1 +670,floette,670,2,9,130,779,1 +671,florges,671,11,100,248,781,1 +672,skiddo,672,9,310,70,782,1 +673,gogoat,673,17,910,186,783,1 +674,pancham,674,6,80,70,784,1 +675,pangoro,675,21,1360,173,785,1 +676,furfrou,676,12,280,165,786,1 +677,espurr,677,3,35,71,787,1 +678,meowstic-male,678,6,85,163,788,1 +679,honedge,679,8,20,65,790,1 +680,doublade,680,8,45,157,791,1 +681,aegislash-shield,681,17,530,234,792,1 +682,spritzee,682,2,5,68,794,1 +683,aromatisse,683,8,155,162,795,1 +684,swirlix,684,4,35,68,796,1 +685,slurpuff,685,8,50,168,797,1 +686,inkay,686,4,35,58,798,1 +687,malamar,687,15,470,169,799,1 +688,binacle,688,5,310,61,800,1 +689,barbaracle,689,13,960,175,801,1 +690,skrelp,690,5,73,64,802,1 +691,dragalge,691,18,815,173,803,1 +692,clauncher,692,5,83,66,804,1 +693,clawitzer,693,13,353,100,805,1 +694,helioptile,694,5,60,58,806,1 +695,heliolisk,695,10,210,168,807,1 +696,tyrunt,696,8,260,72,808,1 +697,tyrantrum,697,25,2700,182,809,1 +698,amaura,698,13,252,72,810,1 +699,aurorus,699,27,2250,104,811,1 +700,sylveon,700,10,235,184,212,1 +701,hawlucha,701,8,215,175,812,1 +702,dedenne,702,2,22,151,813,1 +703,carbink,703,3,57,100,814,1 +704,goomy,704,3,28,60,815,1 +705,sliggoo,705,8,175,158,816,1 +706,goodra,706,20,1505,270,817,1 +707,klefki,707,2,30,165,818,1 +708,phantump,708,4,70,62,819,1 +709,trevenant,709,15,710,166,820,1 +710,pumpkaboo-average,710,4,50,67,821,1 +711,gourgeist-average,711,9,125,173,825,1 +712,bergmite,712,10,995,61,829,1 +713,avalugg,713,20,5050,180,830,1 +714,noibat,714,5,80,49,831,1 +715,noivern,715,15,850,187,832,1 +716,xerneas,716,30,2150,306,833,1 +717,yveltal,717,58,2030,306,834,1 +718,zygarde,718,50,3050,270,835,1 +719,diancie,719,7,88,270,839,1 +720,hoopa,720,5,90,270,841,1 +721,volcanion,721,17,1950,270,843,1 +722,rowlet,722,3,15,64,844,1 +723,dartrix,723,7,160,147,845,1 +724,decidueye,724,16,366,239,846,1 +725,litten,725,4,43,64,847,1 +726,torracat,726,7,250,147,848,1 +727,incineroar,727,18,830,239,849,1 +728,popplio,728,4,75,64,850,1 +729,brionne,729,6,175,147,851,1 +730,primarina,730,18,440,239,852,1 +731,pikipek,731,3,12,53,853,1 +732,trumbeak,732,6,148,124,854,1 +733,toucannon,733,11,260,218,855,1 +734,yungoos,734,4,60,51,856,1 +735,gumshoos,735,7,142,146,857,1 +736,grubbin,736,4,44,60,859,1 +737,charjabug,737,5,105,140,860,1 +738,vikavolt,738,15,450,225,861,1 +739,crabrawler,739,6,70,68,863,1 +740,crabominable,740,17,1800,167,864,1 +741,oricorio-baile,741,6,34,167,865,1 +742,cutiefly,742,1,2,61,869,1 +743,ribombee,743,2,5,162,870,1 +744,rockruff,744,5,92,56,872,1 +745,lycanroc-midday,745,8,250,170,874,1 +746,wishiwashi-solo,746,2,3,61,877,1 +747,mareanie,747,4,80,61,879,1 +748,toxapex,748,7,145,173,880,1 +749,mudbray,749,10,1100,77,881,1 +750,mudsdale,750,25,9200,175,882,1 +751,dewpider,751,3,40,54,883,1 +752,araquanid,752,18,820,159,884,1 +753,fomantis,753,3,15,50,886,1 +754,lurantis,754,9,185,168,887,1 +755,morelull,755,2,15,57,889,1 +756,shiinotic,756,10,115,142,890,1 +757,salandit,757,6,48,64,891,1 +758,salazzle,758,12,222,168,892,1 +759,stufful,759,5,68,68,894,1 +760,bewear,760,21,1350,175,895,1 +761,bounsweet,761,3,32,42,896,1 +762,steenee,762,7,82,102,897,1 +763,tsareena,763,12,214,230,898,1 +764,comfey,764,1,3,170,899,1 +765,oranguru,765,15,760,172,900,1 +766,passimian,766,20,828,172,901,1 +767,wimpod,767,5,120,46,902,1 +768,golisopod,768,20,1080,186,903,1 +769,sandygast,769,5,700,64,904,1 +770,palossand,770,13,2500,168,905,1 +771,pyukumuku,771,3,12,144,906,1 +772,type-null,772,19,1205,107,907,1 +773,silvally,773,23,1005,257,908,1 +774,minior-red-meteor,774,3,400,154,909,1 +775,komala,775,4,199,168,923,1 +776,turtonator,776,20,2120,170,924,1 +777,togedemaru,777,3,33,152,925,1 +778,mimikyu-disguised,778,2,7,167,927,1 +779,bruxish,779,9,190,166,931,1 +780,drampa,780,30,1850,170,932,1 +781,dhelmise,781,39,2100,181,933,1 +782,jangmo-o,782,6,297,60,934,1 +783,hakamo-o,783,12,470,147,935,1 +784,kommo-o,784,16,782,270,936,1 +785,tapu-koko,785,18,205,257,938,1 +786,tapu-lele,786,12,186,257,939,1 +787,tapu-bulu,787,19,455,257,940,1 +788,tapu-fini,788,13,212,257,941,1 +789,cosmog,789,2,1,40,942,1 +790,cosmoem,790,1,9999,140,943,1 +791,solgaleo,791,34,2300,306,944,1 +792,lunala,792,40,1200,306,945,1 +793,nihilego,793,12,555,257,946,1 +794,buzzwole,794,24,3336,257,947,1 +795,pheromosa,795,18,250,257,948,1 +796,xurkitree,796,38,1000,257,949,1 +797,celesteela,797,92,9999,257,950,1 +798,kartana,798,3,1,257,951,1 +799,guzzlord,799,55,8880,257,952,1 +800,necrozma,800,24,2300,270,953,1 +801,magearna,801,10,805,270,957,1 +802,marshadow,802,7,222,270,959,1 +803,poipole,803,6,18,189,960,1 +804,naganadel,804,36,1500,243,961,1 +805,stakataka,805,55,8200,257,962,1 +806,blacephalon,806,18,130,257,963,1 +807,zeraora,807,15,445,270,964,1 +10001,deoxys-attack,386,17,608,270,497,0 +10002,deoxys-defense,386,17,608,270,498,0 +10003,deoxys-speed,386,17,608,270,499,0 +10004,wormadam-sandy,413,5,65,148,525,0 +10005,wormadam-trash,413,5,65,148,526,0 +10006,shaymin-sky,492,4,52,270,589,0 +10007,giratina-origin,487,69,6500,306,583,0 +10008,rotom-heat,479,3,3,182,570,0 +10009,rotom-wash,479,3,3,182,571,0 +10010,rotom-frost,479,3,3,182,572,0 +10011,rotom-fan,479,3,3,182,573,0 +10012,rotom-mow,479,3,3,182,574,0 +10013,castform-sunny,351,3,8,147,447,0 +10014,castform-rainy,351,3,8,147,448,0 +10015,castform-snowy,351,3,8,147,449,0 +10016,basculin-blue-striped,550,10,180,161,649,0 +10017,darmanitan-zen,555,13,929,189,655,0 +10018,meloetta-pirouette,648,6,65,270,755,0 +10019,tornadus-therian,641,14,630,261,742,0 +10020,thundurus-therian,642,30,610,261,744,0 +10021,landorus-therian,645,13,680,270,748,0 +10022,kyurem-black,646,33,3250,315,751,0 +10023,kyurem-white,646,36,3250,315,750,0 +10024,keldeo-resolute,647,14,485,261,753,0 +10025,meowstic-female,678,6,85,163,789,0 +10026,aegislash-blade,681,17,530,234,793,0 +10027,pumpkaboo-small,710,3,35,67,822,0 +10028,pumpkaboo-large,710,5,75,67,823,0 +10029,pumpkaboo-super,710,8,150,67,824,0 +10030,gourgeist-small,711,7,95,173,826,0 +10031,gourgeist-large,711,11,140,173,827,0 +10032,gourgeist-super,711,17,390,173,828,0 +10033,venusaur-mega,3,24,1555,281,4,0 +10034,charizard-mega-x,6,17,1105,285,8,0 +10035,charizard-mega-y,6,17,1005,285,9,0 +10036,blastoise-mega,9,16,1011,284,13,0 +10037,alakazam-mega,65,12,480,270,103,0 +10038,gengar-mega,94,14,405,270,141,0 +10039,kangaskhan-mega,115,22,1000,207,175,0 +10040,pinsir-mega,127,17,590,210,197,0 +10041,gyarados-mega,130,65,3050,224,201,0 +10042,aerodactyl-mega,142,21,790,215,221,0 +10043,mewtwo-mega-x,150,23,1270,351,231,0 +10044,mewtwo-mega-y,150,15,330,351,232,0 +10045,ampharos-mega,181,14,615,275,261,0 +10046,scizor-mega,212,20,1250,210,187,0 +10047,heracross-mega,214,17,625,210,296,0 +10048,houndoom-mega,229,19,495,210,315,0 +10049,tyranitar-mega,248,25,2550,315,327,0 +10050,blaziken-mega,257,19,520,284,338,0 +10051,gardevoir-mega,282,16,484,278,365,0 +10052,mawile-mega,303,10,235,168,390,0 +10053,aggron-mega,306,22,3950,284,394,0 +10054,medicham-mega,308,13,315,179,397,0 +10055,manectric-mega,310,18,440,201,400,0 +10056,banette-mega,354,12,130,194,453,0 +10057,absol-mega,359,12,490,198,461,0 +10058,garchomp-mega,445,19,950,315,553,0 +10059,lucario-mega,448,13,575,219,556,0 +10060,abomasnow-mega,460,27,1850,208,568,0 +10061,floette-eternal,670,2,9,243,780,0 +10062,latias-mega,380,18,520,315,486,0 +10063,latios-mega,381,23,700,315,488,0 +10064,swampert-mega,260,19,1020,286,342,0 +10065,sceptile-mega,254,19,552,284,334,0 +10066,sableye-mega,302,5,1610,168,388,0 +10067,altaria-mega,334,15,206,207,429,0 +10068,gallade-mega,475,16,564,278,367,0 +10069,audino-mega,531,15,320,425,629,0 +10070,sharpedo-mega,319,25,1303,196,412,0 +10071,slowbro-mega,80,20,1200,207,122,0 +10072,steelix-mega,208,105,7400,214,144,0 +10073,pidgeot-mega,18,22,505,261,24,0 +10074,glalie-mega,362,21,3502,203,464,0 +10075,diancie-mega,719,11,278,315,840,0 +10076,metagross-mega,376,25,9429,315,481,0 +10077,kyogre-primal,382,98,4300,347,490,0 +10078,groudon-primal,383,50,9997,347,492,0 +10079,rayquaza-mega,384,108,3920,351,494,0 +10080,pikachu-rock-star,25,4,60,112,37,0 +10081,pikachu-belle,25,4,60,112,38,0 +10082,pikachu-pop-star,25,4,60,112,39,0 +10083,pikachu-phd,25,4,60,112,40,0 +10084,pikachu-libre,25,4,60,112,41,0 +10085,pikachu-cosplay,25,4,60,112,36,0 +10086,hoopa-unbound,720,65,4900,306,842,0 +10087,camerupt-mega,323,25,3205,196,417,0 +10088,lopunny-mega,428,13,283,203,541,0 +10089,salamence-mega,373,18,1126,315,477,0 +10090,beedrill-mega,15,14,405,223,20,0 +10091,rattata-alola,19,3,38,51,26,0 +10092,raticate-alola,20,7,255,145,28,0 +10093,raticate-totem-alola,20,14,1050,145,29,0 +10094,pikachu-original-cap,25,4,60,112,42,0 +10095,pikachu-hoenn-cap,25,4,60,112,43,0 +10096,pikachu-sinnoh-cap,25,4,60,112,44,0 +10097,pikachu-unova-cap,25,4,60,112,45,0 +10098,pikachu-kalos-cap,25,4,60,112,46,0 +10099,pikachu-alola-cap,25,4,60,112,47,0 +10100,raichu-alola,26,7,210,218,50,0 +10101,sandshrew-alola,27,7,400,60,52,0 +10102,sandslash-alola,28,12,550,158,54,0 +10103,vulpix-alola,37,6,99,60,65,0 +10104,ninetales-alola,38,11,199,177,67,0 +10105,diglett-alola,50,2,10,53,83,0 +10106,dugtrio-alola,51,7,666,149,85,0 +10107,meowth-alola,52,4,42,58,87,0 +10108,persian-alola,53,11,330,154,89,0 +10109,geodude-alola,74,4,203,60,113,0 +10110,graveler-alola,75,10,1100,137,115,0 +10111,golem-alola,76,17,3160,223,117,0 +10112,grimer-alola,88,7,420,65,133,0 +10113,muk-alola,89,10,520,175,135,0 +10114,exeggutor-alola,103,109,4156,186,153,0 +10115,marowak-alola,105,10,340,149,156,0 +10116,greninja-battle-bond,658,15,400,239,766,0 +10117,greninja-ash,658,15,400,288,767,0 +10118,zygarde-10,718,12,335,219,836,0 +10119,zygarde-50,718,50,3050,270,837,0 +10120,zygarde-complete,718,45,6100,319,838,0 +10121,gumshoos-totem,735,14,600,146,858,0 +10122,vikavolt-totem,738,26,1475,225,862,0 +10123,oricorio-pom-pom,741,6,34,167,866,0 +10124,oricorio-pau,741,6,34,167,867,0 +10125,oricorio-sensu,741,6,34,167,868,0 +10126,lycanroc-midnight,745,11,250,170,875,0 +10127,wishiwashi-school,746,82,786,217,878,0 +10128,lurantis-totem,754,15,580,168,888,0 +10129,salazzle-totem,758,21,810,168,893,0 +10130,minior-orange-meteor,774,3,400,154,910,0 +10131,minior-yellow-meteor,774,3,400,154,911,0 +10132,minior-green-meteor,774,3,400,154,912,0 +10133,minior-blue-meteor,774,3,400,154,913,0 +10134,minior-indigo-meteor,774,3,400,154,914,0 +10135,minior-violet-meteor,774,3,400,154,915,0 +10136,minior-red,774,3,3,175,916,0 +10137,minior-orange,774,3,3,175,917,0 +10138,minior-yellow,774,3,3,175,918,0 +10139,minior-green,774,3,3,175,919,0 +10140,minior-blue,774,3,3,175,920,0 +10141,minior-indigo,774,3,3,175,921,0 +10142,minior-violet,774,3,3,175,922,0 +10143,mimikyu-busted,778,2,7,167,928,0 +10144,mimikyu-totem-disguised,778,4,28,167,929,0 +10145,mimikyu-totem-busted,778,4,28,167,930,0 +10146,kommo-o-totem,784,24,2075,270,937,0 +10147,magearna-original,801,10,805,270,958,0 +10148,pikachu-partner-cap,25,4,60,112,48,0 +10149,marowak-totem,105,17,980,149,157,0 +10150,ribombee-totem,743,4,20,162,871,0 +10151,rockruff-own-tempo,744,5,92,56,873,0 +10152,lycanroc-dusk,745,8,250,170,876,0 +10153,araquanid-totem,752,31,2175,159,885,0 +10154,togedemaru-totem,777,6,130,152,926,0 +10155,necrozma-dusk,800,38,4600,306,954,0 +10156,necrozma-dawn,800,42,3500,306,955,0 +10157,necrozma-ultra,800,75,2300,339,956,0 diff --git a/Resources/scripts/data/scraper_go/data/pokemon_species.csv b/Resources/scripts/data/scraper_go/data/pokemon_species.csv new file mode 100644 index 00000000..7331b0b4 --- /dev/null +++ b/Resources/scripts/data/scraper_go/data/pokemon_species.csv @@ -0,0 +1,808 @@ +id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,shape_id,habitat_id,gender_rate,capture_rate,base_happiness,is_baby,hatch_counter,has_gender_differences,growth_rate_id,forms_switchable,is_legendary,is_mythical,order,conquest_order +1,bulbasaur,1,,1,5,8,3,1,45,70,0,20,0,4,0,0,0,1, +2,ivysaur,1,1,1,5,8,3,1,45,70,0,20,0,4,0,0,0,2, +3,venusaur,1,2,1,5,8,3,1,45,70,0,20,1,4,1,0,0,3, +4,charmander,1,,2,8,6,4,1,45,70,0,20,0,4,0,0,0,4,109 +5,charmeleon,1,4,2,8,6,4,1,45,70,0,20,0,4,0,0,0,5,110 +6,charizard,1,5,2,8,6,4,1,45,70,0,20,0,4,1,0,0,6,111 +7,squirtle,1,,3,2,6,9,1,45,70,0,20,0,4,0,0,0,7, +8,wartortle,1,7,3,2,6,9,1,45,70,0,20,0,4,0,0,0,8, +9,blastoise,1,8,3,2,6,9,1,45,70,0,20,0,4,1,0,0,9, +10,caterpie,1,,4,5,14,2,4,255,70,0,15,0,2,0,0,0,10, +11,metapod,1,10,4,5,2,2,4,120,70,0,15,0,2,0,0,0,11, +12,butterfree,1,11,4,9,13,2,4,45,70,0,15,1,2,0,0,0,12, +13,weedle,1,,5,3,14,2,4,255,70,0,15,0,2,0,0,0,13, +14,kakuna,1,13,5,10,2,2,4,120,70,0,15,0,2,0,0,0,14, +15,beedrill,1,14,5,10,13,2,4,45,70,0,15,0,2,1,0,0,15,177 +16,pidgey,1,,6,3,9,2,4,255,70,0,15,0,4,0,0,0,16, +17,pidgeotto,1,16,6,3,9,2,4,120,70,0,15,0,4,0,0,0,17, +18,pidgeot,1,17,6,3,9,2,4,45,70,0,15,0,4,1,0,0,18, +19,rattata,1,,7,7,8,3,4,255,70,0,15,1,2,0,0,0,19, +20,raticate,1,19,7,3,8,3,4,127,70,0,15,1,2,0,0,0,20, +21,spearow,1,,8,3,9,6,4,255,70,0,15,0,2,0,0,0,21, +22,fearow,1,21,8,3,9,6,4,90,70,0,15,0,2,0,0,0,22, +23,ekans,1,,9,7,2,3,4,255,70,0,20,0,2,0,0,0,23,54 +24,arbok,1,23,9,7,2,3,4,90,70,0,20,0,2,0,0,0,24,55 +25,pikachu,1,172,10,10,8,2,4,190,70,0,10,1,2,0,0,0,26,16 +26,raichu,1,25,10,10,6,2,4,75,70,0,10,1,2,0,0,0,27,17 +27,sandshrew,1,,11,10,6,6,4,255,70,0,20,0,2,0,0,0,28, +28,sandslash,1,27,11,10,6,6,4,90,70,0,20,0,2,0,0,0,29, +29,nidoran-f,1,,12,2,8,3,8,235,70,0,20,0,4,0,0,0,30, +30,nidorina,1,29,12,2,8,3,8,120,70,0,20,0,4,0,0,0,31, +31,nidoqueen,1,30,12,2,6,3,8,45,70,0,20,0,4,0,0,0,32, +32,nidoran-m,1,,13,7,8,3,0,235,70,0,20,0,4,0,0,0,33, +33,nidorino,1,32,13,7,8,3,0,120,70,0,20,0,4,0,0,0,34, +34,nidoking,1,33,13,7,6,3,0,45,70,0,20,0,4,0,0,0,35, +35,clefairy,1,173,14,6,6,4,6,150,140,0,10,0,3,0,0,0,37, +36,clefable,1,35,14,6,6,4,6,25,140,0,10,0,3,0,0,0,38, +37,vulpix,1,,15,3,8,3,6,190,70,0,20,0,2,0,0,0,39, +38,ninetales,1,37,15,10,8,3,6,75,70,0,20,0,2,0,0,0,40, +39,jigglypuff,1,174,16,6,12,3,6,170,70,0,10,0,3,0,0,0,42,21 +40,wigglytuff,1,39,16,6,12,3,6,50,70,0,10,0,3,0,0,0,43,22 +41,zubat,1,,17,7,9,1,4,255,70,0,15,1,2,0,0,0,44,23 +42,golbat,1,41,17,7,9,1,4,90,70,0,15,1,2,0,0,0,45,24 +43,oddish,1,,18,2,7,3,4,255,70,0,20,0,4,0,0,0,47, +44,gloom,1,43,18,2,12,3,4,120,70,0,20,1,4,0,0,0,48, +45,vileplume,1,44,18,8,12,3,4,45,70,0,20,1,4,0,0,0,49, +46,paras,1,,19,8,14,2,4,190,70,0,20,0,2,0,0,0,51, +47,parasect,1,46,19,8,14,2,4,75,70,0,20,0,2,0,0,0,52, +48,venonat,1,,20,7,12,2,4,190,70,0,20,0,2,0,0,0,53, +49,venomoth,1,48,20,7,13,2,4,75,70,0,20,0,2,0,0,0,54, +50,diglett,1,,21,3,5,1,4,255,70,0,20,0,2,0,0,0,55, +51,dugtrio,1,50,21,3,11,1,4,50,70,0,20,0,2,0,0,0,56, +52,meowth,1,,22,10,8,8,4,255,70,0,20,0,2,0,0,0,57,58 +53,persian,1,52,22,10,8,8,4,90,70,0,20,0,2,0,0,0,58,59 +54,psyduck,1,,23,10,6,9,4,190,70,0,20,0,2,0,0,0,59, +55,golduck,1,54,23,2,6,9,4,75,70,0,20,0,2,0,0,0,60, +56,mankey,1,,24,3,6,4,4,190,70,0,20,0,2,0,0,0,61, +57,primeape,1,56,24,3,6,4,4,75,70,0,20,0,2,0,0,0,62, +58,growlithe,1,,25,3,8,3,2,190,70,0,20,0,1,0,0,0,63, +59,arcanine,1,58,25,3,8,3,2,75,70,0,20,0,1,0,0,0,64, +60,poliwag,1,,26,2,7,9,4,255,70,0,20,0,4,0,0,0,65, +61,poliwhirl,1,60,26,2,12,9,4,120,70,0,20,0,4,0,0,0,66, +62,poliwrath,1,61,26,2,12,9,4,45,70,0,20,0,4,0,0,0,67, +63,abra,1,,27,3,6,8,2,200,70,0,20,0,4,0,0,0,69,127 +64,kadabra,1,63,27,3,6,8,2,100,70,0,20,1,4,0,0,0,70,128 +65,alakazam,1,64,27,3,12,8,2,50,70,0,20,1,4,1,0,0,71,129 +66,machop,1,,28,4,6,4,2,180,70,0,20,0,4,0,0,0,72,98 +67,machoke,1,66,28,4,12,4,2,90,70,0,20,0,4,0,0,0,73,99 +68,machamp,1,67,28,4,12,4,2,45,70,0,20,0,4,0,0,0,74,100 +69,bellsprout,1,,29,5,12,2,4,255,70,0,20,0,4,0,0,0,75, +70,weepinbell,1,69,29,5,5,2,4,120,70,0,20,0,4,0,0,0,76, +71,victreebel,1,70,29,5,5,2,4,45,70,0,20,0,4,0,0,0,77, +72,tentacool,1,,30,2,10,7,4,190,70,0,20,0,1,0,0,0,78, +73,tentacruel,1,72,30,2,10,7,4,60,70,0,20,0,1,0,0,0,79, +74,geodude,1,,31,3,4,4,4,255,70,0,15,0,4,0,0,0,80, +75,graveler,1,74,31,3,12,4,4,120,70,0,15,0,4,0,0,0,81, +76,golem,1,75,31,3,12,4,4,45,70,0,15,0,4,0,0,0,82, +77,ponyta,1,,32,10,8,3,4,190,70,0,20,0,2,0,0,0,83, +78,rapidash,1,77,32,10,8,3,4,60,70,0,20,0,2,0,0,0,84, +79,slowpoke,1,,33,6,8,9,4,190,70,0,20,0,2,0,0,0,85, +80,slowbro,1,79,33,6,6,9,4,75,70,0,20,0,2,1,0,0,86, +81,magnemite,1,,34,4,4,6,-1,190,70,0,20,0,2,0,0,0,88, +82,magneton,1,81,34,4,11,6,-1,60,70,0,20,0,2,0,0,0,89, +83,farfetchd,1,,35,3,9,3,4,45,70,0,20,0,2,0,0,0,91, +84,doduo,1,,36,3,7,3,4,190,70,0,20,1,2,0,0,0,92, +85,dodrio,1,84,36,3,7,3,4,45,70,0,20,1,2,0,0,0,93, +86,seel,1,,37,9,3,7,4,190,70,0,20,0,2,0,0,0,94, +87,dewgong,1,86,37,9,3,7,4,75,70,0,20,0,2,0,0,0,95, +88,grimer,1,,38,7,4,8,4,190,70,0,20,0,2,0,0,0,96, +89,muk,1,88,38,7,4,8,4,75,70,0,20,0,2,0,0,0,97, +90,shellder,1,,39,7,1,7,4,190,70,0,20,0,1,0,0,0,98, +91,cloyster,1,90,39,7,1,7,4,60,70,0,20,0,1,0,0,0,99, +92,gastly,1,,40,7,1,1,4,190,70,0,20,0,4,0,0,0,100,112 +93,haunter,1,92,40,7,4,1,4,90,70,0,20,0,4,0,0,0,101,113 +94,gengar,1,93,40,7,6,1,4,45,70,0,20,0,4,1,0,0,102,114 +95,onix,1,,41,4,2,1,4,45,70,0,25,0,2,0,0,0,103,175 +96,drowzee,1,,42,10,12,3,4,190,70,0,20,0,2,0,0,0,105, +97,hypno,1,96,42,10,12,3,4,75,70,0,20,1,2,0,0,0,106, +98,krabby,1,,43,8,14,9,4,225,70,0,20,0,2,0,0,0,107, +99,kingler,1,98,43,8,14,9,4,60,70,0,20,0,2,0,0,0,108, +100,voltorb,1,,44,8,1,8,-1,190,70,0,20,0,2,0,0,0,109, +101,electrode,1,100,44,8,1,8,-1,60,70,0,20,0,2,0,0,0,110, +102,exeggcute,1,,45,6,11,2,4,90,70,0,20,0,1,0,0,0,111, +103,exeggutor,1,102,45,10,7,2,4,45,70,0,20,0,1,0,0,0,112, +104,cubone,1,,46,3,6,4,4,190,70,0,20,0,2,0,0,0,113, +105,marowak,1,104,46,3,6,4,4,75,70,0,20,0,2,0,0,0,114, +106,hitmonlee,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,116, +107,hitmonchan,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,117, +108,lickitung,1,,48,6,6,3,4,45,70,0,20,0,2,0,0,0,119, +109,koffing,1,,49,7,1,8,4,190,70,0,20,0,2,0,0,0,121, +110,weezing,1,109,49,7,11,8,4,60,70,0,20,0,2,0,0,0,122, +111,rhyhorn,1,,50,4,8,6,4,120,70,0,20,1,1,0,0,0,123,160 +112,rhydon,1,111,50,4,6,6,4,60,70,0,20,1,1,0,0,0,124,161 +113,chansey,1,440,51,6,6,8,8,30,140,0,40,0,3,0,0,0,127, +114,tangela,1,,52,2,7,3,4,45,70,0,20,0,2,0,0,0,129, +115,kangaskhan,1,,53,3,6,3,8,45,70,0,20,0,2,1,0,0,131, +116,horsea,1,,54,2,5,7,4,225,70,0,20,0,2,0,0,0,132, +117,seadra,1,116,54,2,5,7,4,75,70,0,20,0,2,0,0,0,133, +118,goldeen,1,,55,8,3,9,4,225,70,0,20,1,2,0,0,0,135, +119,seaking,1,118,55,8,3,9,4,60,70,0,20,1,2,0,0,0,136, +120,staryu,1,,56,3,5,7,-1,225,70,0,20,0,1,0,0,0,137, +121,starmie,1,120,56,7,5,7,-1,60,70,0,20,0,1,0,0,0,138, +122,mr-mime,1,439,57,6,12,8,4,45,70,0,25,0,2,0,0,0,140, +123,scyther,1,,58,5,13,3,4,45,70,0,25,1,2,0,0,0,141,188 +124,jynx,1,238,59,8,12,8,8,45,70,0,25,0,2,0,0,0,144, +125,electabuzz,1,239,60,10,6,3,2,45,70,0,25,0,2,0,0,0,146, +126,magmar,1,240,61,8,6,4,2,45,70,0,25,0,2,0,0,0,149, +127,pinsir,1,,62,3,12,2,4,45,70,0,25,0,1,1,0,0,151, +128,tauros,1,,63,3,8,3,0,45,70,0,20,0,1,0,0,0,152, +129,magikarp,1,,64,8,3,9,4,255,70,0,5,1,1,0,0,0,153,13 +130,gyarados,1,129,64,2,2,9,4,45,70,0,5,1,1,1,0,0,154,14 +131,lapras,1,,65,2,3,7,4,45,70,0,40,0,1,0,0,0,155,190 +132,ditto,1,,66,7,1,8,-1,35,70,0,20,0,2,0,0,0,156, +133,eevee,1,,67,3,8,8,1,45,70,0,35,0,2,0,0,0,157,1 +134,vaporeon,1,133,67,2,8,8,1,45,70,0,35,0,2,0,0,0,158,2 +135,jolteon,1,133,67,10,8,8,1,45,70,0,35,0,2,0,0,0,159,3 +136,flareon,1,133,67,8,8,8,1,45,70,0,35,0,2,0,0,0,160,4 +137,porygon,1,,68,6,7,8,-1,45,70,0,20,0,2,0,0,0,166, +138,omanyte,1,,69,2,10,7,1,45,70,0,30,0,2,0,0,0,169, +139,omastar,1,138,69,2,10,7,1,45,70,0,30,0,2,0,0,0,170, +140,kabuto,1,,70,3,14,7,1,45,70,0,30,0,2,0,0,0,171, +141,kabutops,1,140,70,3,6,7,1,45,70,0,30,0,2,0,0,0,172, +142,aerodactyl,1,,71,7,9,4,1,45,70,0,35,0,1,1,0,0,173, +143,snorlax,1,446,72,1,12,4,1,25,70,0,40,0,1,0,0,0,175,179 +144,articuno,1,,73,2,9,5,-1,3,35,0,80,0,1,0,1,0,176,192 +145,zapdos,1,,74,10,9,5,-1,3,35,0,80,0,1,0,1,0,177, +146,moltres,1,,75,10,9,5,-1,3,35,0,80,0,1,0,1,0,178, +147,dratini,1,,76,2,2,9,4,45,35,0,40,0,1,0,0,0,179,76 +148,dragonair,1,147,76,2,2,9,4,45,35,0,40,0,1,0,0,0,180,77 +149,dragonite,1,148,76,3,6,9,4,45,35,0,40,0,1,0,0,0,181,78 +150,mewtwo,1,,77,7,6,5,-1,3,0,0,120,0,1,1,1,0,182,196 +151,mew,1,,78,6,6,5,-1,45,100,0,120,0,4,0,0,1,183, +152,chikorita,2,,79,5,8,3,1,45,70,0,20,0,4,0,0,0,184, +153,bayleef,2,152,79,5,8,3,1,45,70,0,20,0,4,0,0,0,185, +154,meganium,2,153,79,5,8,3,1,45,70,0,20,1,4,0,0,0,186, +155,cyndaquil,2,,80,10,12,3,1,45,70,0,20,0,4,0,0,0,187, +156,quilava,2,155,80,10,8,3,1,45,70,0,20,0,4,0,0,0,188, +157,typhlosion,2,156,80,10,8,3,1,45,70,0,20,0,4,0,0,0,189, +158,totodile,2,,81,2,6,9,1,45,70,0,20,0,4,0,0,0,190, +159,croconaw,2,158,81,2,6,9,1,45,70,0,20,0,4,0,0,0,191, +160,feraligatr,2,159,81,2,6,9,1,45,70,0,20,0,4,0,0,0,192, +161,sentret,2,,82,3,8,3,4,255,70,0,15,0,2,0,0,0,193, +162,furret,2,161,82,3,8,3,4,90,70,0,15,0,2,0,0,0,194, +163,hoothoot,2,,83,3,9,2,4,255,70,0,15,0,2,0,0,0,195, +164,noctowl,2,163,83,3,9,2,4,90,70,0,15,0,2,0,0,0,196, +165,ledyba,2,,84,8,9,2,4,255,70,0,15,1,3,0,0,0,197, +166,ledian,2,165,84,8,9,2,4,90,70,0,15,1,3,0,0,0,198, +167,spinarak,2,,85,5,14,2,4,255,70,0,15,0,3,0,0,0,199, +168,ariados,2,167,85,8,14,2,4,90,70,0,15,0,3,0,0,0,200, +169,crobat,2,42,17,7,13,1,4,90,70,0,15,0,2,0,0,0,46,25 +170,chinchou,2,,86,2,3,7,4,190,70,0,20,0,1,0,0,0,201, +171,lanturn,2,170,86,2,3,7,4,75,70,0,20,0,1,0,0,0,202, +172,pichu,2,,10,10,8,2,4,190,70,1,10,0,2,0,0,0,25,15 +173,cleffa,2,,14,6,6,4,6,150,140,1,10,0,3,0,0,0,36, +174,igglybuff,2,,16,6,12,3,6,170,70,1,10,0,3,0,0,0,41,20 +175,togepi,2,,87,9,12,2,1,190,70,1,10,0,3,0,0,0,203, +176,togetic,2,175,87,9,12,2,1,75,70,0,10,0,3,0,0,0,204, +177,natu,2,,88,5,9,2,4,190,70,0,20,0,2,0,0,0,206, +178,xatu,2,177,88,5,9,2,4,75,70,0,20,1,2,0,0,0,207, +179,mareep,2,,89,9,8,3,4,235,70,0,20,0,4,0,0,0,208,45 +180,flaaffy,2,179,89,6,6,3,4,120,70,0,20,0,4,0,0,0,209,46 +181,ampharos,2,180,89,10,6,3,4,45,70,0,20,0,4,1,0,0,210,47 +182,bellossom,2,44,18,5,12,3,4,45,70,0,20,0,4,0,0,0,50, +183,marill,2,298,90,2,6,9,4,190,70,0,10,0,3,0,0,0,212, +184,azumarill,2,183,90,2,6,9,4,75,70,0,10,0,3,0,0,0,213, +185,sudowoodo,2,438,91,3,12,2,4,65,70,0,20,1,2,0,0,0,215, +186,politoed,2,61,26,5,12,9,4,45,70,0,20,1,4,0,0,0,68, +187,hoppip,2,,92,6,6,3,4,255,70,0,20,0,4,0,0,0,216, +188,skiploom,2,187,92,5,6,3,4,120,70,0,20,0,4,0,0,0,217, +189,jumpluff,2,188,92,2,6,3,4,45,70,0,20,0,4,0,0,0,218, +190,aipom,2,,93,7,6,2,4,45,70,0,20,1,3,0,0,0,219, +191,sunkern,2,,94,10,1,3,4,235,70,0,20,0,4,0,0,0,221, +192,sunflora,2,191,94,10,12,3,4,120,70,0,20,0,4,0,0,0,222, +193,yanma,2,,95,8,13,2,4,75,70,0,20,0,2,0,0,0,223, +194,wooper,2,,96,2,7,9,4,255,70,0,20,1,2,0,0,0,225,18 +195,quagsire,2,194,96,2,6,9,4,90,70,0,20,1,2,0,0,0,226,19 +196,espeon,2,133,67,7,8,8,1,45,70,0,35,0,2,0,0,0,161,5 +197,umbreon,2,133,67,1,8,8,1,45,35,0,35,0,2,0,0,0,162,6 +198,murkrow,2,,97,1,9,2,4,30,35,0,20,1,4,0,0,0,227, +199,slowking,2,79,33,6,6,9,4,70,70,0,20,0,2,0,0,0,87, +200,misdreavus,2,,98,4,1,1,4,45,35,0,25,0,3,0,0,0,229,183 +201,unown,2,,99,1,1,5,-1,225,70,0,40,0,2,0,0,0,231, +202,wobbuffet,2,360,100,2,5,1,4,45,70,0,20,1,2,0,0,0,233, +203,girafarig,2,,101,10,8,3,4,60,70,0,20,1,2,0,0,0,234, +204,pineco,2,,102,4,1,2,4,190,70,0,20,0,2,0,0,0,235,56 +205,forretress,2,204,102,7,1,2,4,75,70,0,20,0,2,0,0,0,236,57 +206,dunsparce,2,,103,10,2,1,4,190,70,0,20,0,2,0,0,0,237, +207,gligar,2,,104,7,9,4,4,60,70,0,20,1,4,0,0,0,238, +208,steelix,2,95,41,4,2,1,4,25,70,0,25,1,2,1,0,0,104,176 +209,snubbull,2,,105,6,12,8,6,190,70,0,20,0,3,0,0,0,240, +210,granbull,2,209,105,7,6,8,6,75,70,0,20,0,3,0,0,0,241, +211,qwilfish,2,,106,4,3,7,4,45,70,0,20,0,2,0,0,0,242, +212,scizor,2,123,58,8,13,3,4,25,70,0,25,1,2,1,0,0,142,189 +213,shuckle,2,,107,10,14,4,4,190,70,0,20,0,4,0,0,0,243, +214,heracross,2,,108,2,12,2,4,45,70,0,25,1,1,1,0,0,244, +215,sneasel,2,,109,1,6,2,4,60,35,0,20,1,4,0,0,0,245,181 +216,teddiursa,2,,110,3,6,4,4,120,70,0,20,0,2,0,0,0,247, +217,ursaring,2,216,110,3,6,4,4,60,70,0,20,1,2,0,0,0,248, +218,slugma,2,,111,8,2,4,4,190,70,0,20,0,2,0,0,0,249, +219,magcargo,2,218,111,8,2,4,4,75,70,0,20,0,2,0,0,0,250, +220,swinub,2,,112,3,8,1,4,225,70,0,20,0,1,0,0,0,251, +221,piloswine,2,220,112,3,8,1,4,75,70,0,20,1,1,0,0,0,252, +222,corsola,2,,113,6,14,7,6,60,70,0,20,0,3,0,0,0,254, +223,remoraid,2,,114,4,3,7,4,190,70,0,20,0,2,0,0,0,255, +224,octillery,2,223,114,8,10,7,4,75,70,0,20,1,2,0,0,0,256, +225,delibird,2,,115,8,9,4,4,45,70,0,20,0,3,0,0,0,257, +226,mantine,2,458,116,7,9,7,4,25,70,0,25,0,1,0,0,0,259, +227,skarmory,2,,117,4,9,6,4,25,70,0,25,0,1,0,0,0,260, +228,houndour,2,,118,1,8,6,4,120,35,0,20,0,1,0,0,0,261, +229,houndoom,2,228,118,1,8,6,4,45,35,0,20,1,1,1,0,0,262, +230,kingdra,2,117,54,2,5,7,4,45,70,0,20,0,2,0,0,0,134, +231,phanpy,2,,119,2,8,6,4,120,70,0,20,0,2,0,0,0,263, +232,donphan,2,231,119,4,8,6,4,60,70,0,20,1,2,0,0,0,264, +233,porygon2,2,137,68,8,7,8,-1,45,70,0,20,0,2,0,0,0,167, +234,stantler,2,,120,3,8,2,4,45,70,0,20,0,1,0,0,0,265, +235,smeargle,2,,121,9,6,8,4,45,70,0,20,0,3,0,0,0,266, +236,tyrogue,2,,47,7,12,8,0,75,70,1,25,0,2,0,0,0,115, +237,hitmontop,2,236,47,3,6,8,0,45,70,0,25,0,2,0,0,0,118, +238,smoochum,2,,59,6,12,8,8,45,70,1,25,0,2,0,0,0,143, +239,elekid,2,,60,10,12,3,2,45,70,1,25,0,2,0,0,0,145, +240,magby,2,,61,8,6,4,2,45,70,1,25,0,2,0,0,0,148, +241,miltank,2,,122,6,6,3,8,45,70,0,20,0,1,0,0,0,267, +242,blissey,2,113,51,6,12,8,8,30,140,0,40,0,3,0,0,0,128, +243,raikou,2,,123,10,8,3,-1,3,35,0,80,0,1,0,1,0,268, +244,entei,2,,124,3,8,3,-1,3,35,0,80,0,1,0,1,0,269, +245,suicune,2,,125,2,8,3,-1,3,35,0,80,0,1,0,1,0,270, +246,larvitar,2,,126,5,6,4,4,45,35,0,40,0,1,0,0,0,271,79 +247,pupitar,2,246,126,4,2,4,4,45,35,0,40,0,1,0,0,0,272,80 +248,tyranitar,2,247,126,5,6,4,4,45,35,0,40,0,1,1,0,0,273,81 +249,lugia,2,,127,9,9,5,-1,3,0,0,120,0,1,0,1,0,274, +250,ho-oh,2,,128,8,9,5,-1,3,0,0,120,0,1,0,1,0,275, +251,celebi,2,,129,5,12,2,-1,45,100,0,120,0,4,0,0,1,276, +252,treecko,3,,130,5,6,2,1,45,70,0,20,0,4,0,0,0,277,130 +253,grovyle,3,252,130,5,6,2,1,45,70,0,20,0,4,0,0,0,278,131 +254,sceptile,3,253,130,5,6,2,1,45,70,0,20,0,4,1,0,0,279,132 +255,torchic,3,,131,8,7,3,1,45,70,0,20,1,4,0,0,0,280, +256,combusken,3,255,131,8,6,3,1,45,70,0,20,1,4,0,0,0,281, +257,blaziken,3,256,131,8,6,3,1,45,70,0,20,1,4,1,0,0,282, +258,mudkip,3,,132,2,8,9,1,45,70,0,20,0,4,0,0,0,283, +259,marshtomp,3,258,132,2,6,9,1,45,70,0,20,0,4,0,0,0,284, +260,swampert,3,259,132,2,6,9,1,45,70,0,20,0,4,1,0,0,285, +261,poochyena,3,,133,4,8,3,4,255,70,0,15,0,2,0,0,0,286, +262,mightyena,3,261,133,4,8,3,4,127,70,0,15,0,2,0,0,0,287, +263,zigzagoon,3,,134,3,8,3,4,255,70,0,15,0,2,0,0,0,288, +264,linoone,3,263,134,9,8,3,4,90,70,0,15,0,2,0,0,0,289, +265,wurmple,3,,135,8,14,2,4,255,70,0,15,0,2,0,0,0,290, +266,silcoon,3,265,135,9,1,2,4,120,70,0,15,0,2,0,0,0,291, +267,beautifly,3,266,135,10,13,2,4,45,70,0,15,1,2,0,0,0,292, +268,cascoon,3,265,135,7,1,2,4,120,70,0,15,0,2,0,0,0,293, +269,dustox,3,268,135,5,13,2,4,45,70,0,15,1,2,0,0,0,294, +270,lotad,3,,136,5,14,9,4,255,70,0,15,0,4,0,0,0,295, +271,lombre,3,270,136,5,12,9,4,120,70,0,15,0,4,0,0,0,296, +272,ludicolo,3,271,136,5,12,9,4,45,70,0,15,1,4,0,0,0,297, +273,seedot,3,,137,3,7,2,4,255,70,0,15,0,4,0,0,0,298, +274,nuzleaf,3,273,137,3,12,2,4,120,70,0,15,1,4,0,0,0,299, +275,shiftry,3,274,137,3,12,2,4,45,70,0,15,1,4,0,0,0,300, +276,taillow,3,,138,2,9,3,4,200,70,0,15,0,4,0,0,0,301, +277,swellow,3,276,138,2,9,3,4,45,70,0,15,0,4,0,0,0,302, +278,wingull,3,,139,9,9,7,4,190,70,0,20,0,2,0,0,0,303, +279,pelipper,3,278,139,10,9,7,4,45,70,0,20,0,2,0,0,0,304, +280,ralts,3,,140,9,12,8,4,235,35,0,20,0,1,0,0,0,305,9 +281,kirlia,3,280,140,9,12,8,4,120,35,0,20,0,1,0,0,0,306,10 +282,gardevoir,3,281,140,9,12,8,4,45,35,0,20,0,1,1,0,0,307,11 +283,surskit,3,,141,2,14,9,4,200,70,0,15,0,2,0,0,0,309, +284,masquerain,3,283,141,2,13,9,4,75,70,0,15,0,2,0,0,0,310, +285,shroomish,3,,142,3,7,2,4,255,70,0,15,0,6,0,0,0,311, +286,breloom,3,285,142,5,6,2,4,90,70,0,15,0,6,0,0,0,312, +287,slakoth,3,,143,3,8,2,4,255,70,0,15,0,1,0,0,0,313, +288,vigoroth,3,287,143,9,6,2,4,120,70,0,15,0,1,0,0,0,314, +289,slaking,3,288,143,3,12,2,4,45,70,0,15,0,1,0,0,0,315, +290,nincada,3,,144,4,14,2,4,255,70,0,15,0,5,0,0,0,316, +291,ninjask,3,290,144,10,13,2,4,120,70,0,15,0,5,0,0,0,317, +292,shedinja,3,290,144,3,5,2,-1,45,70,0,15,0,5,0,0,0,318, +293,whismur,3,,145,6,6,1,4,190,70,0,20,0,4,0,0,0,319, +294,loudred,3,293,145,2,6,1,4,120,70,0,20,0,4,0,0,0,320, +295,exploud,3,294,145,2,6,1,4,45,70,0,20,0,4,0,0,0,321, +296,makuhita,3,,146,10,12,4,2,180,70,0,20,0,6,0,0,0,322, +297,hariyama,3,296,146,3,12,4,2,200,70,0,20,0,6,0,0,0,323, +298,azurill,3,,90,2,7,9,6,150,70,1,10,0,3,0,0,0,211, +299,nosepass,3,,147,4,12,1,4,255,70,0,20,0,2,0,0,0,324, +300,skitty,3,,148,6,8,2,6,255,70,0,15,0,3,0,0,0,326, +301,delcatty,3,300,148,7,8,2,6,60,70,0,15,0,3,0,0,0,327, +302,sableye,3,,149,7,12,1,4,45,35,0,25,0,4,1,0,0,328, +303,mawile,3,,150,1,12,1,4,45,70,0,20,0,3,1,0,0,329, +304,aron,3,,151,4,8,4,4,180,35,0,35,0,1,0,0,0,330,149 +305,lairon,3,304,151,4,8,4,4,90,35,0,35,0,1,0,0,0,331,150 +306,aggron,3,305,151,4,6,4,4,45,35,0,35,0,1,1,0,0,332,151 +307,meditite,3,,152,2,12,4,4,180,70,0,20,1,2,0,0,0,333, +308,medicham,3,307,152,8,12,4,4,90,70,0,20,1,2,1,0,0,334, +309,electrike,3,,153,5,8,3,4,120,70,0,20,0,1,0,0,0,335, +310,manectric,3,309,153,10,8,3,4,45,70,0,20,0,1,1,0,0,336, +311,plusle,3,,154,10,6,3,4,200,70,0,20,0,2,0,0,0,337, +312,minun,3,,155,10,6,3,4,200,70,0,20,0,2,0,0,0,338, +313,volbeat,3,,156,4,6,2,0,150,70,0,15,0,5,0,0,0,339, +314,illumise,3,,157,7,12,2,8,150,70,0,15,0,6,0,0,0,340, +315,roselia,3,406,158,5,12,3,4,150,70,0,20,1,4,0,0,0,342, +316,gulpin,3,,159,5,4,3,4,225,70,0,20,1,6,0,0,0,344, +317,swalot,3,316,159,7,4,3,4,75,70,0,20,1,6,0,0,0,345, +318,carvanha,3,,160,8,3,7,4,225,35,0,20,0,1,0,0,0,346, +319,sharpedo,3,318,160,2,3,7,4,60,35,0,20,0,1,1,0,0,347, +320,wailmer,3,,161,2,3,7,4,125,70,0,40,0,6,0,0,0,348, +321,wailord,3,320,161,2,3,7,4,60,70,0,40,0,6,0,0,0,349, +322,numel,3,,162,10,8,4,4,255,70,0,20,1,2,0,0,0,350, +323,camerupt,3,322,162,8,8,4,4,150,70,0,20,1,2,1,0,0,351, +324,torkoal,3,,163,3,8,4,4,90,70,0,20,0,2,0,0,0,352, +325,spoink,3,,164,1,4,4,4,255,70,0,20,0,3,0,0,0,353, +326,grumpig,3,325,164,7,6,4,4,60,70,0,20,0,3,0,0,0,354, +327,spinda,3,,165,3,6,4,4,255,70,0,15,0,3,0,0,0,355, +328,trapinch,3,,166,3,14,6,4,255,70,0,20,0,4,0,0,0,356, +329,vibrava,3,328,166,5,13,6,4,120,70,0,20,0,4,0,0,0,357, +330,flygon,3,329,166,5,9,6,4,45,70,0,20,0,4,0,0,0,358, +331,cacnea,3,,167,5,12,6,4,190,35,0,20,0,4,0,0,0,359, +332,cacturne,3,331,167,5,12,6,4,60,35,0,20,1,4,0,0,0,360, +333,swablu,3,,168,2,9,2,4,255,70,0,20,0,5,0,0,0,361, +334,altaria,3,333,168,2,9,2,4,45,70,0,20,0,5,1,0,0,362, +335,zangoose,3,,169,9,6,3,4,90,70,0,20,0,5,0,0,0,363, +336,seviper,3,,170,1,2,3,4,90,70,0,20,0,6,0,0,0,364, +337,lunatone,3,,171,10,1,1,-1,45,70,0,25,0,3,0,0,0,365, +338,solrock,3,,172,8,1,1,-1,45,70,0,25,0,3,0,0,0,366, +339,barboach,3,,173,4,3,9,4,190,70,0,20,0,2,0,0,0,367, +340,whiscash,3,339,173,2,3,9,4,75,70,0,20,0,2,0,0,0,368, +341,corphish,3,,174,8,14,9,4,205,70,0,15,0,6,0,0,0,369, +342,crawdaunt,3,341,174,8,14,9,4,155,70,0,15,0,6,0,0,0,370, +343,baltoy,3,,175,3,4,6,-1,255,70,0,20,0,2,0,0,0,371, +344,claydol,3,343,175,1,4,6,-1,90,70,0,20,0,2,0,0,0,372, +345,lileep,3,,176,7,5,7,1,45,70,0,30,0,5,0,0,0,373, +346,cradily,3,345,176,5,5,7,1,45,70,0,30,0,5,0,0,0,374, +347,anorith,3,,177,4,14,9,1,45,70,0,30,0,5,0,0,0,375,171 +348,armaldo,3,347,177,4,6,9,1,45,70,0,30,0,5,0,0,0,376,172 +349,feebas,3,,178,3,3,9,4,255,70,0,20,0,5,0,0,0,377, +350,milotic,3,349,178,6,2,9,4,60,70,0,20,1,5,0,0,0,378, +351,castform,3,,179,4,1,3,4,45,70,0,25,0,2,1,0,0,379, +352,kecleon,3,,180,5,6,2,4,200,70,0,20,0,4,0,0,0,380, +353,shuppet,3,,181,1,1,8,4,225,35,0,25,0,3,0,0,0,381, +354,banette,3,353,181,1,6,8,4,45,35,0,25,0,3,1,0,0,382, +355,duskull,3,,182,1,4,2,4,190,35,0,25,0,3,0,0,0,383,69 +356,dusclops,3,355,182,1,12,2,4,90,35,0,25,0,3,0,0,0,384,70 +357,tropius,3,,183,5,8,2,4,200,70,0,25,0,1,0,0,0,386, +358,chimecho,3,433,184,2,4,3,4,45,70,0,25,0,3,0,0,0,388,53 +359,absol,3,,185,9,8,4,4,30,35,0,25,0,4,1,0,0,389, +360,wynaut,3,,100,2,6,1,4,125,70,1,20,0,2,0,0,0,232, +361,snorunt,3,,186,4,12,1,4,190,70,0,20,0,2,0,0,0,390,93 +362,glalie,3,361,186,4,1,1,4,75,70,0,20,0,2,1,0,0,391,94 +363,spheal,3,,187,2,3,7,4,255,70,0,20,0,4,0,0,0,393,60 +364,sealeo,3,363,187,2,3,7,4,120,70,0,20,0,4,0,0,0,394,61 +365,walrein,3,364,187,2,8,7,4,45,70,0,20,0,4,0,0,0,395,62 +366,clamperl,3,,188,2,1,7,4,255,70,0,20,0,5,0,0,0,396, +367,huntail,3,366,188,2,2,7,4,60,70,0,20,0,5,0,0,0,397, +368,gorebyss,3,366,188,6,2,7,4,60,70,0,20,0,5,0,0,0,398, +369,relicanth,3,,189,4,3,7,1,25,70,0,40,1,1,0,0,0,399, +370,luvdisc,3,,190,6,3,7,6,225,70,0,20,0,3,0,0,0,400, +371,bagon,3,,191,2,12,6,4,45,35,0,40,0,1,0,0,0,401, +372,shelgon,3,371,191,9,8,6,4,45,35,0,40,0,1,0,0,0,402, +373,salamence,3,372,191,2,8,6,4,45,35,0,40,0,1,1,0,0,403, +374,beldum,3,,192,2,5,6,-1,3,35,0,40,0,1,0,0,0,404,82 +375,metang,3,374,192,2,4,6,-1,3,35,0,40,0,1,0,0,0,405,83 +376,metagross,3,375,192,2,11,6,-1,3,35,0,40,0,1,1,0,0,406,84 +377,regirock,3,,193,3,12,1,-1,3,35,0,80,0,1,0,1,0,407, +378,regice,3,,194,2,12,1,-1,3,35,0,80,0,1,0,1,0,408, +379,registeel,3,,195,4,12,1,-1,3,35,0,80,0,1,0,1,0,409,193 +380,latias,3,,196,8,9,9,8,3,90,0,120,0,1,1,1,0,410, +381,latios,3,,197,2,9,9,0,3,90,0,120,0,1,1,1,0,411, +382,kyogre,3,,198,2,3,7,-1,3,0,0,120,0,1,1,1,0,412, +383,groudon,3,,199,8,6,6,-1,3,0,0,120,0,1,1,1,0,413,194 +384,rayquaza,3,,200,5,2,5,-1,45,0,0,120,0,1,1,1,0,414,200 +385,jirachi,3,,201,10,12,4,-1,3,100,0,120,0,1,0,0,1,415, +386,deoxys,3,,202,8,12,5,-1,3,0,0,120,0,1,1,0,1,416, +387,turtwig,4,,203,5,8,,1,45,70,0,20,0,4,0,0,0,417, +388,grotle,4,387,203,5,8,,1,45,70,0,20,0,4,0,0,0,418, +389,torterra,4,388,203,5,8,,1,45,70,0,20,0,4,0,0,0,419, +390,chimchar,4,,204,3,6,,1,45,70,0,20,0,4,0,0,0,420,115 +391,monferno,4,390,204,3,6,,1,45,70,0,20,0,4,0,0,0,421,116 +392,infernape,4,391,204,3,6,,1,45,70,0,20,0,4,0,0,0,422,117 +393,piplup,4,,205,2,12,,1,45,70,0,20,0,4,0,0,0,423,133 +394,prinplup,4,393,205,2,6,,1,45,70,0,20,0,4,0,0,0,424,134 +395,empoleon,4,394,205,2,6,,1,45,70,0,20,0,4,0,0,0,425,135 +396,starly,4,,206,3,9,,4,255,70,0,15,1,4,0,0,0,426,26 +397,staravia,4,396,206,3,9,,4,120,70,0,15,1,4,0,0,0,427,27 +398,staraptor,4,397,206,3,9,,4,45,70,0,15,1,4,0,0,0,428,28 +399,bidoof,4,,207,3,8,,4,255,70,0,15,1,2,0,0,0,429,29 +400,bibarel,4,399,207,3,6,,4,127,70,0,15,1,2,0,0,0,430,30 +401,kricketot,4,,208,8,12,,4,255,70,0,15,1,4,0,0,0,431, +402,kricketune,4,401,208,8,13,,4,45,70,0,15,1,4,0,0,0,432, +403,shinx,4,,209,2,8,,4,235,70,0,20,1,4,0,0,0,433,34 +404,luxio,4,403,209,2,8,,4,120,100,0,20,1,4,0,0,0,434,35 +405,luxray,4,404,209,2,8,,4,45,70,0,20,1,4,0,0,0,435,36 +406,budew,4,,158,5,12,,4,255,70,1,20,0,4,0,0,0,341, +407,roserade,4,315,158,5,12,,4,75,70,0,20,1,4,0,0,0,343, +408,cranidos,4,,211,2,6,,1,45,70,0,30,0,5,0,0,0,436, +409,rampardos,4,408,211,2,6,,1,45,70,0,30,0,5,0,0,0,437, +410,shieldon,4,,212,4,8,,1,45,70,0,30,0,5,0,0,0,438,163 +411,bastiodon,4,410,212,4,8,,1,45,70,0,30,0,5,0,0,0,439,164 +412,burmy,4,,213,5,5,,4,120,70,0,15,0,2,1,0,0,440, +413,wormadam,4,412,213,5,5,,8,45,70,0,15,0,2,0,0,0,441, +414,mothim,4,412,213,10,13,,0,45,70,0,15,0,2,0,0,0,442, +415,combee,4,,214,10,11,,1,120,70,0,15,1,4,0,0,0,443, +416,vespiquen,4,415,214,10,13,,8,45,70,0,15,0,4,0,0,0,444, +417,pachirisu,4,,215,9,8,,4,200,100,0,10,1,2,0,0,0,445, +418,buizel,4,,216,3,8,,4,190,70,0,20,1,2,0,0,0,446, +419,floatzel,4,418,216,3,8,,4,75,70,0,20,1,2,0,0,0,447, +420,cherubi,4,,217,6,11,,4,190,70,0,20,0,2,0,0,0,448, +421,cherrim,4,420,217,7,7,,4,75,70,0,20,0,2,1,0,0,449, +422,shellos,4,,218,7,2,,4,190,70,0,20,0,2,0,0,0,450, +423,gastrodon,4,422,218,7,2,,4,75,70,0,20,0,2,0,0,0,451, +424,ambipom,4,190,93,7,6,,4,45,100,0,20,1,3,0,0,0,220, +425,drifloon,4,,219,7,4,,4,125,70,0,30,0,6,0,0,0,452,167 +426,drifblim,4,425,219,7,4,,4,60,70,0,30,0,6,0,0,0,453,168 +427,buneary,4,,220,3,6,,4,190,0,0,20,0,2,0,0,0,454, +428,lopunny,4,427,220,3,6,,4,60,140,0,20,0,2,1,0,0,455, +429,mismagius,4,200,98,7,1,,4,45,35,0,25,0,3,0,0,0,230,184 +430,honchkrow,4,198,97,1,9,,4,30,35,0,20,0,4,0,0,0,228, +431,glameow,4,,221,4,8,,6,190,70,0,20,0,3,0,0,0,456, +432,purugly,4,431,221,4,8,,6,75,70,0,20,0,3,0,0,0,457, +433,chingling,4,,184,10,12,,4,120,70,1,25,0,3,0,0,0,387,52 +434,stunky,4,,223,7,8,,4,225,70,0,20,0,2,0,0,0,458, +435,skuntank,4,434,223,7,8,,4,60,70,0,20,0,2,0,0,0,459, +436,bronzor,4,,224,5,1,,-1,255,70,0,20,0,2,0,0,0,460, +437,bronzong,4,436,224,5,4,,-1,90,70,0,20,0,2,0,0,0,461, +438,bonsly,4,,91,3,7,,4,255,70,1,20,0,2,0,0,0,214, +439,mime-jr,4,,57,6,12,,4,145,70,1,25,0,2,0,0,0,139, +440,happiny,4,,51,6,12,,8,130,140,1,40,0,3,0,0,0,126, +441,chatot,4,,228,1,9,,4,30,35,0,20,0,4,0,0,0,462, +442,spiritomb,4,,229,7,5,,4,100,70,0,30,0,2,0,0,0,463,187 +443,gible,4,,230,2,6,,4,45,70,0,40,1,1,0,0,0,464,85 +444,gabite,4,443,230,2,6,,4,45,70,0,40,1,1,0,0,0,465,86 +445,garchomp,4,444,230,2,6,,4,45,70,0,40,1,1,1,0,0,466,87 +446,munchlax,4,,72,1,12,,1,50,70,1,40,0,1,0,0,0,174,178 +447,riolu,4,,232,2,6,,1,75,70,1,25,0,4,0,0,0,467,50 +448,lucario,4,447,232,2,6,,1,45,70,0,25,0,4,1,0,0,468,51 +449,hippopotas,4,,233,3,8,,4,140,70,0,30,1,1,0,0,0,469, +450,hippowdon,4,449,233,3,8,,4,60,70,0,30,1,1,0,0,0,470, +451,skorupi,4,,234,7,14,,4,120,70,0,20,0,1,0,0,0,471,156 +452,drapion,4,451,234,7,14,,4,45,70,0,20,0,1,0,0,0,472,157 +453,croagunk,4,,235,2,12,,4,140,100,0,10,1,2,0,0,0,473,88 +454,toxicroak,4,453,235,2,12,,4,75,70,0,20,1,2,0,0,0,474,89 +455,carnivine,4,,236,5,10,,4,200,70,0,25,0,1,0,0,0,475,186 +456,finneon,4,,237,2,3,,4,190,70,0,20,1,5,0,0,0,476, +457,lumineon,4,456,237,2,3,,4,75,70,0,20,1,5,0,0,0,477, +458,mantyke,4,,116,2,9,,4,25,70,1,25,0,1,0,0,0,258, +459,snover,4,,239,9,6,,4,120,70,0,20,1,1,0,0,0,478, +460,abomasnow,4,459,239,9,6,,4,60,70,0,20,1,1,1,0,0,479, +461,weavile,4,215,109,1,6,,4,45,35,0,20,1,4,0,0,0,246,182 +462,magnezone,4,82,34,4,4,,-1,30,70,0,20,0,2,0,0,0,90, +463,lickilicky,4,108,48,6,12,,4,30,70,0,20,0,2,0,0,0,120, +464,rhyperior,4,112,50,4,6,,4,30,70,0,20,1,1,0,0,0,125,162 +465,tangrowth,4,114,52,2,12,,4,30,70,0,20,1,2,0,0,0,130, +466,electivire,4,125,60,10,6,,2,30,70,0,25,0,2,0,0,0,147, +467,magmortar,4,126,61,8,6,,2,30,70,0,25,0,2,0,0,0,150, +468,togekiss,4,176,87,9,9,,1,30,70,0,10,0,3,0,0,0,205, +469,yanmega,4,193,95,5,13,,4,30,70,0,20,0,2,0,0,0,224, +470,leafeon,4,133,67,5,8,,1,45,35,0,35,0,2,0,0,0,163,7 +471,glaceon,4,133,67,2,8,,1,45,35,0,35,0,2,0,0,0,164,8 +472,gliscor,4,207,104,7,9,,4,30,70,0,20,0,4,0,0,0,239, +473,mamoswine,4,221,112,3,8,,4,50,70,0,20,1,1,0,0,0,253, +474,porygon-z,4,233,68,8,4,,-1,30,70,0,20,0,2,0,0,0,168, +475,gallade,4,281,140,9,12,,0,45,35,0,20,0,1,1,0,0,308,12 +476,probopass,4,299,147,4,11,,4,60,70,0,20,0,2,0,0,0,325, +477,dusknoir,4,356,182,1,4,,4,45,35,0,25,0,3,0,0,0,385,71 +478,froslass,4,361,186,9,4,,8,75,70,0,20,0,2,0,0,0,392,95 +479,rotom,4,,240,8,1,,-1,45,70,0,20,0,2,1,0,0,480, +480,uxie,4,,241,10,6,,-1,3,140,0,80,0,1,0,1,0,481, +481,mesprit,4,,242,6,6,,-1,3,140,0,80,0,1,0,1,0,482, +482,azelf,4,,243,2,6,,-1,3,140,0,80,0,1,0,1,0,483, +483,dialga,4,,244,9,8,,-1,3,0,0,120,0,1,0,1,0,484,195 +484,palkia,4,,245,7,6,,-1,3,0,0,120,0,1,0,1,0,485, +485,heatran,4,,246,3,8,,4,3,100,0,10,0,1,0,1,0,486, +486,regigigas,4,,247,9,12,,-1,3,0,0,120,0,1,0,1,0,487, +487,giratina,4,,248,1,10,,-1,3,0,0,120,0,1,1,1,0,488, +488,cresselia,4,,249,10,2,,8,3,100,0,120,0,1,0,1,0,489, +489,phione,4,,250,2,4,,-1,30,70,0,40,0,1,0,0,1,490, +490,manaphy,4,,250,2,12,,-1,3,70,0,10,0,1,0,0,1,491, +491,darkrai,4,,252,1,12,,-1,3,0,0,120,0,1,0,0,1,492, +492,shaymin,4,,253,5,8,,-1,45,100,0,120,0,4,1,0,1,493, +493,arceus,4,,254,9,8,,-1,3,0,0,120,0,1,1,0,1,494,199 +494,victini,5,,255,10,12,,-1,3,100,0,120,0,1,0,0,1,495, +495,snivy,5,,256,5,6,,1,45,70,0,20,0,4,0,0,0,496,118 +496,servine,5,495,256,5,6,,1,45,70,0,20,0,4,0,0,0,497,119 +497,serperior,5,496,256,5,2,,1,45,70,0,20,0,4,0,0,0,498,120 +498,tepig,5,,257,8,8,,1,45,70,0,20,0,4,0,0,0,499,121 +499,pignite,5,498,257,8,6,,1,45,70,0,20,0,4,0,0,0,500,122 +500,emboar,5,499,257,8,6,,1,45,70,0,20,0,4,0,0,0,501,123 +501,oshawott,5,,258,2,6,,1,45,70,0,20,0,4,0,0,0,502,106 +502,dewott,5,501,258,2,6,,1,45,70,0,20,0,4,0,0,0,503,107 +503,samurott,5,502,258,2,8,,1,45,70,0,20,0,4,0,0,0,504,108 +504,patrat,5,,259,3,8,,4,255,70,0,15,0,2,0,0,0,505, +505,watchog,5,504,259,3,6,,4,255,70,0,20,0,2,0,0,0,506, +506,lillipup,5,,260,3,8,,4,255,70,0,15,0,4,0,0,0,507, +507,herdier,5,506,260,4,8,,4,120,70,0,15,0,4,0,0,0,508, +508,stoutland,5,507,260,4,8,,4,45,70,0,15,0,4,0,0,0,509, +509,purrloin,5,,261,7,8,,4,255,70,0,20,0,2,0,0,0,510, +510,liepard,5,509,261,7,8,,4,90,70,0,20,0,2,0,0,0,511, +511,pansage,5,,262,5,6,,1,190,70,0,20,0,2,0,0,0,512,136 +512,simisage,5,511,262,5,6,,1,75,70,0,20,0,2,0,0,0,513,137 +513,pansear,5,,263,8,6,,1,190,70,0,20,0,2,0,0,0,514,138 +514,simisear,5,513,263,8,6,,1,75,70,0,20,0,2,0,0,0,515,139 +515,panpour,5,,264,2,6,,1,190,70,0,20,0,2,0,0,0,516,140 +516,simipour,5,515,264,2,6,,1,75,70,0,20,0,2,0,0,0,517,141 +517,munna,5,,265,6,8,,4,190,70,0,10,0,3,0,0,0,518,72 +518,musharna,5,517,265,6,12,,4,75,70,0,10,0,3,0,0,0,519,73 +519,pidove,5,,266,4,9,,4,255,70,0,15,0,4,0,0,0,520, +520,tranquill,5,519,266,4,9,,4,120,70,0,15,0,4,0,0,0,521, +521,unfezant,5,520,266,4,9,,4,45,70,0,15,1,4,0,0,0,522, +522,blitzle,5,,267,1,8,,4,190,70,0,20,0,2,0,0,0,523,74 +523,zebstrika,5,522,267,1,8,,4,75,70,0,20,0,2,0,0,0,524,75 +524,roggenrola,5,,268,2,7,,4,255,70,0,15,0,4,0,0,0,525,40 +525,boldore,5,524,268,2,10,,4,120,70,0,15,0,4,0,0,0,526,41 +526,gigalith,5,525,268,2,10,,4,45,70,0,15,0,4,0,0,0,527,42 +527,woobat,5,,269,2,9,,4,190,70,0,15,0,2,0,0,0,528, +528,swoobat,5,527,269,2,9,,4,45,70,0,15,0,2,0,0,0,529, +529,drilbur,5,,270,4,6,,4,120,70,0,20,0,2,0,0,0,530,152 +530,excadrill,5,529,270,4,12,,4,60,70,0,20,0,2,0,0,0,531,153 +531,audino,5,,271,6,6,,4,255,70,0,20,0,3,1,0,0,532,185 +532,timburr,5,,272,4,12,,2,180,70,0,20,0,4,0,0,0,533,101 +533,gurdurr,5,532,272,4,12,,2,90,70,0,20,0,4,0,0,0,534,102 +534,conkeldurr,5,533,272,3,12,,2,45,70,0,20,0,4,0,0,0,535,103 +535,tympole,5,,273,2,3,,4,255,70,0,20,0,4,0,0,0,536, +536,palpitoad,5,535,273,2,6,,4,120,70,0,20,0,4,0,0,0,537, +537,seismitoad,5,536,273,2,12,,4,45,70,0,20,0,4,0,0,0,538, +538,throh,5,,274,8,12,,0,45,70,0,20,0,2,0,0,0,539, +539,sawk,5,,275,2,12,,0,45,70,0,20,0,2,0,0,0,540, +540,sewaddle,5,,276,10,14,,4,255,70,0,15,0,4,0,0,0,541,124 +541,swadloon,5,540,276,5,4,,4,120,70,0,15,0,4,0,0,0,542,125 +542,leavanny,5,541,276,10,12,,4,45,70,0,15,0,4,0,0,0,543,126 +543,venipede,5,,277,8,14,,4,255,70,0,15,0,4,0,0,0,544,31 +544,whirlipede,5,543,277,4,1,,4,120,70,0,15,0,4,0,0,0,545,32 +545,scolipede,5,544,277,8,14,,4,45,70,0,20,0,4,0,0,0,546,33 +546,cottonee,5,,278,5,1,,4,190,70,0,20,0,2,0,0,0,547,48 +547,whimsicott,5,546,278,5,12,,4,75,70,0,20,0,2,0,0,0,548,49 +548,petilil,5,,279,5,5,,8,190,70,0,20,0,2,0,0,0,549,43 +549,lilligant,5,548,279,5,5,,8,75,70,0,20,0,2,0,0,0,550,44 +550,basculin,5,,280,5,3,,4,25,70,0,40,0,2,0,0,0,551, +551,sandile,5,,281,3,8,,4,180,70,0,20,0,4,0,0,0,552,66 +552,krokorok,5,551,281,3,8,,4,90,70,0,20,0,4,0,0,0,553,67 +553,krookodile,5,552,281,8,6,,4,45,70,0,20,0,4,0,0,0,554,68 +554,darumaka,5,,282,8,12,,4,120,70,0,20,0,4,0,0,0,555,142 +555,darmanitan,5,554,282,8,8,,4,60,70,0,20,0,4,1,0,0,556,143 +556,maractus,5,,283,5,5,,4,255,70,0,20,0,2,0,0,0,557, +557,dwebble,5,,284,8,14,,4,190,70,0,20,0,2,0,0,0,558, +558,crustle,5,557,284,8,14,,4,75,70,0,20,0,2,0,0,0,559, +559,scraggy,5,,285,10,6,,4,180,35,0,15,0,2,0,0,0,560,165 +560,scrafty,5,559,285,8,6,,4,90,70,0,15,0,2,0,0,0,561,166 +561,sigilyph,5,,286,1,9,,4,45,70,0,20,0,2,0,0,0,562, +562,yamask,5,,287,1,4,,4,190,70,0,25,0,2,0,0,0,563, +563,cofagrigus,5,562,287,10,5,,4,90,70,0,25,0,2,0,0,0,564, +564,tirtouga,5,,288,2,8,,1,45,70,0,30,0,2,0,0,0,565, +565,carracosta,5,564,288,2,6,,1,45,70,0,30,0,2,0,0,0,566, +566,archen,5,,289,10,9,,1,45,70,0,30,0,2,0,0,0,567, +567,archeops,5,566,289,10,9,,1,45,70,0,30,0,2,0,0,0,568, +568,trubbish,5,,290,5,12,,4,190,70,0,20,0,2,0,0,0,569, +569,garbodor,5,568,290,5,12,,4,60,70,0,20,0,2,0,0,0,570, +570,zorua,5,,291,4,8,,1,75,70,0,25,0,4,0,0,0,571,154 +571,zoroark,5,570,291,4,6,,1,45,70,0,20,0,4,0,0,0,572,155 +572,minccino,5,,292,4,8,,6,255,70,0,15,0,3,0,0,0,573,96 +573,cinccino,5,572,292,4,8,,6,60,70,0,15,0,3,0,0,0,574,97 +574,gothita,5,,293,7,12,,6,200,70,0,20,0,4,0,0,0,575,63 +575,gothorita,5,574,293,7,12,,6,100,70,0,20,0,4,0,0,0,576,64 +576,gothitelle,5,575,293,7,12,,6,50,70,0,20,0,4,0,0,0,577,65 +577,solosis,5,,294,5,1,,4,200,70,0,20,0,4,0,0,0,578, +578,duosion,5,577,294,5,1,,4,100,70,0,20,0,4,0,0,0,579, +579,reuniclus,5,578,294,5,4,,4,50,70,0,20,0,4,0,0,0,580, +580,ducklett,5,,295,2,9,,4,190,70,0,20,0,2,0,0,0,581, +581,swanna,5,580,295,9,9,,4,45,70,0,20,0,2,0,0,0,582, +582,vanillite,5,,296,9,5,,4,255,70,0,20,0,1,0,0,0,583, +583,vanillish,5,582,296,9,5,,4,120,70,0,20,0,1,0,0,0,584, +584,vanilluxe,5,583,296,9,11,,4,45,70,0,20,0,1,0,0,0,585, +585,deerling,5,,297,6,8,,4,190,70,0,20,0,2,1,0,0,586, +586,sawsbuck,5,585,297,3,8,,4,75,70,0,20,0,2,1,0,0,587, +587,emolga,5,,298,9,8,,4,200,70,0,20,0,2,0,0,0,588,180 +588,karrablast,5,,299,2,12,,4,200,70,0,15,0,2,0,0,0,589, +589,escavalier,5,588,299,4,4,,4,75,70,0,15,0,2,0,0,0,590, +590,foongus,5,,300,9,4,,4,190,70,0,20,0,2,0,0,0,591, +591,amoonguss,5,590,300,9,4,,4,75,70,0,20,0,2,0,0,0,592, +592,frillish,5,,301,9,10,,4,190,70,0,20,1,2,0,0,0,593, +593,jellicent,5,592,301,9,10,,4,60,70,0,20,1,2,0,0,0,594, +594,alomomola,5,,302,6,3,,4,75,70,0,40,0,3,0,0,0,595, +595,joltik,5,,303,10,14,,4,190,70,0,20,0,2,0,0,0,596,147 +596,galvantula,5,595,303,10,14,,4,75,70,0,20,0,2,0,0,0,597,148 +597,ferroseed,5,,304,4,1,,4,255,70,0,20,0,2,0,0,0,598, +598,ferrothorn,5,597,304,4,10,,4,90,70,0,20,0,2,0,0,0,599, +599,klink,5,,305,4,11,,-1,130,70,0,20,0,4,0,0,0,600, +600,klang,5,599,305,4,11,,-1,60,70,0,20,0,4,0,0,0,601, +601,klinklang,5,600,305,4,11,,-1,30,70,0,20,0,4,0,0,0,602, +602,tynamo,5,,306,9,3,,4,190,70,0,20,0,1,0,0,0,603, +603,eelektrik,5,602,306,2,3,,4,60,70,0,20,0,1,0,0,0,604, +604,eelektross,5,603,306,2,3,,4,30,70,0,20,0,1,0,0,0,605, +605,elgyem,5,,307,2,6,,4,255,70,0,20,0,2,0,0,0,606, +606,beheeyem,5,605,307,3,12,,4,90,70,0,20,0,2,0,0,0,607, +607,litwick,5,,308,9,5,,4,190,70,0,20,0,4,0,0,0,608,37 +608,lampent,5,607,308,1,4,,4,90,70,0,20,0,4,0,0,0,609,38 +609,chandelure,5,608,308,1,4,,4,45,70,0,20,0,4,0,0,0,610,39 +610,axew,5,,309,5,6,,4,75,35,0,40,0,1,0,0,0,611,144 +611,fraxure,5,610,309,5,6,,4,60,35,0,40,0,1,0,0,0,612,145 +612,haxorus,5,611,309,10,6,,4,45,35,0,40,0,1,0,0,0,613,146 +613,cubchoo,5,,310,9,6,,4,120,70,0,20,0,2,0,0,0,614,104 +614,beartic,5,613,310,9,8,,4,60,70,0,20,0,2,0,0,0,615,105 +615,cryogonal,5,,311,2,1,,-1,25,70,0,25,0,2,0,0,0,616, +616,shelmet,5,,312,8,1,,4,200,70,0,15,0,2,0,0,0,617, +617,accelgor,5,616,312,8,4,,4,75,70,0,15,0,2,0,0,0,618, +618,stunfisk,5,,313,3,3,,4,75,70,0,20,0,2,0,0,0,619, +619,mienfoo,5,,314,10,6,,4,180,70,0,25,0,4,0,0,0,620, +620,mienshao,5,619,314,7,6,,4,45,70,0,25,0,4,0,0,0,621, +621,druddigon,5,,315,8,6,,4,45,70,0,30,0,2,0,0,0,622, +622,golett,5,,316,5,12,,-1,190,70,0,25,0,2,0,0,0,623, +623,golurk,5,622,316,5,12,,-1,90,70,0,25,0,2,0,0,0,624, +624,pawniard,5,,317,8,12,,4,120,35,0,20,0,2,0,0,0,625,158 +625,bisharp,5,624,317,8,12,,4,45,35,0,20,0,2,0,0,0,626,159 +626,bouffalant,5,,318,3,8,,4,45,70,0,20,0,2,0,0,0,627, +627,rufflet,5,,319,9,9,,0,190,70,0,20,0,1,0,0,0,628,169 +628,braviary,5,627,319,8,9,,0,60,70,0,20,0,1,0,0,0,629,170 +629,vullaby,5,,320,3,9,,8,190,35,0,20,0,1,0,0,0,630, +630,mandibuzz,5,629,320,3,9,,8,60,35,0,20,0,1,0,0,0,631, +631,heatmor,5,,321,8,6,,4,90,70,0,20,0,2,0,0,0,632, +632,durant,5,,322,4,14,,4,90,70,0,20,0,2,0,0,0,633, +633,deino,5,,323,2,8,,4,45,35,0,40,0,1,0,0,0,634,90 +634,zweilous,5,633,323,2,8,,4,45,35,0,40,0,1,0,0,0,635,91 +635,hydreigon,5,634,323,2,6,,4,45,35,0,40,0,1,0,0,0,636,92 +636,larvesta,5,,324,9,14,,4,45,70,0,40,0,1,0,0,0,637,173 +637,volcarona,5,636,324,9,13,,4,15,70,0,40,0,1,0,0,0,638,174 +638,cobalion,5,,325,2,8,,-1,3,35,0,80,0,1,0,1,0,639, +639,terrakion,5,,326,4,8,,-1,3,35,0,80,0,1,0,1,0,640,191 +640,virizion,5,,327,5,8,,-1,3,35,0,80,0,1,0,1,0,641, +641,tornadus,5,,328,5,4,,0,3,90,0,120,0,1,1,1,0,642, +642,thundurus,5,,329,2,4,,0,3,90,0,120,0,1,1,1,0,643, +643,reshiram,5,,330,9,9,,-1,3,0,0,120,0,1,0,1,0,644,197 +644,zekrom,5,,331,1,6,,-1,3,0,0,120,0,1,0,1,0,645,198 +645,landorus,5,,332,3,4,,0,3,90,0,120,0,1,1,1,0,646, +646,kyurem,5,,333,4,6,,-1,3,0,0,120,0,1,1,1,0,647, +647,keldeo,5,,334,10,8,,-1,3,35,0,80,0,1,1,0,1,648, +648,meloetta,5,,335,9,12,,-1,3,100,0,120,0,1,1,0,1,649, +649,genesect,5,,336,7,12,,-1,3,0,0,120,0,1,1,0,1,650, +650,chespin,6,,337,5,6,,1,45,70,0,20,0,4,0,0,0,651, +651,quilladin,6,650,337,5,6,,1,45,70,0,20,0,4,0,0,0,652, +652,chesnaught,6,651,337,5,6,,1,45,70,0,20,0,4,0,0,0,653, +653,fennekin,6,,338,8,8,,1,45,70,0,20,0,4,0,0,0,654, +654,braixen,6,653,338,8,6,,1,45,70,0,20,0,4,0,0,0,655, +655,delphox,6,654,338,8,6,,1,45,70,0,20,0,4,0,0,0,656, +656,froakie,6,,339,2,8,,1,45,70,0,20,0,4,0,0,0,657, +657,frogadier,6,656,339,2,12,,1,45,70,0,20,0,4,0,0,0,658, +658,greninja,6,657,339,2,12,,1,45,70,0,20,0,4,0,0,0,659, +659,bunnelby,6,,340,3,6,,4,255,70,0,15,0,2,0,0,0,660, +660,diggersby,6,659,340,3,6,,4,127,70,0,15,0,2,0,0,0,661, +661,fletchling,6,,341,8,9,,4,255,70,0,15,0,4,0,0,0,662, +662,fletchinder,6,661,341,8,9,,4,120,70,0,15,0,4,0,0,0,663, +663,talonflame,6,662,341,8,9,,4,45,70,0,15,0,4,0,0,0,664, +664,scatterbug,6,,342,1,14,,4,255,70,0,15,0,2,0,0,0,665, +665,spewpa,6,664,342,1,5,,4,120,70,0,15,0,2,0,0,0,666, +666,vivillon,6,665,342,9,13,,4,45,70,0,15,0,2,0,0,0,667, +667,litleo,6,,343,3,8,,7,220,70,0,20,0,4,0,0,0,668, +668,pyroar,6,667,343,3,8,,7,65,70,0,20,1,4,0,0,0,669, +669,flabebe,6,,344,9,4,,8,225,70,0,20,0,2,0,0,0,670, +670,floette,6,669,344,9,4,,8,120,70,0,20,0,2,0,0,0,671, +671,florges,6,670,344,9,4,,8,45,70,0,20,0,2,0,0,0,672, +672,skiddo,6,,345,3,8,,4,200,70,0,20,0,2,0,0,0,673, +673,gogoat,6,672,345,3,8,,4,45,70,0,20,0,2,0,0,0,674, +674,pancham,6,,346,9,6,,4,220,70,0,25,0,2,0,0,0,675, +675,pangoro,6,674,346,9,12,,4,65,70,0,25,0,2,0,0,0,676, +676,furfrou,6,,347,9,8,,4,160,70,0,20,0,2,1,0,0,677, +677,espurr,6,,348,4,6,,4,190,70,0,20,0,2,0,0,0,678, +678,meowstic,6,677,348,2,6,,4,75,70,0,20,1,2,0,0,0,679, +679,honedge,6,,349,3,5,,4,180,70,0,20,0,2,0,0,0,680, +680,doublade,6,679,349,3,11,,4,90,70,0,20,0,2,0,0,0,681, +681,aegislash,6,680,349,3,5,,4,45,70,0,20,0,2,1,0,0,682, +682,spritzee,6,,350,6,4,,4,200,70,0,20,0,2,0,0,0,683, +683,aromatisse,6,682,350,6,12,,4,140,70,0,20,0,2,0,0,0,684, +684,swirlix,6,,351,9,7,,4,200,70,0,20,0,2,0,0,0,685, +685,slurpuff,6,684,351,9,12,,4,140,70,0,20,0,2,0,0,0,686, +686,inkay,6,,352,2,10,,4,190,70,0,20,0,2,0,0,0,687, +687,malamar,6,686,352,2,5,,4,80,70,0,20,0,2,0,0,0,688, +688,binacle,6,,353,3,11,,4,120,70,0,20,0,2,0,0,0,689, +689,barbaracle,6,688,353,3,11,,4,45,70,0,20,0,2,0,0,0,690, +690,skrelp,6,,354,3,5,,4,225,70,0,20,0,2,0,0,0,691, +691,dragalge,6,690,354,3,5,,4,55,70,0,20,0,2,0,0,0,692, +692,clauncher,6,,355,2,14,,4,225,70,0,15,0,1,0,0,0,693, +693,clawitzer,6,692,355,2,2,,4,55,70,0,15,0,1,0,0,0,694, +694,helioptile,6,,356,10,6,,4,190,70,0,20,0,2,0,0,0,695, +695,heliolisk,6,694,356,10,6,,4,75,70,0,20,0,2,0,0,0,696, +696,tyrunt,6,,357,3,6,,1,45,70,0,30,0,2,0,0,0,697, +697,tyrantrum,6,696,357,8,6,,1,45,70,0,30,0,2,0,0,0,698, +698,amaura,6,,358,2,8,,1,45,70,0,30,0,2,0,0,0,699, +699,aurorus,6,698,358,2,8,,1,45,70,0,30,0,2,0,0,0,700, +700,sylveon,6,133,67,6,8,,1,45,70,0,35,0,2,0,0,0,165, +701,hawlucha,6,,359,5,12,,4,100,70,0,20,0,2,0,0,0,701, +702,dedenne,6,,360,10,6,,4,180,70,0,20,0,2,0,0,0,702, +703,carbink,6,,361,4,1,,-1,60,70,0,25,0,1,0,0,0,703, +704,goomy,6,,362,7,2,,4,45,35,0,40,0,1,0,0,0,704, +705,sliggoo,6,704,362,7,2,,4,45,35,0,40,0,1,0,0,0,705, +706,goodra,6,705,362,7,6,,4,45,35,0,40,0,1,0,0,0,706, +707,klefki,6,,363,4,1,,4,75,70,0,20,0,3,0,0,0,707, +708,phantump,6,,364,3,4,,4,120,70,0,20,0,2,0,0,0,708, +709,trevenant,6,708,364,3,10,,4,60,70,0,20,0,2,0,0,0,709, +710,pumpkaboo,6,,365,3,1,,4,120,70,0,20,0,2,0,0,0,710, +711,gourgeist,6,710,365,3,5,,4,60,70,0,20,0,2,0,0,0,711, +712,bergmite,6,,366,2,8,,4,190,70,0,20,0,2,0,0,0,712, +713,avalugg,6,712,366,2,8,,4,55,70,0,20,0,2,0,0,0,713, +714,noibat,6,,367,7,9,,4,190,70,0,20,0,2,0,0,0,714, +715,noivern,6,714,367,7,9,,4,45,70,0,20,0,2,0,0,0,715, +716,xerneas,6,,368,2,8,,-1,45,0,0,120,0,1,1,1,0,716, +717,yveltal,6,,369,8,9,,-1,45,0,0,120,0,1,0,1,0,717, +718,zygarde,6,,370,5,2,,-1,3,0,0,120,0,1,0,1,0,718, +719,diancie,6,,371,6,4,,-1,3,70,0,25,0,1,1,0,1,719, +720,hoopa,6,,372,7,4,,-1,3,100,0,120,0,1,0,0,1,720, +721,volcanion,6,,373,3,8,,-1,3,100,0,120,0,1,0,0,1,721, +722,rowlet,7,,374,3,9,,1,45,70,0,15,0,4,0,0,0,722, +723,dartrix,7,722,374,3,9,,1,45,70,0,15,0,4,0,0,0,723, +724,decidueye,7,723,374,3,9,,1,45,70,0,15,0,4,0,0,0,724, +725,litten,7,,375,8,8,,1,45,70,0,15,0,4,0,0,0,725, +726,torracat,7,725,375,8,8,,1,45,70,0,15,0,4,0,0,0,726, +727,incineroar,7,726,375,8,6,,1,45,70,0,15,0,4,0,0,0,727, +728,popplio,7,,376,2,3,,1,45,70,0,15,0,4,0,0,0,728, +729,brionne,7,728,376,2,3,,1,45,70,0,15,0,4,0,0,0,729, +730,primarina,7,729,376,2,3,,1,45,70,0,15,0,4,0,0,0,730, +731,pikipek,7,,377,1,9,,4,255,70,0,15,0,2,0,0,0,731, +732,trumbeak,7,731,377,1,9,,4,120,70,0,15,0,2,0,0,0,732, +733,toucannon,7,732,377,1,9,,4,45,70,0,15,0,2,0,0,0,733, +734,yungoos,7,,378,3,8,,4,255,70,0,15,0,2,0,0,0,734, +735,gumshoos,7,734,378,3,8,,4,127,70,0,15,0,2,0,0,0,735, +736,grubbin,7,,379,4,14,,4,255,70,0,15,0,2,0,0,0,736, +737,charjabug,7,736,379,5,2,,4,120,70,0,15,0,2,0,0,0,737, +738,vikavolt,7,737,379,2,14,,4,45,70,0,15,0,2,0,0,0,738, +739,crabrawler,7,,380,7,14,,4,225,70,0,20,0,2,0,0,0,739, +740,crabominable,7,739,380,9,14,,4,60,70,0,20,0,2,0,0,0,740, +741,oricorio,7,,381,8,9,,6,45,70,0,20,0,2,0,0,0,741, +742,cutiefly,7,,382,10,14,,4,190,70,0,20,0,2,0,0,0,742, +743,ribombee,7,742,382,10,13,,4,75,70,0,20,0,2,0,0,0,743, +744,rockruff,7,,383,3,8,,4,190,70,0,15,0,2,0,0,0,744, +745,lycanroc,7,744,383,3,8,,4,90,70,0,15,0,2,0,0,0,745, +746,wishiwashi,7,,384,2,3,,4,60,70,0,15,0,3,0,0,0,746, +747,mareanie,7,,385,2,5,,4,190,70,0,20,0,2,0,0,0,747, +748,toxapex,7,747,385,2,10,,4,75,70,0,20,0,2,0,0,0,748, +749,mudbray,7,,386,3,8,,4,190,70,0,20,0,2,0,0,0,749, +750,mudsdale,7,749,386,3,8,,4,60,70,0,20,0,2,0,0,0,750, +751,dewpider,7,,387,5,7,,4,200,70,0,15,0,2,0,0,0,751, +752,araquanid,7,751,387,5,14,,4,100,70,0,15,0,2,0,0,0,752, +753,fomantis,7,,388,6,6,,4,190,70,0,20,0,2,0,0,0,753, +754,lurantis,7,753,388,6,12,,4,75,70,0,20,0,2,0,0,0,754, +755,morelull,7,,389,7,5,,4,190,70,0,20,0,2,0,0,0,755, +756,shiinotic,7,755,389,7,12,,4,75,70,0,20,0,2,0,0,0,756, +757,salandit,7,,390,1,8,,1,120,70,0,20,0,2,0,0,0,757, +758,salazzle,7,757,390,1,8,,8,45,70,0,20,0,2,0,0,0,758, +759,stufful,7,,391,6,8,,4,140,70,0,15,0,2,0,0,0,759, +760,bewear,7,759,391,6,6,,4,70,70,0,15,0,2,0,0,0,760, +761,bounsweet,7,,392,7,7,,8,235,70,0,20,0,4,0,0,0,761, +762,steenee,7,761,392,7,12,,8,120,70,0,20,0,4,0,0,0,762, +763,tsareena,7,762,392,7,12,,8,45,70,0,20,0,4,0,0,0,763, +764,comfey,7,,393,5,1,,6,60,70,0,20,0,3,0,0,0,764, +765,oranguru,7,,394,9,12,,4,45,70,0,20,0,1,0,0,0,765, +766,passimian,7,,395,9,6,,4,45,70,0,20,0,1,0,0,0,766, +767,wimpod,7,,396,4,10,,4,90,70,0,20,0,2,0,0,0,767, +768,golisopod,7,767,396,4,12,,4,45,70,0,20,0,2,0,0,0,768, +769,sandygast,7,,397,3,2,,4,140,70,0,15,0,2,0,0,0,769, +770,palossand,7,769,397,3,2,,4,60,70,0,15,0,2,0,0,0,770, +771,pyukumuku,7,,398,1,2,,4,60,70,0,15,0,3,0,0,0,771, +772,type-null,7,,399,4,8,,-1,3,0,0,120,0,1,0,0,0,772, +773,silvally,7,772,399,4,8,,-1,3,0,0,120,0,1,0,0,0,773, +774,minior,7,,400,3,1,,-1,30,70,0,25,0,4,0,0,0,774, +775,komala,7,,401,2,12,,4,45,70,0,20,0,1,0,0,0,775, +776,turtonator,7,,402,8,6,,4,70,70,0,20,0,2,0,0,0,776, +777,togedemaru,7,,403,4,6,,4,180,70,0,10,0,2,0,0,0,777, +778,mimikyu,7,,404,10,2,,4,45,70,0,20,0,2,0,0,0,778, +779,bruxish,7,,405,6,3,,4,80,70,0,15,0,2,0,0,0,779, +780,drampa,7,,406,9,2,,4,70,70,0,20,0,2,0,0,0,780, +781,dhelmise,7,,407,5,5,,-1,25,70,0,25,0,2,0,0,0,781, +782,jangmo-o,7,,408,4,8,,4,45,70,0,40,0,1,0,0,0,782, +783,hakamo-o,7,782,408,4,6,,4,45,70,0,40,0,1,0,0,0,783, +784,kommo-o,7,783,408,4,6,,4,45,70,0,40,0,1,0,0,0,784, +785,tapu-koko,7,,409,10,4,,-1,3,70,0,15,0,1,0,1,0,785, +786,tapu-lele,7,,410,6,4,,-1,3,70,0,15,0,1,0,1,0,786, +787,tapu-bulu,7,,411,8,4,,-1,3,70,0,15,0,1,0,1,0,787, +788,tapu-fini,7,,412,7,4,,-1,3,70,0,15,0,1,0,1,0,788, +789,cosmog,7,,413,2,1,,-1,45,0,0,120,0,1,0,1,0,789, +790,cosmoem,7,789,413,2,1,,-1,45,0,0,120,0,1,0,1,0,790, +791,solgaleo,7,790,413,9,8,,-1,45,0,0,120,0,1,0,1,0,791, +792,lunala,7,790,413,7,9,,-1,45,0,0,120,0,1,0,1,0,792, +793,nihilego,7,,414,9,10,,-1,45,0,0,120,0,1,0,0,0,793, +794,buzzwole,7,,415,8,10,,-1,45,0,0,120,0,1,0,0,0,794, +795,pheromosa,7,,416,9,12,,-1,45,0,0,120,0,1,0,0,0,795, +796,xurkitree,7,,417,1,6,,-1,45,0,0,120,0,1,0,0,0,796, +797,celesteela,7,,418,5,12,,-1,45,0,0,120,0,1,0,0,0,797, +798,kartana,7,,419,9,12,,-1,45,0,0,120,0,1,0,0,0,798, +799,guzzlord,7,,420,1,6,,-1,45,0,0,120,0,1,0,0,0,799, +800,necrozma,7,,421,1,4,,-1,255,0,0,120,0,1,0,1,0,800, +801,magearna,7,,422,4,12,,-1,3,0,0,120,0,1,0,0,1,801, +802,marshadow,7,,423,4,12,,-1,3,0,0,120,0,1,0,0,1,802, +803,poipole,7,,424,7,6,,-1,45,0,0,120,0,1,0,0,0,803, +804,naganadel,7,803,424,7,9,,-1,45,0,0,120,0,1,0,0,0,804, +805,stakataka,7,,425,4,8,,-1,30,0,0,120,0,1,0,0,0,805, +806,blacephalon,7,,426,9,12,,-1,30,0,0,120,0,1,0,0,0,806, +807,zeraora,7,,427,10,12,,-1,3,0,0,120,0,1,0,0,1,807, diff --git a/Resources/scripts/data/scraper_go/go.mod b/Resources/scripts/data/scraper_go/go.mod new file mode 100644 index 00000000..2f0f153f --- /dev/null +++ b/Resources/scripts/data/scraper_go/go.mod @@ -0,0 +1,8 @@ +module scraper + +go 1.15 + +require ( + github.com/anaskhan96/soup v1.1.1 + github.com/rs/zerolog v1.19.0 +) diff --git a/Resources/scripts/data/scraper_go/go.sum b/Resources/scripts/data/scraper_go/go.sum new file mode 100644 index 00000000..3f397db9 --- /dev/null +++ b/Resources/scripts/data/scraper_go/go.sum @@ -0,0 +1,15 @@ +github.com/anaskhan96/soup v1.1.1 h1:Duux/0htS2Va7XLJ9qIakCSey790hg9OFRm2FwlMTy0= +github.com/anaskhan96/soup v1.1.1/go.mod h1:pT5vs4HXDwA5y4KQCsKvnkpQd3D+joP7IqpiGskfWW0= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= +github.com/rs/zerolog v1.19.0 h1:hYz4ZVdUgjXTBUmrkrw55j1nHx68LfOKIQk5IYtyScg= +github.com/rs/zerolog v1.19.0/go.mod h1:IzD0RJ65iWH0w97OQQebJEvTZYvsCUm9WVLWBQrJRjo= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190828213141-aed303cbaa74/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/Resources/scripts/data/scraper_go/main.go b/Resources/scripts/data/scraper_go/main.go new file mode 100644 index 00000000..29c0ca82 --- /dev/null +++ b/Resources/scripts/data/scraper_go/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "scraper/pkg/bulbapedia" +) + +func main() { + bulbapedia.Scrape(&bulbapedia.PokemonScrapper{}, "data/pokemon.csv", "data/new_pokemon.txt", "out/pokemon.csv") + bulbapedia.Scrape(&bulbapedia.SpeciesScrapper{}, "data/pokemon_species.csv", "data/new_pokemon.txt", "out/pokemon_species.csv") +} diff --git a/Resources/scripts/data/scraper_go/out/pokemon.csv b/Resources/scripts/data/scraper_go/out/pokemon.csv new file mode 100644 index 00000000..112d5de5 --- /dev/null +++ b/Resources/scripts/data/scraper_go/out/pokemon.csv @@ -0,0 +1,1050 @@ +id,identifier,species_id,height,weight,base_experience,order,is_default +1,bulbasaur,1,7,69,64,1,1 +2,ivysaur,2,10,130,142,2,1 +3,venusaur,3,20,1000,236,3,1 +4,charmander,4,6,85,62,5,1 +5,charmeleon,5,11,190,142,6,1 +6,charizard,6,17,905,240,7,1 +7,squirtle,7,5,90,63,10,1 +8,wartortle,8,10,225,142,11,1 +9,blastoise,9,16,855,239,12,1 +10,caterpie,10,3,29,39,14,1 +11,metapod,11,7,99,72,15,1 +12,butterfree,12,11,320,178,16,1 +13,weedle,13,3,32,39,17,1 +14,kakuna,14,6,100,72,18,1 +15,beedrill,15,10,295,178,19,1 +16,pidgey,16,3,18,50,21,1 +17,pidgeotto,17,11,300,122,22,1 +18,pidgeot,18,15,395,216,23,1 +19,rattata,19,3,35,51,25,1 +20,raticate,20,7,185,145,27,1 +21,spearow,21,3,20,52,30,1 +22,fearow,22,12,380,155,31,1 +23,ekans,23,20,69,58,32,1 +24,arbok,24,35,650,157,33,1 +25,pikachu,25,4,60,112,35,1 +26,raichu,26,8,300,218,49,1 +27,sandshrew,27,6,120,60,51,1 +28,sandslash,28,10,295,158,53,1 +29,nidoran-f,29,4,70,55,55,1 +30,nidorina,30,8,200,128,56,1 +31,nidoqueen,31,13,600,227,57,1 +32,nidoran-m,32,5,90,55,58,1 +33,nidorino,33,9,195,128,59,1 +34,nidoking,34,14,620,227,60,1 +35,clefairy,35,6,75,113,62,1 +36,clefable,36,13,400,217,63,1 +37,vulpix,37,6,99,60,64,1 +38,ninetales,38,11,199,177,66,1 +39,jigglypuff,39,5,55,95,69,1 +40,wigglytuff,40,10,120,196,70,1 +41,zubat,41,8,75,49,71,1 +42,golbat,42,16,550,159,72,1 +43,oddish,43,5,54,64,74,1 +44,gloom,44,8,86,138,75,1 +45,vileplume,45,12,186,221,76,1 +46,paras,46,3,54,57,78,1 +47,parasect,47,10,295,142,79,1 +48,venonat,48,10,300,61,80,1 +49,venomoth,49,15,125,158,81,1 +50,diglett,50,2,8,53,82,1 +51,dugtrio,51,7,333,149,84,1 +52,meowth,52,4,42,58,86,1 +53,persian,53,10,320,154,88,1 +54,psyduck,54,8,196,64,90,1 +55,golduck,55,17,766,175,91,1 +56,mankey,56,5,280,61,92,1 +57,primeape,57,10,320,159,93,1 +58,growlithe,58,7,190,70,94,1 +59,arcanine,59,19,1550,194,95,1 +60,poliwag,60,6,124,60,96,1 +61,poliwhirl,61,10,200,135,97,1 +62,poliwrath,62,13,540,230,98,1 +63,abra,63,9,195,62,100,1 +64,kadabra,64,13,565,140,101,1 +65,alakazam,65,15,480,225,102,1 +66,machop,66,8,195,61,104,1 +67,machoke,67,15,705,142,105,1 +68,machamp,68,16,1300,227,106,1 +69,bellsprout,69,7,40,60,107,1 +70,weepinbell,70,10,64,137,108,1 +71,victreebel,71,17,155,221,109,1 +72,tentacool,72,9,455,67,110,1 +73,tentacruel,73,16,550,180,111,1 +74,geodude,74,4,200,60,112,1 +75,graveler,75,10,1050,137,114,1 +76,golem,76,14,3000,223,116,1 +77,ponyta,77,10,300,82,118,1 +78,rapidash,78,17,950,175,119,1 +79,slowpoke,79,12,360,63,120,1 +80,slowbro,80,16,785,172,121,1 +81,magnemite,81,3,60,65,124,1 +82,magneton,82,10,600,163,125,1 +83,farfetchd,83,8,150,132,127,1 +84,doduo,84,14,392,62,128,1 +85,dodrio,85,18,852,165,129,1 +86,seel,86,11,900,65,130,1 +87,dewgong,87,17,1200,166,131,1 +88,grimer,88,9,300,65,132,1 +89,muk,89,12,300,175,134,1 +90,shellder,90,3,40,61,136,1 +91,cloyster,91,15,1325,184,137,1 +92,gastly,92,13,1,62,138,1 +93,haunter,93,16,1,142,139,1 +94,gengar,94,15,405,225,140,1 +95,onix,95,88,2100,77,142,1 +96,drowzee,96,10,324,66,145,1 +97,hypno,97,16,756,169,146,1 +98,krabby,98,4,65,65,147,1 +99,kingler,99,13,600,166,148,1 +100,voltorb,100,5,104,66,149,1 +101,electrode,101,12,666,172,150,1 +102,exeggcute,102,4,25,65,151,1 +103,exeggutor,103,20,1200,186,152,1 +104,cubone,104,4,65,64,154,1 +105,marowak,105,10,450,149,155,1 +106,hitmonlee,106,15,498,159,159,1 +107,hitmonchan,107,14,502,159,160,1 +108,lickitung,108,12,655,77,162,1 +109,koffing,109,6,10,68,164,1 +110,weezing,110,12,95,172,165,1 +111,rhyhorn,111,10,1150,69,166,1 +112,rhydon,112,19,1200,170,167,1 +113,chansey,113,11,346,395,170,1 +114,tangela,114,10,350,87,172,1 +115,kangaskhan,115,22,800,172,174,1 +116,horsea,116,4,80,59,176,1 +117,seadra,117,12,250,154,177,1 +118,goldeen,118,6,150,64,179,1 +119,seaking,119,13,390,158,180,1 +120,staryu,120,8,345,68,181,1 +121,starmie,121,11,800,182,182,1 +122,mr-mime,122,13,545,161,184,1 +123,scyther,123,15,560,100,185,1 +124,jynx,124,14,406,159,189,1 +125,electabuzz,125,11,300,172,191,1 +126,magmar,126,13,445,173,194,1 +127,pinsir,127,15,550,175,196,1 +128,tauros,128,14,884,172,198,1 +129,magikarp,129,9,100,40,199,1 +130,gyarados,130,65,2350,189,200,1 +131,lapras,131,25,2200,187,202,1 +132,ditto,132,3,40,101,203,1 +133,eevee,133,3,65,65,204,1 +134,vaporeon,134,10,290,184,205,1 +135,jolteon,135,8,245,184,206,1 +136,flareon,136,9,250,184,207,1 +137,porygon,137,8,365,79,213,1 +138,omanyte,138,4,75,71,216,1 +139,omastar,139,10,350,173,217,1 +140,kabuto,140,5,115,71,218,1 +141,kabutops,141,13,405,173,219,1 +142,aerodactyl,142,18,590,180,220,1 +143,snorlax,143,21,4600,189,223,1 +144,articuno,144,17,554,261,224,1 +145,zapdos,145,16,526,261,225,1 +146,moltres,146,20,600,261,226,1 +147,dratini,147,18,33,60,227,1 +148,dragonair,148,40,165,147,228,1 +149,dragonite,149,22,2100,270,229,1 +150,mewtwo,150,20,1220,306,230,1 +151,mew,151,4,40,270,233,1 +152,chikorita,152,9,64,64,234,1 +153,bayleef,153,12,158,142,235,1 +154,meganium,154,18,1005,236,236,1 +155,cyndaquil,155,5,79,62,237,1 +156,quilava,156,9,190,142,238,1 +157,typhlosion,157,17,795,240,239,1 +158,totodile,158,6,95,63,240,1 +159,croconaw,159,11,250,142,241,1 +160,feraligatr,160,23,888,239,242,1 +161,sentret,161,8,60,43,243,1 +162,furret,162,18,325,145,244,1 +163,hoothoot,163,7,212,52,245,1 +164,noctowl,164,16,408,158,246,1 +165,ledyba,165,10,108,53,247,1 +166,ledian,166,14,356,137,248,1 +167,spinarak,167,5,85,50,249,1 +168,ariados,168,11,335,140,250,1 +169,crobat,169,18,750,241,73,1 +170,chinchou,170,5,120,66,251,1 +171,lanturn,171,12,225,161,252,1 +172,pichu,172,3,20,41,34,1 +173,cleffa,173,3,30,44,61,1 +174,igglybuff,174,3,10,42,68,1 +175,togepi,175,3,15,49,253,1 +176,togetic,176,6,32,142,254,1 +177,natu,177,2,20,64,256,1 +178,xatu,178,15,150,165,257,1 +179,mareep,179,6,78,56,258,1 +180,flaaffy,180,8,133,128,259,1 +181,ampharos,181,14,615,230,260,1 +182,bellossom,182,4,58,221,77,1 +183,marill,183,4,85,88,263,1 +184,azumarill,184,8,285,189,264,1 +185,sudowoodo,185,12,380,144,266,1 +186,politoed,186,11,339,225,99,1 +187,hoppip,187,4,5,50,267,1 +188,skiploom,188,6,10,119,268,1 +189,jumpluff,189,8,30,207,269,1 +190,aipom,190,8,115,72,270,1 +191,sunkern,191,3,18,36,272,1 +192,sunflora,192,8,85,149,273,1 +193,yanma,193,12,380,78,274,1 +194,wooper,194,4,85,42,276,1 +195,quagsire,195,14,750,151,277,1 +196,espeon,196,9,265,184,208,1 +197,umbreon,197,10,270,184,209,1 +198,murkrow,198,5,21,81,278,1 +199,slowking,199,20,795,172,123,1 +200,misdreavus,200,7,10,87,280,1 +201,unown,201,5,50,118,282,1 +202,wobbuffet,202,13,285,142,284,1 +203,girafarig,203,15,415,159,285,1 +204,pineco,204,6,72,58,286,1 +205,forretress,205,12,1258,163,287,1 +206,dunsparce,206,15,140,145,288,1 +207,gligar,207,11,648,86,289,1 +208,steelix,208,92,4000,179,143,1 +209,snubbull,209,6,78,60,291,1 +210,granbull,210,14,487,158,292,1 +211,qwilfish,211,5,39,88,293,1 +212,scizor,212,18,1180,175,186,1 +213,shuckle,213,6,205,177,294,1 +214,heracross,214,15,540,175,295,1 +215,sneasel,215,9,280,86,297,1 +216,teddiursa,216,6,88,66,299,1 +217,ursaring,217,18,1258,175,300,1 +218,slugma,218,7,350,50,301,1 +219,magcargo,219,8,550,151,302,1 +220,swinub,220,4,65,50,303,1 +221,piloswine,221,11,558,158,304,1 +222,corsola,222,6,50,144,306,1 +223,remoraid,223,6,120,60,307,1 +224,octillery,224,9,285,168,308,1 +225,delibird,225,9,160,116,309,1 +226,mantine,226,21,2200,170,311,1 +227,skarmory,227,17,505,163,312,1 +228,houndour,228,6,108,66,313,1 +229,houndoom,229,14,350,175,314,1 +230,kingdra,230,18,1520,243,178,1 +231,phanpy,231,5,335,66,316,1 +232,donphan,232,11,1200,175,317,1 +233,porygon2,233,6,325,180,214,1 +234,stantler,234,14,712,163,318,1 +235,smeargle,235,12,580,88,319,1 +236,tyrogue,236,7,210,42,158,1 +237,hitmontop,237,14,480,159,161,1 +238,smoochum,238,4,60,61,188,1 +239,elekid,239,6,235,72,190,1 +240,magby,240,7,214,73,193,1 +241,miltank,241,12,755,172,320,1 +242,blissey,242,15,468,608,171,1 +243,raikou,243,19,1780,261,321,1 +244,entei,244,21,1980,261,322,1 +245,suicune,245,20,1870,261,323,1 +246,larvitar,246,6,720,60,324,1 +247,pupitar,247,12,1520,144,325,1 +248,tyranitar,248,20,2020,270,326,1 +249,lugia,249,52,2160,306,328,1 +250,ho-oh,250,38,1990,306,329,1 +251,celebi,251,6,50,270,330,1 +252,treecko,252,5,50,62,331,1 +253,grovyle,253,9,216,142,332,1 +254,sceptile,254,17,522,239,333,1 +255,torchic,255,4,25,62,335,1 +256,combusken,256,9,195,142,336,1 +257,blaziken,257,19,520,239,337,1 +258,mudkip,258,4,76,62,339,1 +259,marshtomp,259,7,280,142,340,1 +260,swampert,260,15,819,241,341,1 +261,poochyena,261,5,136,56,343,1 +262,mightyena,262,10,370,147,344,1 +263,zigzagoon,263,4,175,56,345,1 +264,linoone,264,5,325,147,346,1 +265,wurmple,265,3,36,56,347,1 +266,silcoon,266,6,100,72,348,1 +267,beautifly,267,10,284,178,349,1 +268,cascoon,268,7,115,72,350,1 +269,dustox,269,12,316,173,351,1 +270,lotad,270,5,26,44,352,1 +271,lombre,271,12,325,119,353,1 +272,ludicolo,272,15,550,216,354,1 +273,seedot,273,5,40,44,355,1 +274,nuzleaf,274,10,280,119,356,1 +275,shiftry,275,13,596,216,357,1 +276,taillow,276,3,23,54,358,1 +277,swellow,277,7,198,159,359,1 +278,wingull,278,6,95,54,360,1 +279,pelipper,279,12,280,154,361,1 +280,ralts,280,4,66,40,362,1 +281,kirlia,281,8,202,97,363,1 +282,gardevoir,282,16,484,233,364,1 +283,surskit,283,5,17,54,368,1 +284,masquerain,284,8,36,159,369,1 +285,shroomish,285,4,45,59,370,1 +286,breloom,286,12,392,161,371,1 +287,slakoth,287,8,240,56,372,1 +288,vigoroth,288,14,465,154,373,1 +289,slaking,289,20,1305,252,374,1 +290,nincada,290,5,55,53,375,1 +291,ninjask,291,8,120,160,376,1 +292,shedinja,292,8,12,83,377,1 +293,whismur,293,6,163,48,378,1 +294,loudred,294,10,405,126,379,1 +295,exploud,295,15,840,221,380,1 +296,makuhita,296,10,864,47,381,1 +297,hariyama,297,23,2538,166,382,1 +298,azurill,298,2,20,38,262,1 +299,nosepass,299,10,970,75,383,1 +300,skitty,300,6,110,52,385,1 +301,delcatty,301,11,326,140,386,1 +302,sableye,302,5,110,133,387,1 +303,mawile,303,6,115,133,389,1 +304,aron,304,4,600,66,391,1 +305,lairon,305,9,1200,151,392,1 +306,aggron,306,21,3600,239,393,1 +307,meditite,307,6,112,56,395,1 +308,medicham,308,13,315,144,396,1 +309,electrike,309,6,152,59,398,1 +310,manectric,310,15,402,166,399,1 +311,plusle,311,4,42,142,401,1 +312,minun,312,4,42,142,402,1 +313,volbeat,313,7,177,151,403,1 +314,illumise,314,6,177,151,404,1 +315,roselia,315,3,20,140,406,1 +316,gulpin,316,4,103,60,408,1 +317,swalot,317,17,800,163,409,1 +318,carvanha,318,8,208,61,410,1 +319,sharpedo,319,18,888,161,411,1 +320,wailmer,320,20,1300,80,413,1 +321,wailord,321,145,3980,175,414,1 +322,numel,322,7,240,61,415,1 +323,camerupt,323,19,2200,161,416,1 +324,torkoal,324,5,804,165,418,1 +325,spoink,325,7,306,66,419,1 +326,grumpig,326,9,715,165,420,1 +327,spinda,327,11,50,126,421,1 +328,trapinch,328,7,150,58,422,1 +329,vibrava,329,11,153,119,423,1 +330,flygon,330,20,820,234,424,1 +331,cacnea,331,4,513,67,425,1 +332,cacturne,332,13,774,166,426,1 +333,swablu,333,4,12,62,427,1 +334,altaria,334,11,206,172,428,1 +335,zangoose,335,13,403,160,430,1 +336,seviper,336,27,525,160,431,1 +337,lunatone,337,10,1680,161,432,1 +338,solrock,338,12,1540,161,433,1 +339,barboach,339,4,19,58,434,1 +340,whiscash,340,9,236,164,435,1 +341,corphish,341,6,115,62,436,1 +342,crawdaunt,342,11,328,164,437,1 +343,baltoy,343,5,215,60,438,1 +344,claydol,344,15,1080,175,439,1 +345,lileep,345,10,238,71,440,1 +346,cradily,346,15,604,173,441,1 +347,anorith,347,7,125,71,442,1 +348,armaldo,348,15,682,173,443,1 +349,feebas,349,6,74,40,444,1 +350,milotic,350,62,1620,189,445,1 +351,castform,351,3,8,147,446,1 +352,kecleon,352,10,220,154,450,1 +353,shuppet,353,6,23,59,451,1 +354,banette,354,11,125,159,452,1 +355,duskull,355,8,150,59,454,1 +356,dusclops,356,16,306,159,455,1 +357,tropius,357,20,1000,161,457,1 +358,chimecho,358,6,10,159,459,1 +359,absol,359,12,470,163,460,1 +360,wynaut,360,6,140,52,283,1 +361,snorunt,361,7,168,60,462,1 +362,glalie,362,15,2565,168,463,1 +363,spheal,363,8,395,58,466,1 +364,sealeo,364,11,876,144,467,1 +365,walrein,365,14,1506,239,468,1 +366,clamperl,366,4,525,69,469,1 +367,huntail,367,17,270,170,470,1 +368,gorebyss,368,18,226,170,471,1 +369,relicanth,369,10,234,170,472,1 +370,luvdisc,370,6,87,116,473,1 +371,bagon,371,6,421,60,474,1 +372,shelgon,372,11,1105,147,475,1 +373,salamence,373,15,1026,270,476,1 +374,beldum,374,6,952,60,478,1 +375,metang,375,12,2025,147,479,1 +376,metagross,376,16,5500,270,480,1 +377,regirock,377,17,2300,261,482,1 +378,regice,378,18,1750,261,483,1 +379,registeel,379,19,2050,261,484,1 +380,latias,380,14,400,270,485,1 +381,latios,381,20,600,270,487,1 +382,kyogre,382,45,3520,302,489,1 +383,groudon,383,35,9500,302,491,1 +384,rayquaza,384,70,2065,306,493,1 +385,jirachi,385,3,11,270,495,1 +386,deoxys-normal,386,17,608,270,496,1 +387,turtwig,387,4,102,64,500,1 +388,grotle,388,11,970,142,501,1 +389,torterra,389,22,3100,236,502,1 +390,chimchar,390,5,62,62,503,1 +391,monferno,391,9,220,142,504,1 +392,infernape,392,12,550,240,505,1 +393,piplup,393,4,52,63,506,1 +394,prinplup,394,8,230,142,507,1 +395,empoleon,395,17,845,239,508,1 +396,starly,396,3,20,49,509,1 +397,staravia,397,6,155,119,510,1 +398,staraptor,398,12,249,218,511,1 +399,bidoof,399,5,200,50,512,1 +400,bibarel,400,10,315,144,513,1 +401,kricketot,401,3,22,39,514,1 +402,kricketune,402,10,255,134,515,1 +403,shinx,403,5,95,53,516,1 +404,luxio,404,9,305,127,517,1 +405,luxray,405,14,420,235,518,1 +406,budew,406,2,12,56,405,1 +407,roserade,407,9,145,232,407,1 +408,cranidos,408,9,315,70,519,1 +409,rampardos,409,16,1025,173,520,1 +410,shieldon,410,5,570,70,521,1 +411,bastiodon,411,13,1495,173,522,1 +412,burmy,412,2,34,45,523,1 +413,wormadam-plant,413,5,65,148,524,1 +414,mothim,414,9,233,148,527,1 +415,combee,415,3,55,49,528,1 +416,vespiquen,416,12,385,166,529,1 +417,pachirisu,417,4,39,142,530,1 +418,buizel,418,7,295,66,531,1 +419,floatzel,419,11,335,173,532,1 +420,cherubi,420,4,33,55,533,1 +421,cherrim,421,5,93,158,534,1 +422,shellos,422,3,63,65,535,1 +423,gastrodon,423,9,299,166,536,1 +424,ambipom,424,12,203,169,271,1 +425,drifloon,425,4,12,70,537,1 +426,drifblim,426,12,150,174,538,1 +427,buneary,427,4,55,70,539,1 +428,lopunny,428,12,333,168,540,1 +429,mismagius,429,9,44,173,281,1 +430,honchkrow,430,9,273,177,279,1 +431,glameow,431,5,39,62,542,1 +432,purugly,432,10,438,158,543,1 +433,chingling,433,2,6,57,458,1 +434,stunky,434,4,192,66,544,1 +435,skuntank,435,10,380,168,545,1 +436,bronzor,436,5,605,60,546,1 +437,bronzong,437,13,1870,175,547,1 +438,bonsly,438,5,150,58,265,1 +439,mime-jr,439,6,130,62,183,1 +440,happiny,440,6,244,110,169,1 +441,chatot,441,5,19,144,548,1 +442,spiritomb,442,10,1080,170,549,1 +443,gible,443,7,205,60,550,1 +444,gabite,444,14,560,144,551,1 +445,garchomp,445,19,950,270,552,1 +446,munchlax,446,6,1050,78,222,1 +447,riolu,447,7,202,57,554,1 +448,lucario,448,12,540,184,555,1 +449,hippopotas,449,8,495,66,557,1 +450,hippowdon,450,20,3000,184,558,1 +451,skorupi,451,8,120,66,559,1 +452,drapion,452,13,615,175,560,1 +453,croagunk,453,7,230,60,561,1 +454,toxicroak,454,13,444,172,562,1 +455,carnivine,455,14,270,159,563,1 +456,finneon,456,4,70,66,564,1 +457,lumineon,457,12,240,161,565,1 +458,mantyke,458,10,650,69,310,1 +459,snover,459,10,505,67,566,1 +460,abomasnow,460,22,1355,173,567,1 +461,weavile,461,11,340,179,298,1 +462,magnezone,462,12,1800,241,126,1 +463,lickilicky,463,17,1400,180,163,1 +464,rhyperior,464,24,2828,241,168,1 +465,tangrowth,465,20,1286,187,173,1 +466,electivire,466,18,1386,243,192,1 +467,magmortar,467,16,680,243,195,1 +468,togekiss,468,15,380,245,255,1 +469,yanmega,469,19,515,180,275,1 +470,leafeon,470,10,255,184,210,1 +471,glaceon,471,8,259,184,211,1 +472,gliscor,472,20,425,179,290,1 +473,mamoswine,473,25,2910,239,305,1 +474,porygon-z,474,9,340,241,215,1 +475,gallade,475,16,520,233,366,1 +476,probopass,476,14,3400,184,384,1 +477,dusknoir,477,22,1066,236,456,1 +478,froslass,478,13,266,168,465,1 +479,rotom,479,3,3,154,569,1 +480,uxie,480,3,3,261,575,1 +481,mesprit,481,3,3,261,576,1 +482,azelf,482,3,3,261,577,1 +483,dialga,483,54,6830,306,578,1 +484,palkia,484,42,3360,306,579,1 +485,heatran,485,17,4300,270,580,1 +486,regigigas,486,37,4200,302,581,1 +487,giratina-altered,487,45,7500,306,582,1 +488,cresselia,488,15,856,270,584,1 +489,phione,489,4,31,216,585,1 +490,manaphy,490,3,14,270,586,1 +491,darkrai,491,15,505,270,587,1 +492,shaymin-land,492,2,21,270,588,1 +493,arceus,493,32,3200,324,590,1 +494,victini,494,4,40,270,591,1 +495,snivy,495,6,81,62,592,1 +496,servine,496,8,160,145,593,1 +497,serperior,497,33,630,238,594,1 +498,tepig,498,5,99,62,595,1 +499,pignite,499,10,555,146,596,1 +500,emboar,500,16,1500,238,597,1 +501,oshawott,501,5,59,62,598,1 +502,dewott,502,8,245,145,599,1 +503,samurott,503,15,946,238,600,1 +504,patrat,504,5,116,51,601,1 +505,watchog,505,11,270,147,602,1 +506,lillipup,506,4,41,55,603,1 +507,herdier,507,9,147,130,604,1 +508,stoutland,508,12,610,225,605,1 +509,purrloin,509,4,101,56,606,1 +510,liepard,510,11,375,156,607,1 +511,pansage,511,6,105,63,608,1 +512,simisage,512,11,305,174,609,1 +513,pansear,513,6,110,63,610,1 +514,simisear,514,10,280,174,611,1 +515,panpour,515,6,135,63,612,1 +516,simipour,516,10,290,174,613,1 +517,munna,517,6,233,58,614,1 +518,musharna,518,11,605,170,615,1 +519,pidove,519,3,21,53,616,1 +520,tranquill,520,6,150,125,617,1 +521,unfezant,521,12,290,220,618,1 +522,blitzle,522,8,298,59,619,1 +523,zebstrika,523,16,795,174,620,1 +524,roggenrola,524,4,180,56,621,1 +525,boldore,525,9,1020,137,622,1 +526,gigalith,526,17,2600,232,623,1 +527,woobat,527,4,21,65,624,1 +528,swoobat,528,9,105,149,625,1 +529,drilbur,529,3,85,66,626,1 +530,excadrill,530,7,404,178,627,1 +531,audino,531,11,310,390,628,1 +532,timburr,532,6,125,61,630,1 +533,gurdurr,533,12,400,142,631,1 +534,conkeldurr,534,14,870,227,632,1 +535,tympole,535,5,45,59,633,1 +536,palpitoad,536,8,170,134,634,1 +537,seismitoad,537,15,620,229,635,1 +538,throh,538,13,555,163,636,1 +539,sawk,539,14,510,163,637,1 +540,sewaddle,540,3,25,62,638,1 +541,swadloon,541,5,73,133,639,1 +542,leavanny,542,12,205,225,640,1 +543,venipede,543,4,53,52,641,1 +544,whirlipede,544,12,585,126,642,1 +545,scolipede,545,25,2005,218,643,1 +546,cottonee,546,3,6,56,644,1 +547,whimsicott,547,7,66,168,645,1 +548,petilil,548,5,66,56,646,1 +549,lilligant,549,11,163,168,647,1 +550,basculin-red-striped,550,10,180,161,648,1 +551,sandile,551,7,152,58,650,1 +552,krokorok,552,10,334,123,651,1 +553,krookodile,553,15,963,234,652,1 +554,darumaka,554,6,375,63,653,1 +555,darmanitan-standard,555,13,929,168,654,1 +556,maractus,556,10,280,161,656,1 +557,dwebble,557,3,145,65,657,1 +558,crustle,558,14,2000,170,658,1 +559,scraggy,559,6,118,70,659,1 +560,scrafty,560,11,300,171,660,1 +561,sigilyph,561,14,140,172,661,1 +562,yamask,562,5,15,61,662,1 +563,cofagrigus,563,17,765,169,663,1 +564,tirtouga,564,7,165,71,664,1 +565,carracosta,565,12,810,173,665,1 +566,archen,566,5,95,71,666,1 +567,archeops,567,14,320,177,667,1 +568,trubbish,568,6,310,66,668,1 +569,garbodor,569,19,1073,166,669,1 +570,zorua,570,7,125,66,670,1 +571,zoroark,571,16,811,179,671,1 +572,minccino,572,4,58,60,672,1 +573,cinccino,573,5,75,165,673,1 +574,gothita,574,4,58,58,674,1 +575,gothorita,575,7,180,137,675,1 +576,gothitelle,576,15,440,221,676,1 +577,solosis,577,3,10,58,677,1 +578,duosion,578,6,80,130,678,1 +579,reuniclus,579,10,201,221,679,1 +580,ducklett,580,5,55,61,680,1 +581,swanna,581,13,242,166,681,1 +582,vanillite,582,4,57,61,682,1 +583,vanillish,583,11,410,138,683,1 +584,vanilluxe,584,13,575,241,684,1 +585,deerling,585,6,195,67,685,1 +586,sawsbuck,586,19,925,166,686,1 +587,emolga,587,4,50,150,687,1 +588,karrablast,588,5,59,63,688,1 +589,escavalier,589,10,330,173,689,1 +590,foongus,590,2,10,59,690,1 +591,amoonguss,591,6,105,162,691,1 +592,frillish,592,12,330,67,692,1 +593,jellicent,593,22,1350,168,693,1 +594,alomomola,594,12,316,165,694,1 +595,joltik,595,1,6,64,695,1 +596,galvantula,596,8,143,165,696,1 +597,ferroseed,597,6,188,61,697,1 +598,ferrothorn,598,10,1100,171,698,1 +599,klink,599,3,210,60,699,1 +600,klang,600,6,510,154,700,1 +601,klinklang,601,6,810,234,701,1 +602,tynamo,602,2,3,55,702,1 +603,eelektrik,603,12,220,142,703,1 +604,eelektross,604,21,805,232,704,1 +605,elgyem,605,5,90,67,705,1 +606,beheeyem,606,10,345,170,706,1 +607,litwick,607,3,31,55,707,1 +608,lampent,608,6,130,130,708,1 +609,chandelure,609,10,343,234,709,1 +610,axew,610,6,180,64,710,1 +611,fraxure,611,10,360,144,711,1 +612,haxorus,612,18,1055,243,712,1 +613,cubchoo,613,5,85,61,713,1 +614,beartic,614,26,2600,177,714,1 +615,cryogonal,615,11,1480,180,715,1 +616,shelmet,616,4,77,61,716,1 +617,accelgor,617,8,253,173,717,1 +618,stunfisk,618,7,110,165,718,1 +619,mienfoo,619,9,200,70,719,1 +620,mienshao,620,14,355,179,720,1 +621,druddigon,621,16,1390,170,721,1 +622,golett,622,10,920,61,722,1 +623,golurk,623,28,3300,169,723,1 +624,pawniard,624,5,102,68,724,1 +625,bisharp,625,16,700,172,725,1 +626,bouffalant,626,16,946,172,726,1 +627,rufflet,627,5,105,70,727,1 +628,braviary,628,15,410,179,728,1 +629,vullaby,629,5,90,74,729,1 +630,mandibuzz,630,12,395,179,730,1 +631,heatmor,631,14,580,169,731,1 +632,durant,632,3,330,169,732,1 +633,deino,633,8,173,60,733,1 +634,zweilous,634,14,500,147,734,1 +635,hydreigon,635,18,1600,270,735,1 +636,larvesta,636,11,288,72,736,1 +637,volcarona,637,16,460,248,737,1 +638,cobalion,638,21,2500,261,738,1 +639,terrakion,639,19,2600,261,739,1 +640,virizion,640,20,2000,261,740,1 +641,tornadus-incarnate,641,15,630,261,741,1 +642,thundurus-incarnate,642,15,610,261,743,1 +643,reshiram,643,32,3300,306,745,1 +644,zekrom,644,29,3450,306,746,1 +645,landorus-incarnate,645,15,680,270,747,1 +646,kyurem,646,30,3250,297,749,1 +647,keldeo-ordinary,647,14,485,261,752,1 +648,meloetta-aria,648,6,65,270,754,1 +649,genesect,649,15,825,270,756,1 +650,chespin,650,4,90,63,757,1 +651,quilladin,651,7,290,142,758,1 +652,chesnaught,652,16,900,239,759,1 +653,fennekin,653,4,94,61,760,1 +654,braixen,654,10,145,143,761,1 +655,delphox,655,15,390,240,762,1 +656,froakie,656,3,70,63,763,1 +657,frogadier,657,6,109,142,764,1 +658,greninja,658,15,400,239,765,1 +659,bunnelby,659,4,50,47,768,1 +660,diggersby,660,10,424,148,769,1 +661,fletchling,661,3,17,56,770,1 +662,fletchinder,662,7,160,134,771,1 +663,talonflame,663,12,245,175,772,1 +664,scatterbug,664,3,25,40,773,1 +665,spewpa,665,3,84,75,774,1 +666,vivillon,666,12,170,185,775,1 +667,litleo,667,6,135,74,776,1 +668,pyroar,668,15,815,177,777,1 +669,flabebe,669,1,1,61,778,1 +670,floette,670,2,9,130,779,1 +671,florges,671,11,100,248,781,1 +672,skiddo,672,9,310,70,782,1 +673,gogoat,673,17,910,186,783,1 +674,pancham,674,6,80,70,784,1 +675,pangoro,675,21,1360,173,785,1 +676,furfrou,676,12,280,165,786,1 +677,espurr,677,3,35,71,787,1 +678,meowstic-male,678,6,85,163,788,1 +679,honedge,679,8,20,65,790,1 +680,doublade,680,8,45,157,791,1 +681,aegislash-shield,681,17,530,234,792,1 +682,spritzee,682,2,5,68,794,1 +683,aromatisse,683,8,155,162,795,1 +684,swirlix,684,4,35,68,796,1 +685,slurpuff,685,8,50,168,797,1 +686,inkay,686,4,35,58,798,1 +687,malamar,687,15,470,169,799,1 +688,binacle,688,5,310,61,800,1 +689,barbaracle,689,13,960,175,801,1 +690,skrelp,690,5,73,64,802,1 +691,dragalge,691,18,815,173,803,1 +692,clauncher,692,5,83,66,804,1 +693,clawitzer,693,13,353,100,805,1 +694,helioptile,694,5,60,58,806,1 +695,heliolisk,695,10,210,168,807,1 +696,tyrunt,696,8,260,72,808,1 +697,tyrantrum,697,25,2700,182,809,1 +698,amaura,698,13,252,72,810,1 +699,aurorus,699,27,2250,104,811,1 +700,sylveon,700,10,235,184,212,1 +701,hawlucha,701,8,215,175,812,1 +702,dedenne,702,2,22,151,813,1 +703,carbink,703,3,57,100,814,1 +704,goomy,704,3,28,60,815,1 +705,sliggoo,705,8,175,158,816,1 +706,goodra,706,20,1505,270,817,1 +707,klefki,707,2,30,165,818,1 +708,phantump,708,4,70,62,819,1 +709,trevenant,709,15,710,166,820,1 +710,pumpkaboo-average,710,4,50,67,821,1 +711,gourgeist-average,711,9,125,173,825,1 +712,bergmite,712,10,995,61,829,1 +713,avalugg,713,20,5050,180,830,1 +714,noibat,714,5,80,49,831,1 +715,noivern,715,15,850,187,832,1 +716,xerneas,716,30,2150,306,833,1 +717,yveltal,717,58,2030,306,834,1 +718,zygarde,718,50,3050,270,835,1 +719,diancie,719,7,88,270,839,1 +720,hoopa,720,5,90,270,841,1 +721,volcanion,721,17,1950,270,843,1 +722,rowlet,722,3,15,64,844,1 +723,dartrix,723,7,160,147,845,1 +724,decidueye,724,16,366,239,846,1 +725,litten,725,4,43,64,847,1 +726,torracat,726,7,250,147,848,1 +727,incineroar,727,18,830,239,849,1 +728,popplio,728,4,75,64,850,1 +729,brionne,729,6,175,147,851,1 +730,primarina,730,18,440,239,852,1 +731,pikipek,731,3,12,53,853,1 +732,trumbeak,732,6,148,124,854,1 +733,toucannon,733,11,260,218,855,1 +734,yungoos,734,4,60,51,856,1 +735,gumshoos,735,7,142,146,857,1 +736,grubbin,736,4,44,60,859,1 +737,charjabug,737,5,105,140,860,1 +738,vikavolt,738,15,450,225,861,1 +739,crabrawler,739,6,70,68,863,1 +740,crabominable,740,17,1800,167,864,1 +741,oricorio-baile,741,6,34,167,865,1 +742,cutiefly,742,1,2,61,869,1 +743,ribombee,743,2,5,162,870,1 +744,rockruff,744,5,92,56,872,1 +745,lycanroc-midday,745,8,250,170,874,1 +746,wishiwashi-solo,746,2,3,61,877,1 +747,mareanie,747,4,80,61,879,1 +748,toxapex,748,7,145,173,880,1 +749,mudbray,749,10,1100,77,881,1 +750,mudsdale,750,25,9200,175,882,1 +751,dewpider,751,3,40,54,883,1 +752,araquanid,752,18,820,159,884,1 +753,fomantis,753,3,15,50,886,1 +754,lurantis,754,9,185,168,887,1 +755,morelull,755,2,15,57,889,1 +756,shiinotic,756,10,115,142,890,1 +757,salandit,757,6,48,64,891,1 +758,salazzle,758,12,222,168,892,1 +759,stufful,759,5,68,68,894,1 +760,bewear,760,21,1350,175,895,1 +761,bounsweet,761,3,32,42,896,1 +762,steenee,762,7,82,102,897,1 +763,tsareena,763,12,214,230,898,1 +764,comfey,764,1,3,170,899,1 +765,oranguru,765,15,760,172,900,1 +766,passimian,766,20,828,172,901,1 +767,wimpod,767,5,120,46,902,1 +768,golisopod,768,20,1080,186,903,1 +769,sandygast,769,5,700,64,904,1 +770,palossand,770,13,2500,168,905,1 +771,pyukumuku,771,3,12,144,906,1 +772,type-null,772,19,1205,107,907,1 +773,silvally,773,23,1005,257,908,1 +774,minior-red-meteor,774,3,400,154,909,1 +775,komala,775,4,199,168,923,1 +776,turtonator,776,20,2120,170,924,1 +777,togedemaru,777,3,33,152,925,1 +778,mimikyu-disguised,778,2,7,167,927,1 +779,bruxish,779,9,190,166,931,1 +780,drampa,780,30,1850,170,932,1 +781,dhelmise,781,39,2100,181,933,1 +782,jangmo-o,782,6,297,60,934,1 +783,hakamo-o,783,12,470,147,935,1 +784,kommo-o,784,16,782,270,936,1 +785,tapu-koko,785,18,205,257,938,1 +786,tapu-lele,786,12,186,257,939,1 +787,tapu-bulu,787,19,455,257,940,1 +788,tapu-fini,788,13,212,257,941,1 +789,cosmog,789,2,1,40,942,1 +790,cosmoem,790,1,9999,140,943,1 +791,solgaleo,791,34,2300,306,944,1 +792,lunala,792,40,1200,306,945,1 +793,nihilego,793,12,555,257,946,1 +794,buzzwole,794,24,3336,257,947,1 +795,pheromosa,795,18,250,257,948,1 +796,xurkitree,796,38,1000,257,949,1 +797,celesteela,797,92,9999,257,950,1 +798,kartana,798,3,1,257,951,1 +799,guzzlord,799,55,8880,257,952,1 +800,necrozma,800,24,2300,270,953,1 +801,magearna,801,10,805,270,957,1 +802,marshadow,802,7,222,270,959,1 +803,poipole,803,6,18,189,960,1 +804,naganadel,804,36,1500,243,961,1 +805,stakataka,805,55,8200,257,962,1 +806,blacephalon,806,18,130,257,963,1 +807,zeraora,807,15,445,270,964,1 +810,grookey,810,3,50,62,,1 +811,thwackey,811,7,140,147,,1 +812,rillaboom,812,21,900,265,,1 +813,scorbunny,813,3,45,62,,1 +814,raboot,814,6,90,147,,1 +815,cinderace,815,14,330,265,,1 +816,sobble,816,3,40,62,,1 +817,drizzile,817,7,115,147,,1 +818,inteleon,818,19,452,265,,1 +819,skwovet,819,3,25,55,,1 +820,greedent,820,6,60,161,,1 +821,rookidee,821,2,18,49,,1 +822,corvisquire,822,8,160,128,,1 +823,corviknight,823,22,750,248,,1 +824,blipbug,824,4,80,36,,1 +825,dottler,825,4,195,117,,1 +826,orbeetle,826,4,408,253,,1 +827,nickit,827,6,89,49,,1 +828,thievul,828,12,199,159,,1 +829,gossifleur,829,4,22,50,,1 +830,eldegoss,830,5,25,161,,1 +831,wooloo,831,6,60,122,,1 +832,dubwool,832,13,430,172,,1 +833,chewtle,833,3,85,57,,1 +834,drednaw,834,10,1155,170,,1 +835,yamper,835,3,135,54,,1 +836,boltund,836,10,340,172,,1 +837,rolycoly,837,3,120,48,,1 +838,carkol,838,11,780,144,,1 +839,coalossal,839,28,3105,255,,1 +840,applin,840,2,5,52,,1 +841,flapple,841,3,10,170,,1 +842,appletun,842,4,130,170,,1 +843,silicobra,843,22,76,63,,1 +844,sandaconda,844,38,655,179,,1 +845,cramorant,845,8,180,166,,1 +846,arrokuda,846,5,10,56,,1 +847,barraskewda,847,13,300,172,,1 +848,toxel,848,4,110,48,,1 +849,toxtricity,849,16,400,176,,1 +850,sizzlipede,850,7,10,61,,1 +851,centiskorch,851,30,1200,184,,1 +852,clobbopus,852,6,40,62,,1 +853,grapploct,853,16,390,168,,1 +854,sinistea,854,1,2,62,,1 +855,polteageist,855,2,4,178,,1 +856,hatenna,856,4,34,53,,1 +857,hattrem,857,6,48,130,,1 +858,hatterene,858,21,51,255,,1 +859,impidimp,859,4,55,53,,1 +860,morgrem,860,8,125,130,,1 +861,grimmsnarl,861,15,610,255,,1 +862,obstagoon,862,16,460,260,,1 +863,perrserker,863,8,280,154,,1 +864,cursola,864,10,4,179,,1 +865,sirfetch,865,8,1170,177,,1 +866,mr,866,15,582,182,,1 +867,runerigus,867,16,666,169,,1 +868,milcery,868,2,3,54,,1 +869,alcremie,869,3,5,173,,1 +870,falinks,870,30,620,165,,1 +871,pincurchin,871,3,10,152,,1 +872,snom,872,3,38,37,,1 +873,frosmoth,873,13,420,168,,1 +874,stonjourner,874,25,5200,165,,1 +875,eiscue,875,14,890,165,,1 +876,indeedee,876,9,280,166,,1 +877,morpeko,877,3,30,153,,1 +878,cufant,878,12,1000,66,,1 +879,copperajah,879,30,6500,175,,1 +880,dracozolt,880,18,1900,177,,1 +881,arctozolt,881,23,1500,177,,1 +882,dracovish,882,23,2150,177,,1 +883,arctovish,883,20,1750,177,,1 +884,duraludon,884,18,400,187,,1 +885,dreepy,885,5,20,54,,1 +886,drakloak,886,14,110,144,,1 +887,dragapult,887,30,500,300,,1 +888,zacian,888,28,1100,335,,1 +889,zamazenta,889,29,2100,335,,1 +890,eternatus,890,200,9500,345,,1 +891,kubfu,891,6,120,,,1 +892,urshifu,892,19,1050,,,1 +893,zarude,893,18,700,,,1 +10001,deoxys-attack,386,17,608,270,497,0 +10002,deoxys-defense,386,17,608,270,498,0 +10003,deoxys-speed,386,17,608,270,499,0 +10004,wormadam-sandy,413,5,65,148,525,0 +10005,wormadam-trash,413,5,65,148,526,0 +10006,shaymin-sky,492,4,52,270,589,0 +10007,giratina-origin,487,69,6500,306,583,0 +10008,rotom-heat,479,3,3,182,570,0 +10009,rotom-wash,479,3,3,182,571,0 +10010,rotom-frost,479,3,3,182,572,0 +10011,rotom-fan,479,3,3,182,573,0 +10012,rotom-mow,479,3,3,182,574,0 +10013,castform-sunny,351,3,8,147,447,0 +10014,castform-rainy,351,3,8,147,448,0 +10015,castform-snowy,351,3,8,147,449,0 +10016,basculin-blue-striped,550,10,180,161,649,0 +10017,darmanitan-zen,555,13,929,189,655,0 +10018,meloetta-pirouette,648,6,65,270,755,0 +10019,tornadus-therian,641,14,630,261,742,0 +10020,thundurus-therian,642,30,610,261,744,0 +10021,landorus-therian,645,13,680,270,748,0 +10022,kyurem-black,646,33,3250,315,751,0 +10023,kyurem-white,646,36,3250,315,750,0 +10024,keldeo-resolute,647,14,485,261,753,0 +10025,meowstic-female,678,6,85,163,789,0 +10026,aegislash-blade,681,17,530,234,793,0 +10027,pumpkaboo-small,710,3,35,67,822,0 +10028,pumpkaboo-large,710,5,75,67,823,0 +10029,pumpkaboo-super,710,8,150,67,824,0 +10030,gourgeist-small,711,7,95,173,826,0 +10031,gourgeist-large,711,11,140,173,827,0 +10032,gourgeist-super,711,17,390,173,828,0 +10033,venusaur-mega,3,24,1555,281,4,0 +10034,charizard-mega-x,6,17,1105,285,8,0 +10035,charizard-mega-y,6,17,1005,285,9,0 +10036,blastoise-mega,9,16,1011,284,13,0 +10037,alakazam-mega,65,12,480,270,103,0 +10038,gengar-mega,94,14,405,270,141,0 +10039,kangaskhan-mega,115,22,1000,207,175,0 +10040,pinsir-mega,127,17,590,210,197,0 +10041,gyarados-mega,130,65,3050,224,201,0 +10042,aerodactyl-mega,142,21,790,215,221,0 +10043,mewtwo-mega-x,150,23,1270,351,231,0 +10044,mewtwo-mega-y,150,15,330,351,232,0 +10045,ampharos-mega,181,14,615,275,261,0 +10046,scizor-mega,212,20,1250,210,187,0 +10047,heracross-mega,214,17,625,210,296,0 +10048,houndoom-mega,229,19,495,210,315,0 +10049,tyranitar-mega,248,25,2550,315,327,0 +10050,blaziken-mega,257,19,520,284,338,0 +10051,gardevoir-mega,282,16,484,278,365,0 +10052,mawile-mega,303,10,235,168,390,0 +10053,aggron-mega,306,22,3950,284,394,0 +10054,medicham-mega,308,13,315,179,397,0 +10055,manectric-mega,310,18,440,201,400,0 +10056,banette-mega,354,12,130,194,453,0 +10057,absol-mega,359,12,490,198,461,0 +10058,garchomp-mega,445,19,950,315,553,0 +10059,lucario-mega,448,13,575,219,556,0 +10060,abomasnow-mega,460,27,1850,208,568,0 +10061,floette-eternal,670,2,9,243,780,0 +10062,latias-mega,380,18,520,315,486,0 +10063,latios-mega,381,23,700,315,488,0 +10064,swampert-mega,260,19,1020,286,342,0 +10065,sceptile-mega,254,19,552,284,334,0 +10066,sableye-mega,302,5,1610,168,388,0 +10067,altaria-mega,334,15,206,207,429,0 +10068,gallade-mega,475,16,564,278,367,0 +10069,audino-mega,531,15,320,425,629,0 +10070,sharpedo-mega,319,25,1303,196,412,0 +10071,slowbro-mega,80,20,1200,207,122,0 +10072,steelix-mega,208,105,7400,214,144,0 +10073,pidgeot-mega,18,22,505,261,24,0 +10074,glalie-mega,362,21,3502,203,464,0 +10075,diancie-mega,719,11,278,315,840,0 +10076,metagross-mega,376,25,9429,315,481,0 +10077,kyogre-primal,382,98,4300,347,490,0 +10078,groudon-primal,383,50,9997,347,492,0 +10079,rayquaza-mega,384,108,3920,351,494,0 +10080,pikachu-rock-star,25,4,60,112,37,0 +10081,pikachu-belle,25,4,60,112,38,0 +10082,pikachu-pop-star,25,4,60,112,39,0 +10083,pikachu-phd,25,4,60,112,40,0 +10084,pikachu-libre,25,4,60,112,41,0 +10085,pikachu-cosplay,25,4,60,112,36,0 +10086,hoopa-unbound,720,65,4900,306,842,0 +10087,camerupt-mega,323,25,3205,196,417,0 +10088,lopunny-mega,428,13,283,203,541,0 +10089,salamence-mega,373,18,1126,315,477,0 +10090,beedrill-mega,15,14,405,223,20,0 +10091,rattata-alola,19,3,38,51,26,0 +10092,raticate-alola,20,7,255,145,28,0 +10093,raticate-totem-alola,20,14,1050,145,29,0 +10094,pikachu-original-cap,25,4,60,112,42,0 +10095,pikachu-hoenn-cap,25,4,60,112,43,0 +10096,pikachu-sinnoh-cap,25,4,60,112,44,0 +10097,pikachu-unova-cap,25,4,60,112,45,0 +10098,pikachu-kalos-cap,25,4,60,112,46,0 +10099,pikachu-alola-cap,25,4,60,112,47,0 +10100,raichu-alola,26,7,210,218,50,0 +10101,sandshrew-alola,27,7,400,60,52,0 +10102,sandslash-alola,28,12,550,158,54,0 +10103,vulpix-alola,37,6,99,60,65,0 +10104,ninetales-alola,38,11,199,177,67,0 +10105,diglett-alola,50,2,10,53,83,0 +10106,dugtrio-alola,51,7,666,149,85,0 +10107,meowth-alola,52,4,42,58,87,0 +10108,persian-alola,53,11,330,154,89,0 +10109,geodude-alola,74,4,203,60,113,0 +10110,graveler-alola,75,10,1100,137,115,0 +10111,golem-alola,76,17,3160,223,117,0 +10112,grimer-alola,88,7,420,65,133,0 +10113,muk-alola,89,10,520,175,135,0 +10114,exeggutor-alola,103,109,4156,186,153,0 +10115,marowak-alola,105,10,340,149,156,0 +10116,greninja-battle-bond,658,15,400,239,766,0 +10117,greninja-ash,658,15,400,288,767,0 +10118,zygarde-10,718,12,335,219,836,0 +10119,zygarde-50,718,50,3050,270,837,0 +10120,zygarde-complete,718,45,6100,319,838,0 +10121,gumshoos-totem,735,14,600,146,858,0 +10122,vikavolt-totem,738,26,1475,225,862,0 +10123,oricorio-pom-pom,741,6,34,167,866,0 +10124,oricorio-pau,741,6,34,167,867,0 +10125,oricorio-sensu,741,6,34,167,868,0 +10126,lycanroc-midnight,745,11,250,170,875,0 +10127,wishiwashi-school,746,82,786,217,878,0 +10128,lurantis-totem,754,15,580,168,888,0 +10129,salazzle-totem,758,21,810,168,893,0 +10130,minior-orange-meteor,774,3,400,154,910,0 +10131,minior-yellow-meteor,774,3,400,154,911,0 +10132,minior-green-meteor,774,3,400,154,912,0 +10133,minior-blue-meteor,774,3,400,154,913,0 +10134,minior-indigo-meteor,774,3,400,154,914,0 +10135,minior-violet-meteor,774,3,400,154,915,0 +10136,minior-red,774,3,3,175,916,0 +10137,minior-orange,774,3,3,175,917,0 +10138,minior-yellow,774,3,3,175,918,0 +10139,minior-green,774,3,3,175,919,0 +10140,minior-blue,774,3,3,175,920,0 +10141,minior-indigo,774,3,3,175,921,0 +10142,minior-violet,774,3,3,175,922,0 +10143,mimikyu-busted,778,2,7,167,928,0 +10144,mimikyu-totem-disguised,778,4,28,167,929,0 +10145,mimikyu-totem-busted,778,4,28,167,930,0 +10146,kommo-o-totem,784,24,2075,270,937,0 +10147,magearna-original,801,10,805,270,958,0 +10148,pikachu-partner-cap,25,4,60,112,48,0 +10149,marowak-totem,105,17,980,149,157,0 +10150,ribombee-totem,743,4,20,162,871,0 +10151,rockruff-own-tempo,744,5,92,56,873,0 +10152,lycanroc-dusk,745,8,250,170,876,0 +10153,araquanid-totem,752,31,2175,159,885,0 +10154,togedemaru-totem,777,6,130,152,926,0 +10155,necrozma-dusk,800,38,4600,306,954,0 +10156,necrozma-dawn,800,42,3500,306,955,0 +10157,necrozma-ultra,800,75,2300,339,956,0 +20000,regieleki,20000,12,1450,,,1 diff --git a/Resources/scripts/data/scraper_go/out/pokemon_species.csv b/Resources/scripts/data/scraper_go/out/pokemon_species.csv new file mode 100644 index 00000000..88dc1dc9 --- /dev/null +++ b/Resources/scripts/data/scraper_go/out/pokemon_species.csv @@ -0,0 +1,893 @@ +id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,shape_id,habitat_id,gender_rate,capture_rate,base_happiness,is_baby,hatch_counter,has_gender_differences,growth_rate_id,forms_switchable,is_legendary,is_mythical,order,conquest_order +1,bulbasaur,1,,1,5,8,3,1,45,70,0,20,0,4,0,0,0,1, +2,ivysaur,1,1,1,5,8,3,1,45,70,0,20,0,4,0,0,0,2, +3,venusaur,1,2,1,5,8,3,1,45,70,0,20,1,4,1,0,0,3, +4,charmander,1,,2,8,6,4,1,45,70,0,20,0,4,0,0,0,4,109 +5,charmeleon,1,4,2,8,6,4,1,45,70,0,20,0,4,0,0,0,5,110 +6,charizard,1,5,2,8,6,4,1,45,70,0,20,0,4,1,0,0,6,111 +7,squirtle,1,,3,2,6,9,1,45,70,0,20,0,4,0,0,0,7, +8,wartortle,1,7,3,2,6,9,1,45,70,0,20,0,4,0,0,0,8, +9,blastoise,1,8,3,2,6,9,1,45,70,0,20,0,4,1,0,0,9, +10,caterpie,1,,4,5,14,2,4,255,70,0,15,0,2,0,0,0,10, +11,metapod,1,10,4,5,2,2,4,120,70,0,15,0,2,0,0,0,11, +12,butterfree,1,11,4,9,13,2,4,45,70,0,15,1,2,0,0,0,12, +13,weedle,1,,5,3,14,2,4,255,70,0,15,0,2,0,0,0,13, +14,kakuna,1,13,5,10,2,2,4,120,70,0,15,0,2,0,0,0,14, +15,beedrill,1,14,5,10,13,2,4,45,70,0,15,0,2,1,0,0,15,177 +16,pidgey,1,,6,3,9,2,4,255,70,0,15,0,4,0,0,0,16, +17,pidgeotto,1,16,6,3,9,2,4,120,70,0,15,0,4,0,0,0,17, +18,pidgeot,1,17,6,3,9,2,4,45,70,0,15,0,4,1,0,0,18, +19,rattata,1,,7,7,8,3,4,255,70,0,15,1,2,0,0,0,19, +20,raticate,1,19,7,3,8,3,4,127,70,0,15,1,2,0,0,0,20, +21,spearow,1,,8,3,9,6,4,255,70,0,15,0,2,0,0,0,21, +22,fearow,1,21,8,3,9,6,4,90,70,0,15,0,2,0,0,0,22, +23,ekans,1,,9,7,2,3,4,255,70,0,20,0,2,0,0,0,23,54 +24,arbok,1,23,9,7,2,3,4,90,70,0,20,0,2,0,0,0,24,55 +25,pikachu,1,172,10,10,8,2,4,190,70,0,10,1,2,0,0,0,26,16 +26,raichu,1,25,10,10,6,2,4,75,70,0,10,1,2,0,0,0,27,17 +27,sandshrew,1,,11,10,6,6,4,255,70,0,20,0,2,0,0,0,28, +28,sandslash,1,27,11,10,6,6,4,90,70,0,20,0,2,0,0,0,29, +29,nidoran-f,1,,12,2,8,3,8,235,70,0,20,0,4,0,0,0,30, +30,nidorina,1,29,12,2,8,3,8,120,70,0,20,0,4,0,0,0,31, +31,nidoqueen,1,30,12,2,6,3,8,45,70,0,20,0,4,0,0,0,32, +32,nidoran-m,1,,13,7,8,3,0,235,70,0,20,0,4,0,0,0,33, +33,nidorino,1,32,13,7,8,3,0,120,70,0,20,0,4,0,0,0,34, +34,nidoking,1,33,13,7,6,3,0,45,70,0,20,0,4,0,0,0,35, +35,clefairy,1,173,14,6,6,4,6,150,140,0,10,0,3,0,0,0,37, +36,clefable,1,35,14,6,6,4,6,25,140,0,10,0,3,0,0,0,38, +37,vulpix,1,,15,3,8,3,6,190,70,0,20,0,2,0,0,0,39, +38,ninetales,1,37,15,10,8,3,6,75,70,0,20,0,2,0,0,0,40, +39,jigglypuff,1,174,16,6,12,3,6,170,70,0,10,0,3,0,0,0,42,21 +40,wigglytuff,1,39,16,6,12,3,6,50,70,0,10,0,3,0,0,0,43,22 +41,zubat,1,,17,7,9,1,4,255,70,0,15,1,2,0,0,0,44,23 +42,golbat,1,41,17,7,9,1,4,90,70,0,15,1,2,0,0,0,45,24 +43,oddish,1,,18,2,7,3,4,255,70,0,20,0,4,0,0,0,47, +44,gloom,1,43,18,2,12,3,4,120,70,0,20,1,4,0,0,0,48, +45,vileplume,1,44,18,8,12,3,4,45,70,0,20,1,4,0,0,0,49, +46,paras,1,,19,8,14,2,4,190,70,0,20,0,2,0,0,0,51, +47,parasect,1,46,19,8,14,2,4,75,70,0,20,0,2,0,0,0,52, +48,venonat,1,,20,7,12,2,4,190,70,0,20,0,2,0,0,0,53, +49,venomoth,1,48,20,7,13,2,4,75,70,0,20,0,2,0,0,0,54, +50,diglett,1,,21,3,5,1,4,255,70,0,20,0,2,0,0,0,55, +51,dugtrio,1,50,21,3,11,1,4,50,70,0,20,0,2,0,0,0,56, +52,meowth,1,,22,10,8,8,4,255,70,0,20,0,2,0,0,0,57,58 +53,persian,1,52,22,10,8,8,4,90,70,0,20,0,2,0,0,0,58,59 +54,psyduck,1,,23,10,6,9,4,190,70,0,20,0,2,0,0,0,59, +55,golduck,1,54,23,2,6,9,4,75,70,0,20,0,2,0,0,0,60, +56,mankey,1,,24,3,6,4,4,190,70,0,20,0,2,0,0,0,61, +57,primeape,1,56,24,3,6,4,4,75,70,0,20,0,2,0,0,0,62, +58,growlithe,1,,25,3,8,3,2,190,70,0,20,0,1,0,0,0,63, +59,arcanine,1,58,25,3,8,3,2,75,70,0,20,0,1,0,0,0,64, +60,poliwag,1,,26,2,7,9,4,255,70,0,20,0,4,0,0,0,65, +61,poliwhirl,1,60,26,2,12,9,4,120,70,0,20,0,4,0,0,0,66, +62,poliwrath,1,61,26,2,12,9,4,45,70,0,20,0,4,0,0,0,67, +63,abra,1,,27,3,6,8,2,200,70,0,20,0,4,0,0,0,69,127 +64,kadabra,1,63,27,3,6,8,2,100,70,0,20,1,4,0,0,0,70,128 +65,alakazam,1,64,27,3,12,8,2,50,70,0,20,1,4,1,0,0,71,129 +66,machop,1,,28,4,6,4,2,180,70,0,20,0,4,0,0,0,72,98 +67,machoke,1,66,28,4,12,4,2,90,70,0,20,0,4,0,0,0,73,99 +68,machamp,1,67,28,4,12,4,2,45,70,0,20,0,4,0,0,0,74,100 +69,bellsprout,1,,29,5,12,2,4,255,70,0,20,0,4,0,0,0,75, +70,weepinbell,1,69,29,5,5,2,4,120,70,0,20,0,4,0,0,0,76, +71,victreebel,1,70,29,5,5,2,4,45,70,0,20,0,4,0,0,0,77, +72,tentacool,1,,30,2,10,7,4,190,70,0,20,0,1,0,0,0,78, +73,tentacruel,1,72,30,2,10,7,4,60,70,0,20,0,1,0,0,0,79, +74,geodude,1,,31,3,4,4,4,255,70,0,15,0,4,0,0,0,80, +75,graveler,1,74,31,3,12,4,4,120,70,0,15,0,4,0,0,0,81, +76,golem,1,75,31,3,12,4,4,45,70,0,15,0,4,0,0,0,82, +77,ponyta,1,,32,10,8,3,4,190,70,0,20,0,2,0,0,0,83, +78,rapidash,1,77,32,10,8,3,4,60,70,0,20,0,2,0,0,0,84, +79,slowpoke,1,,33,6,8,9,4,190,70,0,20,0,2,0,0,0,85, +80,slowbro,1,79,33,6,6,9,4,75,70,0,20,0,2,1,0,0,86, +81,magnemite,1,,34,4,4,6,-1,190,70,0,20,0,2,0,0,0,88, +82,magneton,1,81,34,4,11,6,-1,60,70,0,20,0,2,0,0,0,89, +83,farfetchd,1,,35,3,9,3,4,45,70,0,20,0,2,0,0,0,91, +84,doduo,1,,36,3,7,3,4,190,70,0,20,1,2,0,0,0,92, +85,dodrio,1,84,36,3,7,3,4,45,70,0,20,1,2,0,0,0,93, +86,seel,1,,37,9,3,7,4,190,70,0,20,0,2,0,0,0,94, +87,dewgong,1,86,37,9,3,7,4,75,70,0,20,0,2,0,0,0,95, +88,grimer,1,,38,7,4,8,4,190,70,0,20,0,2,0,0,0,96, +89,muk,1,88,38,7,4,8,4,75,70,0,20,0,2,0,0,0,97, +90,shellder,1,,39,7,1,7,4,190,70,0,20,0,1,0,0,0,98, +91,cloyster,1,90,39,7,1,7,4,60,70,0,20,0,1,0,0,0,99, +92,gastly,1,,40,7,1,1,4,190,70,0,20,0,4,0,0,0,100,112 +93,haunter,1,92,40,7,4,1,4,90,70,0,20,0,4,0,0,0,101,113 +94,gengar,1,93,40,7,6,1,4,45,70,0,20,0,4,1,0,0,102,114 +95,onix,1,,41,4,2,1,4,45,70,0,25,0,2,0,0,0,103,175 +96,drowzee,1,,42,10,12,3,4,190,70,0,20,0,2,0,0,0,105, +97,hypno,1,96,42,10,12,3,4,75,70,0,20,1,2,0,0,0,106, +98,krabby,1,,43,8,14,9,4,225,70,0,20,0,2,0,0,0,107, +99,kingler,1,98,43,8,14,9,4,60,70,0,20,0,2,0,0,0,108, +100,voltorb,1,,44,8,1,8,-1,190,70,0,20,0,2,0,0,0,109, +101,electrode,1,100,44,8,1,8,-1,60,70,0,20,0,2,0,0,0,110, +102,exeggcute,1,,45,6,11,2,4,90,70,0,20,0,1,0,0,0,111, +103,exeggutor,1,102,45,10,7,2,4,45,70,0,20,0,1,0,0,0,112, +104,cubone,1,,46,3,6,4,4,190,70,0,20,0,2,0,0,0,113, +105,marowak,1,104,46,3,6,4,4,75,70,0,20,0,2,0,0,0,114, +106,hitmonlee,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,116, +107,hitmonchan,1,236,47,3,12,8,0,45,70,0,25,0,2,0,0,0,117, +108,lickitung,1,,48,6,6,3,4,45,70,0,20,0,2,0,0,0,119, +109,koffing,1,,49,7,1,8,4,190,70,0,20,0,2,0,0,0,121, +110,weezing,1,109,49,7,11,8,4,60,70,0,20,0,2,0,0,0,122, +111,rhyhorn,1,,50,4,8,6,4,120,70,0,20,1,1,0,0,0,123,160 +112,rhydon,1,111,50,4,6,6,4,60,70,0,20,1,1,0,0,0,124,161 +113,chansey,1,440,51,6,6,8,8,30,140,0,40,0,3,0,0,0,127, +114,tangela,1,,52,2,7,3,4,45,70,0,20,0,2,0,0,0,129, +115,kangaskhan,1,,53,3,6,3,8,45,70,0,20,0,2,1,0,0,131, +116,horsea,1,,54,2,5,7,4,225,70,0,20,0,2,0,0,0,132, +117,seadra,1,116,54,2,5,7,4,75,70,0,20,0,2,0,0,0,133, +118,goldeen,1,,55,8,3,9,4,225,70,0,20,1,2,0,0,0,135, +119,seaking,1,118,55,8,3,9,4,60,70,0,20,1,2,0,0,0,136, +120,staryu,1,,56,3,5,7,-1,225,70,0,20,0,1,0,0,0,137, +121,starmie,1,120,56,7,5,7,-1,60,70,0,20,0,1,0,0,0,138, +122,mr-mime,1,439,57,6,12,8,4,45,70,0,25,0,2,0,0,0,140, +123,scyther,1,,58,5,13,3,4,45,70,0,25,1,2,0,0,0,141,188 +124,jynx,1,238,59,8,12,8,8,45,70,0,25,0,2,0,0,0,144, +125,electabuzz,1,239,60,10,6,3,2,45,70,0,25,0,2,0,0,0,146, +126,magmar,1,240,61,8,6,4,2,45,70,0,25,0,2,0,0,0,149, +127,pinsir,1,,62,3,12,2,4,45,70,0,25,0,1,1,0,0,151, +128,tauros,1,,63,3,8,3,0,45,70,0,20,0,1,0,0,0,152, +129,magikarp,1,,64,8,3,9,4,255,70,0,5,1,1,0,0,0,153,13 +130,gyarados,1,129,64,2,2,9,4,45,70,0,5,1,1,1,0,0,154,14 +131,lapras,1,,65,2,3,7,4,45,70,0,40,0,1,0,0,0,155,190 +132,ditto,1,,66,7,1,8,-1,35,70,0,20,0,2,0,0,0,156, +133,eevee,1,,67,3,8,8,1,45,70,0,35,0,2,0,0,0,157,1 +134,vaporeon,1,133,67,2,8,8,1,45,70,0,35,0,2,0,0,0,158,2 +135,jolteon,1,133,67,10,8,8,1,45,70,0,35,0,2,0,0,0,159,3 +136,flareon,1,133,67,8,8,8,1,45,70,0,35,0,2,0,0,0,160,4 +137,porygon,1,,68,6,7,8,-1,45,70,0,20,0,2,0,0,0,166, +138,omanyte,1,,69,2,10,7,1,45,70,0,30,0,2,0,0,0,169, +139,omastar,1,138,69,2,10,7,1,45,70,0,30,0,2,0,0,0,170, +140,kabuto,1,,70,3,14,7,1,45,70,0,30,0,2,0,0,0,171, +141,kabutops,1,140,70,3,6,7,1,45,70,0,30,0,2,0,0,0,172, +142,aerodactyl,1,,71,7,9,4,1,45,70,0,35,0,1,1,0,0,173, +143,snorlax,1,446,72,1,12,4,1,25,70,0,40,0,1,0,0,0,175,179 +144,articuno,1,,73,2,9,5,-1,3,35,0,80,0,1,0,1,0,176,192 +145,zapdos,1,,74,10,9,5,-1,3,35,0,80,0,1,0,1,0,177, +146,moltres,1,,75,10,9,5,-1,3,35,0,80,0,1,0,1,0,178, +147,dratini,1,,76,2,2,9,4,45,35,0,40,0,1,0,0,0,179,76 +148,dragonair,1,147,76,2,2,9,4,45,35,0,40,0,1,0,0,0,180,77 +149,dragonite,1,148,76,3,6,9,4,45,35,0,40,0,1,0,0,0,181,78 +150,mewtwo,1,,77,7,6,5,-1,3,0,0,120,0,1,1,1,0,182,196 +151,mew,1,,78,6,6,5,-1,45,100,0,120,0,4,0,0,1,183, +152,chikorita,2,,79,5,8,3,1,45,70,0,20,0,4,0,0,0,184, +153,bayleef,2,152,79,5,8,3,1,45,70,0,20,0,4,0,0,0,185, +154,meganium,2,153,79,5,8,3,1,45,70,0,20,1,4,0,0,0,186, +155,cyndaquil,2,,80,10,12,3,1,45,70,0,20,0,4,0,0,0,187, +156,quilava,2,155,80,10,8,3,1,45,70,0,20,0,4,0,0,0,188, +157,typhlosion,2,156,80,10,8,3,1,45,70,0,20,0,4,0,0,0,189, +158,totodile,2,,81,2,6,9,1,45,70,0,20,0,4,0,0,0,190, +159,croconaw,2,158,81,2,6,9,1,45,70,0,20,0,4,0,0,0,191, +160,feraligatr,2,159,81,2,6,9,1,45,70,0,20,0,4,0,0,0,192, +161,sentret,2,,82,3,8,3,4,255,70,0,15,0,2,0,0,0,193, +162,furret,2,161,82,3,8,3,4,90,70,0,15,0,2,0,0,0,194, +163,hoothoot,2,,83,3,9,2,4,255,70,0,15,0,2,0,0,0,195, +164,noctowl,2,163,83,3,9,2,4,90,70,0,15,0,2,0,0,0,196, +165,ledyba,2,,84,8,9,2,4,255,70,0,15,1,3,0,0,0,197, +166,ledian,2,165,84,8,9,2,4,90,70,0,15,1,3,0,0,0,198, +167,spinarak,2,,85,5,14,2,4,255,70,0,15,0,3,0,0,0,199, +168,ariados,2,167,85,8,14,2,4,90,70,0,15,0,3,0,0,0,200, +169,crobat,2,42,17,7,13,1,4,90,70,0,15,0,2,0,0,0,46,25 +170,chinchou,2,,86,2,3,7,4,190,70,0,20,0,1,0,0,0,201, +171,lanturn,2,170,86,2,3,7,4,75,70,0,20,0,1,0,0,0,202, +172,pichu,2,,10,10,8,2,4,190,70,1,10,0,2,0,0,0,25,15 +173,cleffa,2,,14,6,6,4,6,150,140,1,10,0,3,0,0,0,36, +174,igglybuff,2,,16,6,12,3,6,170,70,1,10,0,3,0,0,0,41,20 +175,togepi,2,,87,9,12,2,1,190,70,1,10,0,3,0,0,0,203, +176,togetic,2,175,87,9,12,2,1,75,70,0,10,0,3,0,0,0,204, +177,natu,2,,88,5,9,2,4,190,70,0,20,0,2,0,0,0,206, +178,xatu,2,177,88,5,9,2,4,75,70,0,20,1,2,0,0,0,207, +179,mareep,2,,89,9,8,3,4,235,70,0,20,0,4,0,0,0,208,45 +180,flaaffy,2,179,89,6,6,3,4,120,70,0,20,0,4,0,0,0,209,46 +181,ampharos,2,180,89,10,6,3,4,45,70,0,20,0,4,1,0,0,210,47 +182,bellossom,2,44,18,5,12,3,4,45,70,0,20,0,4,0,0,0,50, +183,marill,2,298,90,2,6,9,4,190,70,0,10,0,3,0,0,0,212, +184,azumarill,2,183,90,2,6,9,4,75,70,0,10,0,3,0,0,0,213, +185,sudowoodo,2,438,91,3,12,2,4,65,70,0,20,1,2,0,0,0,215, +186,politoed,2,61,26,5,12,9,4,45,70,0,20,1,4,0,0,0,68, +187,hoppip,2,,92,6,6,3,4,255,70,0,20,0,4,0,0,0,216, +188,skiploom,2,187,92,5,6,3,4,120,70,0,20,0,4,0,0,0,217, +189,jumpluff,2,188,92,2,6,3,4,45,70,0,20,0,4,0,0,0,218, +190,aipom,2,,93,7,6,2,4,45,70,0,20,1,3,0,0,0,219, +191,sunkern,2,,94,10,1,3,4,235,70,0,20,0,4,0,0,0,221, +192,sunflora,2,191,94,10,12,3,4,120,70,0,20,0,4,0,0,0,222, +193,yanma,2,,95,8,13,2,4,75,70,0,20,0,2,0,0,0,223, +194,wooper,2,,96,2,7,9,4,255,70,0,20,1,2,0,0,0,225,18 +195,quagsire,2,194,96,2,6,9,4,90,70,0,20,1,2,0,0,0,226,19 +196,espeon,2,133,67,7,8,8,1,45,70,0,35,0,2,0,0,0,161,5 +197,umbreon,2,133,67,1,8,8,1,45,35,0,35,0,2,0,0,0,162,6 +198,murkrow,2,,97,1,9,2,4,30,35,0,20,1,4,0,0,0,227, +199,slowking,2,79,33,6,6,9,4,70,70,0,20,0,2,0,0,0,87, +200,misdreavus,2,,98,4,1,1,4,45,35,0,25,0,3,0,0,0,229,183 +201,unown,2,,99,1,1,5,-1,225,70,0,40,0,2,0,0,0,231, +202,wobbuffet,2,360,100,2,5,1,4,45,70,0,20,1,2,0,0,0,233, +203,girafarig,2,,101,10,8,3,4,60,70,0,20,1,2,0,0,0,234, +204,pineco,2,,102,4,1,2,4,190,70,0,20,0,2,0,0,0,235,56 +205,forretress,2,204,102,7,1,2,4,75,70,0,20,0,2,0,0,0,236,57 +206,dunsparce,2,,103,10,2,1,4,190,70,0,20,0,2,0,0,0,237, +207,gligar,2,,104,7,9,4,4,60,70,0,20,1,4,0,0,0,238, +208,steelix,2,95,41,4,2,1,4,25,70,0,25,1,2,1,0,0,104,176 +209,snubbull,2,,105,6,12,8,6,190,70,0,20,0,3,0,0,0,240, +210,granbull,2,209,105,7,6,8,6,75,70,0,20,0,3,0,0,0,241, +211,qwilfish,2,,106,4,3,7,4,45,70,0,20,0,2,0,0,0,242, +212,scizor,2,123,58,8,13,3,4,25,70,0,25,1,2,1,0,0,142,189 +213,shuckle,2,,107,10,14,4,4,190,70,0,20,0,4,0,0,0,243, +214,heracross,2,,108,2,12,2,4,45,70,0,25,1,1,1,0,0,244, +215,sneasel,2,,109,1,6,2,4,60,35,0,20,1,4,0,0,0,245,181 +216,teddiursa,2,,110,3,6,4,4,120,70,0,20,0,2,0,0,0,247, +217,ursaring,2,216,110,3,6,4,4,60,70,0,20,1,2,0,0,0,248, +218,slugma,2,,111,8,2,4,4,190,70,0,20,0,2,0,0,0,249, +219,magcargo,2,218,111,8,2,4,4,75,70,0,20,0,2,0,0,0,250, +220,swinub,2,,112,3,8,1,4,225,70,0,20,0,1,0,0,0,251, +221,piloswine,2,220,112,3,8,1,4,75,70,0,20,1,1,0,0,0,252, +222,corsola,2,,113,6,14,7,6,60,70,0,20,0,3,0,0,0,254, +223,remoraid,2,,114,4,3,7,4,190,70,0,20,0,2,0,0,0,255, +224,octillery,2,223,114,8,10,7,4,75,70,0,20,1,2,0,0,0,256, +225,delibird,2,,115,8,9,4,4,45,70,0,20,0,3,0,0,0,257, +226,mantine,2,458,116,7,9,7,4,25,70,0,25,0,1,0,0,0,259, +227,skarmory,2,,117,4,9,6,4,25,70,0,25,0,1,0,0,0,260, +228,houndour,2,,118,1,8,6,4,120,35,0,20,0,1,0,0,0,261, +229,houndoom,2,228,118,1,8,6,4,45,35,0,20,1,1,1,0,0,262, +230,kingdra,2,117,54,2,5,7,4,45,70,0,20,0,2,0,0,0,134, +231,phanpy,2,,119,2,8,6,4,120,70,0,20,0,2,0,0,0,263, +232,donphan,2,231,119,4,8,6,4,60,70,0,20,1,2,0,0,0,264, +233,porygon2,2,137,68,8,7,8,-1,45,70,0,20,0,2,0,0,0,167, +234,stantler,2,,120,3,8,2,4,45,70,0,20,0,1,0,0,0,265, +235,smeargle,2,,121,9,6,8,4,45,70,0,20,0,3,0,0,0,266, +236,tyrogue,2,,47,7,12,8,0,75,70,1,25,0,2,0,0,0,115, +237,hitmontop,2,236,47,3,6,8,0,45,70,0,25,0,2,0,0,0,118, +238,smoochum,2,,59,6,12,8,8,45,70,1,25,0,2,0,0,0,143, +239,elekid,2,,60,10,12,3,2,45,70,1,25,0,2,0,0,0,145, +240,magby,2,,61,8,6,4,2,45,70,1,25,0,2,0,0,0,148, +241,miltank,2,,122,6,6,3,8,45,70,0,20,0,1,0,0,0,267, +242,blissey,2,113,51,6,12,8,8,30,140,0,40,0,3,0,0,0,128, +243,raikou,2,,123,10,8,3,-1,3,35,0,80,0,1,0,1,0,268, +244,entei,2,,124,3,8,3,-1,3,35,0,80,0,1,0,1,0,269, +245,suicune,2,,125,2,8,3,-1,3,35,0,80,0,1,0,1,0,270, +246,larvitar,2,,126,5,6,4,4,45,35,0,40,0,1,0,0,0,271,79 +247,pupitar,2,246,126,4,2,4,4,45,35,0,40,0,1,0,0,0,272,80 +248,tyranitar,2,247,126,5,6,4,4,45,35,0,40,0,1,1,0,0,273,81 +249,lugia,2,,127,9,9,5,-1,3,0,0,120,0,1,0,1,0,274, +250,ho-oh,2,,128,8,9,5,-1,3,0,0,120,0,1,0,1,0,275, +251,celebi,2,,129,5,12,2,-1,45,100,0,120,0,4,0,0,1,276, +252,treecko,3,,130,5,6,2,1,45,70,0,20,0,4,0,0,0,277,130 +253,grovyle,3,252,130,5,6,2,1,45,70,0,20,0,4,0,0,0,278,131 +254,sceptile,3,253,130,5,6,2,1,45,70,0,20,0,4,1,0,0,279,132 +255,torchic,3,,131,8,7,3,1,45,70,0,20,1,4,0,0,0,280, +256,combusken,3,255,131,8,6,3,1,45,70,0,20,1,4,0,0,0,281, +257,blaziken,3,256,131,8,6,3,1,45,70,0,20,1,4,1,0,0,282, +258,mudkip,3,,132,2,8,9,1,45,70,0,20,0,4,0,0,0,283, +259,marshtomp,3,258,132,2,6,9,1,45,70,0,20,0,4,0,0,0,284, +260,swampert,3,259,132,2,6,9,1,45,70,0,20,0,4,1,0,0,285, +261,poochyena,3,,133,4,8,3,4,255,70,0,15,0,2,0,0,0,286, +262,mightyena,3,261,133,4,8,3,4,127,70,0,15,0,2,0,0,0,287, +263,zigzagoon,3,,134,3,8,3,4,255,70,0,15,0,2,0,0,0,288, +264,linoone,3,263,134,9,8,3,4,90,70,0,15,0,2,0,0,0,289, +265,wurmple,3,,135,8,14,2,4,255,70,0,15,0,2,0,0,0,290, +266,silcoon,3,265,135,9,1,2,4,120,70,0,15,0,2,0,0,0,291, +267,beautifly,3,266,135,10,13,2,4,45,70,0,15,1,2,0,0,0,292, +268,cascoon,3,265,135,7,1,2,4,120,70,0,15,0,2,0,0,0,293, +269,dustox,3,268,135,5,13,2,4,45,70,0,15,1,2,0,0,0,294, +270,lotad,3,,136,5,14,9,4,255,70,0,15,0,4,0,0,0,295, +271,lombre,3,270,136,5,12,9,4,120,70,0,15,0,4,0,0,0,296, +272,ludicolo,3,271,136,5,12,9,4,45,70,0,15,1,4,0,0,0,297, +273,seedot,3,,137,3,7,2,4,255,70,0,15,0,4,0,0,0,298, +274,nuzleaf,3,273,137,3,12,2,4,120,70,0,15,1,4,0,0,0,299, +275,shiftry,3,274,137,3,12,2,4,45,70,0,15,1,4,0,0,0,300, +276,taillow,3,,138,2,9,3,4,200,70,0,15,0,4,0,0,0,301, +277,swellow,3,276,138,2,9,3,4,45,70,0,15,0,4,0,0,0,302, +278,wingull,3,,139,9,9,7,4,190,70,0,20,0,2,0,0,0,303, +279,pelipper,3,278,139,10,9,7,4,45,70,0,20,0,2,0,0,0,304, +280,ralts,3,,140,9,12,8,4,235,35,0,20,0,1,0,0,0,305,9 +281,kirlia,3,280,140,9,12,8,4,120,35,0,20,0,1,0,0,0,306,10 +282,gardevoir,3,281,140,9,12,8,4,45,35,0,20,0,1,1,0,0,307,11 +283,surskit,3,,141,2,14,9,4,200,70,0,15,0,2,0,0,0,309, +284,masquerain,3,283,141,2,13,9,4,75,70,0,15,0,2,0,0,0,310, +285,shroomish,3,,142,3,7,2,4,255,70,0,15,0,6,0,0,0,311, +286,breloom,3,285,142,5,6,2,4,90,70,0,15,0,6,0,0,0,312, +287,slakoth,3,,143,3,8,2,4,255,70,0,15,0,1,0,0,0,313, +288,vigoroth,3,287,143,9,6,2,4,120,70,0,15,0,1,0,0,0,314, +289,slaking,3,288,143,3,12,2,4,45,70,0,15,0,1,0,0,0,315, +290,nincada,3,,144,4,14,2,4,255,70,0,15,0,5,0,0,0,316, +291,ninjask,3,290,144,10,13,2,4,120,70,0,15,0,5,0,0,0,317, +292,shedinja,3,290,144,3,5,2,-1,45,70,0,15,0,5,0,0,0,318, +293,whismur,3,,145,6,6,1,4,190,70,0,20,0,4,0,0,0,319, +294,loudred,3,293,145,2,6,1,4,120,70,0,20,0,4,0,0,0,320, +295,exploud,3,294,145,2,6,1,4,45,70,0,20,0,4,0,0,0,321, +296,makuhita,3,,146,10,12,4,2,180,70,0,20,0,6,0,0,0,322, +297,hariyama,3,296,146,3,12,4,2,200,70,0,20,0,6,0,0,0,323, +298,azurill,3,,90,2,7,9,6,150,70,1,10,0,3,0,0,0,211, +299,nosepass,3,,147,4,12,1,4,255,70,0,20,0,2,0,0,0,324, +300,skitty,3,,148,6,8,2,6,255,70,0,15,0,3,0,0,0,326, +301,delcatty,3,300,148,7,8,2,6,60,70,0,15,0,3,0,0,0,327, +302,sableye,3,,149,7,12,1,4,45,35,0,25,0,4,1,0,0,328, +303,mawile,3,,150,1,12,1,4,45,70,0,20,0,3,1,0,0,329, +304,aron,3,,151,4,8,4,4,180,35,0,35,0,1,0,0,0,330,149 +305,lairon,3,304,151,4,8,4,4,90,35,0,35,0,1,0,0,0,331,150 +306,aggron,3,305,151,4,6,4,4,45,35,0,35,0,1,1,0,0,332,151 +307,meditite,3,,152,2,12,4,4,180,70,0,20,1,2,0,0,0,333, +308,medicham,3,307,152,8,12,4,4,90,70,0,20,1,2,1,0,0,334, +309,electrike,3,,153,5,8,3,4,120,70,0,20,0,1,0,0,0,335, +310,manectric,3,309,153,10,8,3,4,45,70,0,20,0,1,1,0,0,336, +311,plusle,3,,154,10,6,3,4,200,70,0,20,0,2,0,0,0,337, +312,minun,3,,155,10,6,3,4,200,70,0,20,0,2,0,0,0,338, +313,volbeat,3,,156,4,6,2,0,150,70,0,15,0,5,0,0,0,339, +314,illumise,3,,157,7,12,2,8,150,70,0,15,0,6,0,0,0,340, +315,roselia,3,406,158,5,12,3,4,150,70,0,20,1,4,0,0,0,342, +316,gulpin,3,,159,5,4,3,4,225,70,0,20,1,6,0,0,0,344, +317,swalot,3,316,159,7,4,3,4,75,70,0,20,1,6,0,0,0,345, +318,carvanha,3,,160,8,3,7,4,225,35,0,20,0,1,0,0,0,346, +319,sharpedo,3,318,160,2,3,7,4,60,35,0,20,0,1,1,0,0,347, +320,wailmer,3,,161,2,3,7,4,125,70,0,40,0,6,0,0,0,348, +321,wailord,3,320,161,2,3,7,4,60,70,0,40,0,6,0,0,0,349, +322,numel,3,,162,10,8,4,4,255,70,0,20,1,2,0,0,0,350, +323,camerupt,3,322,162,8,8,4,4,150,70,0,20,1,2,1,0,0,351, +324,torkoal,3,,163,3,8,4,4,90,70,0,20,0,2,0,0,0,352, +325,spoink,3,,164,1,4,4,4,255,70,0,20,0,3,0,0,0,353, +326,grumpig,3,325,164,7,6,4,4,60,70,0,20,0,3,0,0,0,354, +327,spinda,3,,165,3,6,4,4,255,70,0,15,0,3,0,0,0,355, +328,trapinch,3,,166,3,14,6,4,255,70,0,20,0,4,0,0,0,356, +329,vibrava,3,328,166,5,13,6,4,120,70,0,20,0,4,0,0,0,357, +330,flygon,3,329,166,5,9,6,4,45,70,0,20,0,4,0,0,0,358, +331,cacnea,3,,167,5,12,6,4,190,35,0,20,0,4,0,0,0,359, +332,cacturne,3,331,167,5,12,6,4,60,35,0,20,1,4,0,0,0,360, +333,swablu,3,,168,2,9,2,4,255,70,0,20,0,5,0,0,0,361, +334,altaria,3,333,168,2,9,2,4,45,70,0,20,0,5,1,0,0,362, +335,zangoose,3,,169,9,6,3,4,90,70,0,20,0,5,0,0,0,363, +336,seviper,3,,170,1,2,3,4,90,70,0,20,0,6,0,0,0,364, +337,lunatone,3,,171,10,1,1,-1,45,70,0,25,0,3,0,0,0,365, +338,solrock,3,,172,8,1,1,-1,45,70,0,25,0,3,0,0,0,366, +339,barboach,3,,173,4,3,9,4,190,70,0,20,0,2,0,0,0,367, +340,whiscash,3,339,173,2,3,9,4,75,70,0,20,0,2,0,0,0,368, +341,corphish,3,,174,8,14,9,4,205,70,0,15,0,6,0,0,0,369, +342,crawdaunt,3,341,174,8,14,9,4,155,70,0,15,0,6,0,0,0,370, +343,baltoy,3,,175,3,4,6,-1,255,70,0,20,0,2,0,0,0,371, +344,claydol,3,343,175,1,4,6,-1,90,70,0,20,0,2,0,0,0,372, +345,lileep,3,,176,7,5,7,1,45,70,0,30,0,5,0,0,0,373, +346,cradily,3,345,176,5,5,7,1,45,70,0,30,0,5,0,0,0,374, +347,anorith,3,,177,4,14,9,1,45,70,0,30,0,5,0,0,0,375,171 +348,armaldo,3,347,177,4,6,9,1,45,70,0,30,0,5,0,0,0,376,172 +349,feebas,3,,178,3,3,9,4,255,70,0,20,0,5,0,0,0,377, +350,milotic,3,349,178,6,2,9,4,60,70,0,20,1,5,0,0,0,378, +351,castform,3,,179,4,1,3,4,45,70,0,25,0,2,1,0,0,379, +352,kecleon,3,,180,5,6,2,4,200,70,0,20,0,4,0,0,0,380, +353,shuppet,3,,181,1,1,8,4,225,35,0,25,0,3,0,0,0,381, +354,banette,3,353,181,1,6,8,4,45,35,0,25,0,3,1,0,0,382, +355,duskull,3,,182,1,4,2,4,190,35,0,25,0,3,0,0,0,383,69 +356,dusclops,3,355,182,1,12,2,4,90,35,0,25,0,3,0,0,0,384,70 +357,tropius,3,,183,5,8,2,4,200,70,0,25,0,1,0,0,0,386, +358,chimecho,3,433,184,2,4,3,4,45,70,0,25,0,3,0,0,0,388,53 +359,absol,3,,185,9,8,4,4,30,35,0,25,0,4,1,0,0,389, +360,wynaut,3,,100,2,6,1,4,125,70,1,20,0,2,0,0,0,232, +361,snorunt,3,,186,4,12,1,4,190,70,0,20,0,2,0,0,0,390,93 +362,glalie,3,361,186,4,1,1,4,75,70,0,20,0,2,1,0,0,391,94 +363,spheal,3,,187,2,3,7,4,255,70,0,20,0,4,0,0,0,393,60 +364,sealeo,3,363,187,2,3,7,4,120,70,0,20,0,4,0,0,0,394,61 +365,walrein,3,364,187,2,8,7,4,45,70,0,20,0,4,0,0,0,395,62 +366,clamperl,3,,188,2,1,7,4,255,70,0,20,0,5,0,0,0,396, +367,huntail,3,366,188,2,2,7,4,60,70,0,20,0,5,0,0,0,397, +368,gorebyss,3,366,188,6,2,7,4,60,70,0,20,0,5,0,0,0,398, +369,relicanth,3,,189,4,3,7,1,25,70,0,40,1,1,0,0,0,399, +370,luvdisc,3,,190,6,3,7,6,225,70,0,20,0,3,0,0,0,400, +371,bagon,3,,191,2,12,6,4,45,35,0,40,0,1,0,0,0,401, +372,shelgon,3,371,191,9,8,6,4,45,35,0,40,0,1,0,0,0,402, +373,salamence,3,372,191,2,8,6,4,45,35,0,40,0,1,1,0,0,403, +374,beldum,3,,192,2,5,6,-1,3,35,0,40,0,1,0,0,0,404,82 +375,metang,3,374,192,2,4,6,-1,3,35,0,40,0,1,0,0,0,405,83 +376,metagross,3,375,192,2,11,6,-1,3,35,0,40,0,1,1,0,0,406,84 +377,regirock,3,,193,3,12,1,-1,3,35,0,80,0,1,0,1,0,407, +378,regice,3,,194,2,12,1,-1,3,35,0,80,0,1,0,1,0,408, +379,registeel,3,,195,4,12,1,-1,3,35,0,80,0,1,0,1,0,409,193 +380,latias,3,,196,8,9,9,8,3,90,0,120,0,1,1,1,0,410, +381,latios,3,,197,2,9,9,0,3,90,0,120,0,1,1,1,0,411, +382,kyogre,3,,198,2,3,7,-1,3,0,0,120,0,1,1,1,0,412, +383,groudon,3,,199,8,6,6,-1,3,0,0,120,0,1,1,1,0,413,194 +384,rayquaza,3,,200,5,2,5,-1,45,0,0,120,0,1,1,1,0,414,200 +385,jirachi,3,,201,10,12,4,-1,3,100,0,120,0,1,0,0,1,415, +386,deoxys,3,,202,8,12,5,-1,3,0,0,120,0,1,1,0,1,416, +387,turtwig,4,,203,5,8,,1,45,70,0,20,0,4,0,0,0,417, +388,grotle,4,387,203,5,8,,1,45,70,0,20,0,4,0,0,0,418, +389,torterra,4,388,203,5,8,,1,45,70,0,20,0,4,0,0,0,419, +390,chimchar,4,,204,3,6,,1,45,70,0,20,0,4,0,0,0,420,115 +391,monferno,4,390,204,3,6,,1,45,70,0,20,0,4,0,0,0,421,116 +392,infernape,4,391,204,3,6,,1,45,70,0,20,0,4,0,0,0,422,117 +393,piplup,4,,205,2,12,,1,45,70,0,20,0,4,0,0,0,423,133 +394,prinplup,4,393,205,2,6,,1,45,70,0,20,0,4,0,0,0,424,134 +395,empoleon,4,394,205,2,6,,1,45,70,0,20,0,4,0,0,0,425,135 +396,starly,4,,206,3,9,,4,255,70,0,15,1,4,0,0,0,426,26 +397,staravia,4,396,206,3,9,,4,120,70,0,15,1,4,0,0,0,427,27 +398,staraptor,4,397,206,3,9,,4,45,70,0,15,1,4,0,0,0,428,28 +399,bidoof,4,,207,3,8,,4,255,70,0,15,1,2,0,0,0,429,29 +400,bibarel,4,399,207,3,6,,4,127,70,0,15,1,2,0,0,0,430,30 +401,kricketot,4,,208,8,12,,4,255,70,0,15,1,4,0,0,0,431, +402,kricketune,4,401,208,8,13,,4,45,70,0,15,1,4,0,0,0,432, +403,shinx,4,,209,2,8,,4,235,70,0,20,1,4,0,0,0,433,34 +404,luxio,4,403,209,2,8,,4,120,100,0,20,1,4,0,0,0,434,35 +405,luxray,4,404,209,2,8,,4,45,70,0,20,1,4,0,0,0,435,36 +406,budew,4,,158,5,12,,4,255,70,1,20,0,4,0,0,0,341, +407,roserade,4,315,158,5,12,,4,75,70,0,20,1,4,0,0,0,343, +408,cranidos,4,,211,2,6,,1,45,70,0,30,0,5,0,0,0,436, +409,rampardos,4,408,211,2,6,,1,45,70,0,30,0,5,0,0,0,437, +410,shieldon,4,,212,4,8,,1,45,70,0,30,0,5,0,0,0,438,163 +411,bastiodon,4,410,212,4,8,,1,45,70,0,30,0,5,0,0,0,439,164 +412,burmy,4,,213,5,5,,4,120,70,0,15,0,2,1,0,0,440, +413,wormadam,4,412,213,5,5,,8,45,70,0,15,0,2,0,0,0,441, +414,mothim,4,412,213,10,13,,0,45,70,0,15,0,2,0,0,0,442, +415,combee,4,,214,10,11,,1,120,70,0,15,1,4,0,0,0,443, +416,vespiquen,4,415,214,10,13,,8,45,70,0,15,0,4,0,0,0,444, +417,pachirisu,4,,215,9,8,,4,200,100,0,10,1,2,0,0,0,445, +418,buizel,4,,216,3,8,,4,190,70,0,20,1,2,0,0,0,446, +419,floatzel,4,418,216,3,8,,4,75,70,0,20,1,2,0,0,0,447, +420,cherubi,4,,217,6,11,,4,190,70,0,20,0,2,0,0,0,448, +421,cherrim,4,420,217,7,7,,4,75,70,0,20,0,2,1,0,0,449, +422,shellos,4,,218,7,2,,4,190,70,0,20,0,2,0,0,0,450, +423,gastrodon,4,422,218,7,2,,4,75,70,0,20,0,2,0,0,0,451, +424,ambipom,4,190,93,7,6,,4,45,100,0,20,1,3,0,0,0,220, +425,drifloon,4,,219,7,4,,4,125,70,0,30,0,6,0,0,0,452,167 +426,drifblim,4,425,219,7,4,,4,60,70,0,30,0,6,0,0,0,453,168 +427,buneary,4,,220,3,6,,4,190,0,0,20,0,2,0,0,0,454, +428,lopunny,4,427,220,3,6,,4,60,140,0,20,0,2,1,0,0,455, +429,mismagius,4,200,98,7,1,,4,45,35,0,25,0,3,0,0,0,230,184 +430,honchkrow,4,198,97,1,9,,4,30,35,0,20,0,4,0,0,0,228, +431,glameow,4,,221,4,8,,6,190,70,0,20,0,3,0,0,0,456, +432,purugly,4,431,221,4,8,,6,75,70,0,20,0,3,0,0,0,457, +433,chingling,4,,184,10,12,,4,120,70,1,25,0,3,0,0,0,387,52 +434,stunky,4,,223,7,8,,4,225,70,0,20,0,2,0,0,0,458, +435,skuntank,4,434,223,7,8,,4,60,70,0,20,0,2,0,0,0,459, +436,bronzor,4,,224,5,1,,-1,255,70,0,20,0,2,0,0,0,460, +437,bronzong,4,436,224,5,4,,-1,90,70,0,20,0,2,0,0,0,461, +438,bonsly,4,,91,3,7,,4,255,70,1,20,0,2,0,0,0,214, +439,mime-jr,4,,57,6,12,,4,145,70,1,25,0,2,0,0,0,139, +440,happiny,4,,51,6,12,,8,130,140,1,40,0,3,0,0,0,126, +441,chatot,4,,228,1,9,,4,30,35,0,20,0,4,0,0,0,462, +442,spiritomb,4,,229,7,5,,4,100,70,0,30,0,2,0,0,0,463,187 +443,gible,4,,230,2,6,,4,45,70,0,40,1,1,0,0,0,464,85 +444,gabite,4,443,230,2,6,,4,45,70,0,40,1,1,0,0,0,465,86 +445,garchomp,4,444,230,2,6,,4,45,70,0,40,1,1,1,0,0,466,87 +446,munchlax,4,,72,1,12,,1,50,70,1,40,0,1,0,0,0,174,178 +447,riolu,4,,232,2,6,,1,75,70,1,25,0,4,0,0,0,467,50 +448,lucario,4,447,232,2,6,,1,45,70,0,25,0,4,1,0,0,468,51 +449,hippopotas,4,,233,3,8,,4,140,70,0,30,1,1,0,0,0,469, +450,hippowdon,4,449,233,3,8,,4,60,70,0,30,1,1,0,0,0,470, +451,skorupi,4,,234,7,14,,4,120,70,0,20,0,1,0,0,0,471,156 +452,drapion,4,451,234,7,14,,4,45,70,0,20,0,1,0,0,0,472,157 +453,croagunk,4,,235,2,12,,4,140,100,0,10,1,2,0,0,0,473,88 +454,toxicroak,4,453,235,2,12,,4,75,70,0,20,1,2,0,0,0,474,89 +455,carnivine,4,,236,5,10,,4,200,70,0,25,0,1,0,0,0,475,186 +456,finneon,4,,237,2,3,,4,190,70,0,20,1,5,0,0,0,476, +457,lumineon,4,456,237,2,3,,4,75,70,0,20,1,5,0,0,0,477, +458,mantyke,4,,116,2,9,,4,25,70,1,25,0,1,0,0,0,258, +459,snover,4,,239,9,6,,4,120,70,0,20,1,1,0,0,0,478, +460,abomasnow,4,459,239,9,6,,4,60,70,0,20,1,1,1,0,0,479, +461,weavile,4,215,109,1,6,,4,45,35,0,20,1,4,0,0,0,246,182 +462,magnezone,4,82,34,4,4,,-1,30,70,0,20,0,2,0,0,0,90, +463,lickilicky,4,108,48,6,12,,4,30,70,0,20,0,2,0,0,0,120, +464,rhyperior,4,112,50,4,6,,4,30,70,0,20,1,1,0,0,0,125,162 +465,tangrowth,4,114,52,2,12,,4,30,70,0,20,1,2,0,0,0,130, +466,electivire,4,125,60,10,6,,2,30,70,0,25,0,2,0,0,0,147, +467,magmortar,4,126,61,8,6,,2,30,70,0,25,0,2,0,0,0,150, +468,togekiss,4,176,87,9,9,,1,30,70,0,10,0,3,0,0,0,205, +469,yanmega,4,193,95,5,13,,4,30,70,0,20,0,2,0,0,0,224, +470,leafeon,4,133,67,5,8,,1,45,35,0,35,0,2,0,0,0,163,7 +471,glaceon,4,133,67,2,8,,1,45,35,0,35,0,2,0,0,0,164,8 +472,gliscor,4,207,104,7,9,,4,30,70,0,20,0,4,0,0,0,239, +473,mamoswine,4,221,112,3,8,,4,50,70,0,20,1,1,0,0,0,253, +474,porygon-z,4,233,68,8,4,,-1,30,70,0,20,0,2,0,0,0,168, +475,gallade,4,281,140,9,12,,0,45,35,0,20,0,1,1,0,0,308,12 +476,probopass,4,299,147,4,11,,4,60,70,0,20,0,2,0,0,0,325, +477,dusknoir,4,356,182,1,4,,4,45,35,0,25,0,3,0,0,0,385,71 +478,froslass,4,361,186,9,4,,8,75,70,0,20,0,2,0,0,0,392,95 +479,rotom,4,,240,8,1,,-1,45,70,0,20,0,2,1,0,0,480, +480,uxie,4,,241,10,6,,-1,3,140,0,80,0,1,0,1,0,481, +481,mesprit,4,,242,6,6,,-1,3,140,0,80,0,1,0,1,0,482, +482,azelf,4,,243,2,6,,-1,3,140,0,80,0,1,0,1,0,483, +483,dialga,4,,244,9,8,,-1,3,0,0,120,0,1,0,1,0,484,195 +484,palkia,4,,245,7,6,,-1,3,0,0,120,0,1,0,1,0,485, +485,heatran,4,,246,3,8,,4,3,100,0,10,0,1,0,1,0,486, +486,regigigas,4,,247,9,12,,-1,3,0,0,120,0,1,0,1,0,487, +487,giratina,4,,248,1,10,,-1,3,0,0,120,0,1,1,1,0,488, +488,cresselia,4,,249,10,2,,8,3,100,0,120,0,1,0,1,0,489, +489,phione,4,,250,2,4,,-1,30,70,0,40,0,1,0,0,1,490, +490,manaphy,4,,250,2,12,,-1,3,70,0,10,0,1,0,0,1,491, +491,darkrai,4,,252,1,12,,-1,3,0,0,120,0,1,0,0,1,492, +492,shaymin,4,,253,5,8,,-1,45,100,0,120,0,4,1,0,1,493, +493,arceus,4,,254,9,8,,-1,3,0,0,120,0,1,1,0,1,494,199 +494,victini,5,,255,10,12,,-1,3,100,0,120,0,1,0,0,1,495, +495,snivy,5,,256,5,6,,1,45,70,0,20,0,4,0,0,0,496,118 +496,servine,5,495,256,5,6,,1,45,70,0,20,0,4,0,0,0,497,119 +497,serperior,5,496,256,5,2,,1,45,70,0,20,0,4,0,0,0,498,120 +498,tepig,5,,257,8,8,,1,45,70,0,20,0,4,0,0,0,499,121 +499,pignite,5,498,257,8,6,,1,45,70,0,20,0,4,0,0,0,500,122 +500,emboar,5,499,257,8,6,,1,45,70,0,20,0,4,0,0,0,501,123 +501,oshawott,5,,258,2,6,,1,45,70,0,20,0,4,0,0,0,502,106 +502,dewott,5,501,258,2,6,,1,45,70,0,20,0,4,0,0,0,503,107 +503,samurott,5,502,258,2,8,,1,45,70,0,20,0,4,0,0,0,504,108 +504,patrat,5,,259,3,8,,4,255,70,0,15,0,2,0,0,0,505, +505,watchog,5,504,259,3,6,,4,255,70,0,20,0,2,0,0,0,506, +506,lillipup,5,,260,3,8,,4,255,70,0,15,0,4,0,0,0,507, +507,herdier,5,506,260,4,8,,4,120,70,0,15,0,4,0,0,0,508, +508,stoutland,5,507,260,4,8,,4,45,70,0,15,0,4,0,0,0,509, +509,purrloin,5,,261,7,8,,4,255,70,0,20,0,2,0,0,0,510, +510,liepard,5,509,261,7,8,,4,90,70,0,20,0,2,0,0,0,511, +511,pansage,5,,262,5,6,,1,190,70,0,20,0,2,0,0,0,512,136 +512,simisage,5,511,262,5,6,,1,75,70,0,20,0,2,0,0,0,513,137 +513,pansear,5,,263,8,6,,1,190,70,0,20,0,2,0,0,0,514,138 +514,simisear,5,513,263,8,6,,1,75,70,0,20,0,2,0,0,0,515,139 +515,panpour,5,,264,2,6,,1,190,70,0,20,0,2,0,0,0,516,140 +516,simipour,5,515,264,2,6,,1,75,70,0,20,0,2,0,0,0,517,141 +517,munna,5,,265,6,8,,4,190,70,0,10,0,3,0,0,0,518,72 +518,musharna,5,517,265,6,12,,4,75,70,0,10,0,3,0,0,0,519,73 +519,pidove,5,,266,4,9,,4,255,70,0,15,0,4,0,0,0,520, +520,tranquill,5,519,266,4,9,,4,120,70,0,15,0,4,0,0,0,521, +521,unfezant,5,520,266,4,9,,4,45,70,0,15,1,4,0,0,0,522, +522,blitzle,5,,267,1,8,,4,190,70,0,20,0,2,0,0,0,523,74 +523,zebstrika,5,522,267,1,8,,4,75,70,0,20,0,2,0,0,0,524,75 +524,roggenrola,5,,268,2,7,,4,255,70,0,15,0,4,0,0,0,525,40 +525,boldore,5,524,268,2,10,,4,120,70,0,15,0,4,0,0,0,526,41 +526,gigalith,5,525,268,2,10,,4,45,70,0,15,0,4,0,0,0,527,42 +527,woobat,5,,269,2,9,,4,190,70,0,15,0,2,0,0,0,528, +528,swoobat,5,527,269,2,9,,4,45,70,0,15,0,2,0,0,0,529, +529,drilbur,5,,270,4,6,,4,120,70,0,20,0,2,0,0,0,530,152 +530,excadrill,5,529,270,4,12,,4,60,70,0,20,0,2,0,0,0,531,153 +531,audino,5,,271,6,6,,4,255,70,0,20,0,3,1,0,0,532,185 +532,timburr,5,,272,4,12,,2,180,70,0,20,0,4,0,0,0,533,101 +533,gurdurr,5,532,272,4,12,,2,90,70,0,20,0,4,0,0,0,534,102 +534,conkeldurr,5,533,272,3,12,,2,45,70,0,20,0,4,0,0,0,535,103 +535,tympole,5,,273,2,3,,4,255,70,0,20,0,4,0,0,0,536, +536,palpitoad,5,535,273,2,6,,4,120,70,0,20,0,4,0,0,0,537, +537,seismitoad,5,536,273,2,12,,4,45,70,0,20,0,4,0,0,0,538, +538,throh,5,,274,8,12,,0,45,70,0,20,0,2,0,0,0,539, +539,sawk,5,,275,2,12,,0,45,70,0,20,0,2,0,0,0,540, +540,sewaddle,5,,276,10,14,,4,255,70,0,15,0,4,0,0,0,541,124 +541,swadloon,5,540,276,5,4,,4,120,70,0,15,0,4,0,0,0,542,125 +542,leavanny,5,541,276,10,12,,4,45,70,0,15,0,4,0,0,0,543,126 +543,venipede,5,,277,8,14,,4,255,70,0,15,0,4,0,0,0,544,31 +544,whirlipede,5,543,277,4,1,,4,120,70,0,15,0,4,0,0,0,545,32 +545,scolipede,5,544,277,8,14,,4,45,70,0,20,0,4,0,0,0,546,33 +546,cottonee,5,,278,5,1,,4,190,70,0,20,0,2,0,0,0,547,48 +547,whimsicott,5,546,278,5,12,,4,75,70,0,20,0,2,0,0,0,548,49 +548,petilil,5,,279,5,5,,8,190,70,0,20,0,2,0,0,0,549,43 +549,lilligant,5,548,279,5,5,,8,75,70,0,20,0,2,0,0,0,550,44 +550,basculin,5,,280,5,3,,4,25,70,0,40,0,2,0,0,0,551, +551,sandile,5,,281,3,8,,4,180,70,0,20,0,4,0,0,0,552,66 +552,krokorok,5,551,281,3,8,,4,90,70,0,20,0,4,0,0,0,553,67 +553,krookodile,5,552,281,8,6,,4,45,70,0,20,0,4,0,0,0,554,68 +554,darumaka,5,,282,8,12,,4,120,70,0,20,0,4,0,0,0,555,142 +555,darmanitan,5,554,282,8,8,,4,60,70,0,20,0,4,1,0,0,556,143 +556,maractus,5,,283,5,5,,4,255,70,0,20,0,2,0,0,0,557, +557,dwebble,5,,284,8,14,,4,190,70,0,20,0,2,0,0,0,558, +558,crustle,5,557,284,8,14,,4,75,70,0,20,0,2,0,0,0,559, +559,scraggy,5,,285,10,6,,4,180,35,0,15,0,2,0,0,0,560,165 +560,scrafty,5,559,285,8,6,,4,90,70,0,15,0,2,0,0,0,561,166 +561,sigilyph,5,,286,1,9,,4,45,70,0,20,0,2,0,0,0,562, +562,yamask,5,,287,1,4,,4,190,70,0,25,0,2,0,0,0,563, +563,cofagrigus,5,562,287,10,5,,4,90,70,0,25,0,2,0,0,0,564, +564,tirtouga,5,,288,2,8,,1,45,70,0,30,0,2,0,0,0,565, +565,carracosta,5,564,288,2,6,,1,45,70,0,30,0,2,0,0,0,566, +566,archen,5,,289,10,9,,1,45,70,0,30,0,2,0,0,0,567, +567,archeops,5,566,289,10,9,,1,45,70,0,30,0,2,0,0,0,568, +568,trubbish,5,,290,5,12,,4,190,70,0,20,0,2,0,0,0,569, +569,garbodor,5,568,290,5,12,,4,60,70,0,20,0,2,0,0,0,570, +570,zorua,5,,291,4,8,,1,75,70,0,25,0,4,0,0,0,571,154 +571,zoroark,5,570,291,4,6,,1,45,70,0,20,0,4,0,0,0,572,155 +572,minccino,5,,292,4,8,,6,255,70,0,15,0,3,0,0,0,573,96 +573,cinccino,5,572,292,4,8,,6,60,70,0,15,0,3,0,0,0,574,97 +574,gothita,5,,293,7,12,,6,200,70,0,20,0,4,0,0,0,575,63 +575,gothorita,5,574,293,7,12,,6,100,70,0,20,0,4,0,0,0,576,64 +576,gothitelle,5,575,293,7,12,,6,50,70,0,20,0,4,0,0,0,577,65 +577,solosis,5,,294,5,1,,4,200,70,0,20,0,4,0,0,0,578, +578,duosion,5,577,294,5,1,,4,100,70,0,20,0,4,0,0,0,579, +579,reuniclus,5,578,294,5,4,,4,50,70,0,20,0,4,0,0,0,580, +580,ducklett,5,,295,2,9,,4,190,70,0,20,0,2,0,0,0,581, +581,swanna,5,580,295,9,9,,4,45,70,0,20,0,2,0,0,0,582, +582,vanillite,5,,296,9,5,,4,255,70,0,20,0,1,0,0,0,583, +583,vanillish,5,582,296,9,5,,4,120,70,0,20,0,1,0,0,0,584, +584,vanilluxe,5,583,296,9,11,,4,45,70,0,20,0,1,0,0,0,585, +585,deerling,5,,297,6,8,,4,190,70,0,20,0,2,1,0,0,586, +586,sawsbuck,5,585,297,3,8,,4,75,70,0,20,0,2,1,0,0,587, +587,emolga,5,,298,9,8,,4,200,70,0,20,0,2,0,0,0,588,180 +588,karrablast,5,,299,2,12,,4,200,70,0,15,0,2,0,0,0,589, +589,escavalier,5,588,299,4,4,,4,75,70,0,15,0,2,0,0,0,590, +590,foongus,5,,300,9,4,,4,190,70,0,20,0,2,0,0,0,591, +591,amoonguss,5,590,300,9,4,,4,75,70,0,20,0,2,0,0,0,592, +592,frillish,5,,301,9,10,,4,190,70,0,20,1,2,0,0,0,593, +593,jellicent,5,592,301,9,10,,4,60,70,0,20,1,2,0,0,0,594, +594,alomomola,5,,302,6,3,,4,75,70,0,40,0,3,0,0,0,595, +595,joltik,5,,303,10,14,,4,190,70,0,20,0,2,0,0,0,596,147 +596,galvantula,5,595,303,10,14,,4,75,70,0,20,0,2,0,0,0,597,148 +597,ferroseed,5,,304,4,1,,4,255,70,0,20,0,2,0,0,0,598, +598,ferrothorn,5,597,304,4,10,,4,90,70,0,20,0,2,0,0,0,599, +599,klink,5,,305,4,11,,-1,130,70,0,20,0,4,0,0,0,600, +600,klang,5,599,305,4,11,,-1,60,70,0,20,0,4,0,0,0,601, +601,klinklang,5,600,305,4,11,,-1,30,70,0,20,0,4,0,0,0,602, +602,tynamo,5,,306,9,3,,4,190,70,0,20,0,1,0,0,0,603, +603,eelektrik,5,602,306,2,3,,4,60,70,0,20,0,1,0,0,0,604, +604,eelektross,5,603,306,2,3,,4,30,70,0,20,0,1,0,0,0,605, +605,elgyem,5,,307,2,6,,4,255,70,0,20,0,2,0,0,0,606, +606,beheeyem,5,605,307,3,12,,4,90,70,0,20,0,2,0,0,0,607, +607,litwick,5,,308,9,5,,4,190,70,0,20,0,4,0,0,0,608,37 +608,lampent,5,607,308,1,4,,4,90,70,0,20,0,4,0,0,0,609,38 +609,chandelure,5,608,308,1,4,,4,45,70,0,20,0,4,0,0,0,610,39 +610,axew,5,,309,5,6,,4,75,35,0,40,0,1,0,0,0,611,144 +611,fraxure,5,610,309,5,6,,4,60,35,0,40,0,1,0,0,0,612,145 +612,haxorus,5,611,309,10,6,,4,45,35,0,40,0,1,0,0,0,613,146 +613,cubchoo,5,,310,9,6,,4,120,70,0,20,0,2,0,0,0,614,104 +614,beartic,5,613,310,9,8,,4,60,70,0,20,0,2,0,0,0,615,105 +615,cryogonal,5,,311,2,1,,-1,25,70,0,25,0,2,0,0,0,616, +616,shelmet,5,,312,8,1,,4,200,70,0,15,0,2,0,0,0,617, +617,accelgor,5,616,312,8,4,,4,75,70,0,15,0,2,0,0,0,618, +618,stunfisk,5,,313,3,3,,4,75,70,0,20,0,2,0,0,0,619, +619,mienfoo,5,,314,10,6,,4,180,70,0,25,0,4,0,0,0,620, +620,mienshao,5,619,314,7,6,,4,45,70,0,25,0,4,0,0,0,621, +621,druddigon,5,,315,8,6,,4,45,70,0,30,0,2,0,0,0,622, +622,golett,5,,316,5,12,,-1,190,70,0,25,0,2,0,0,0,623, +623,golurk,5,622,316,5,12,,-1,90,70,0,25,0,2,0,0,0,624, +624,pawniard,5,,317,8,12,,4,120,35,0,20,0,2,0,0,0,625,158 +625,bisharp,5,624,317,8,12,,4,45,35,0,20,0,2,0,0,0,626,159 +626,bouffalant,5,,318,3,8,,4,45,70,0,20,0,2,0,0,0,627, +627,rufflet,5,,319,9,9,,0,190,70,0,20,0,1,0,0,0,628,169 +628,braviary,5,627,319,8,9,,0,60,70,0,20,0,1,0,0,0,629,170 +629,vullaby,5,,320,3,9,,8,190,35,0,20,0,1,0,0,0,630, +630,mandibuzz,5,629,320,3,9,,8,60,35,0,20,0,1,0,0,0,631, +631,heatmor,5,,321,8,6,,4,90,70,0,20,0,2,0,0,0,632, +632,durant,5,,322,4,14,,4,90,70,0,20,0,2,0,0,0,633, +633,deino,5,,323,2,8,,4,45,35,0,40,0,1,0,0,0,634,90 +634,zweilous,5,633,323,2,8,,4,45,35,0,40,0,1,0,0,0,635,91 +635,hydreigon,5,634,323,2,6,,4,45,35,0,40,0,1,0,0,0,636,92 +636,larvesta,5,,324,9,14,,4,45,70,0,40,0,1,0,0,0,637,173 +637,volcarona,5,636,324,9,13,,4,15,70,0,40,0,1,0,0,0,638,174 +638,cobalion,5,,325,2,8,,-1,3,35,0,80,0,1,0,1,0,639, +639,terrakion,5,,326,4,8,,-1,3,35,0,80,0,1,0,1,0,640,191 +640,virizion,5,,327,5,8,,-1,3,35,0,80,0,1,0,1,0,641, +641,tornadus,5,,328,5,4,,0,3,90,0,120,0,1,1,1,0,642, +642,thundurus,5,,329,2,4,,0,3,90,0,120,0,1,1,1,0,643, +643,reshiram,5,,330,9,9,,-1,3,0,0,120,0,1,0,1,0,644,197 +644,zekrom,5,,331,1,6,,-1,3,0,0,120,0,1,0,1,0,645,198 +645,landorus,5,,332,3,4,,0,3,90,0,120,0,1,1,1,0,646, +646,kyurem,5,,333,4,6,,-1,3,0,0,120,0,1,1,1,0,647, +647,keldeo,5,,334,10,8,,-1,3,35,0,80,0,1,1,0,1,648, +648,meloetta,5,,335,9,12,,-1,3,100,0,120,0,1,1,0,1,649, +649,genesect,5,,336,7,12,,-1,3,0,0,120,0,1,1,0,1,650, +650,chespin,6,,337,5,6,,1,45,70,0,20,0,4,0,0,0,651, +651,quilladin,6,650,337,5,6,,1,45,70,0,20,0,4,0,0,0,652, +652,chesnaught,6,651,337,5,6,,1,45,70,0,20,0,4,0,0,0,653, +653,fennekin,6,,338,8,8,,1,45,70,0,20,0,4,0,0,0,654, +654,braixen,6,653,338,8,6,,1,45,70,0,20,0,4,0,0,0,655, +655,delphox,6,654,338,8,6,,1,45,70,0,20,0,4,0,0,0,656, +656,froakie,6,,339,2,8,,1,45,70,0,20,0,4,0,0,0,657, +657,frogadier,6,656,339,2,12,,1,45,70,0,20,0,4,0,0,0,658, +658,greninja,6,657,339,2,12,,1,45,70,0,20,0,4,0,0,0,659, +659,bunnelby,6,,340,3,6,,4,255,70,0,15,0,2,0,0,0,660, +660,diggersby,6,659,340,3,6,,4,127,70,0,15,0,2,0,0,0,661, +661,fletchling,6,,341,8,9,,4,255,70,0,15,0,4,0,0,0,662, +662,fletchinder,6,661,341,8,9,,4,120,70,0,15,0,4,0,0,0,663, +663,talonflame,6,662,341,8,9,,4,45,70,0,15,0,4,0,0,0,664, +664,scatterbug,6,,342,1,14,,4,255,70,0,15,0,2,0,0,0,665, +665,spewpa,6,664,342,1,5,,4,120,70,0,15,0,2,0,0,0,666, +666,vivillon,6,665,342,9,13,,4,45,70,0,15,0,2,0,0,0,667, +667,litleo,6,,343,3,8,,7,220,70,0,20,0,4,0,0,0,668, +668,pyroar,6,667,343,3,8,,7,65,70,0,20,1,4,0,0,0,669, +669,flabebe,6,,344,9,4,,8,225,70,0,20,0,2,0,0,0,670, +670,floette,6,669,344,9,4,,8,120,70,0,20,0,2,0,0,0,671, +671,florges,6,670,344,9,4,,8,45,70,0,20,0,2,0,0,0,672, +672,skiddo,6,,345,3,8,,4,200,70,0,20,0,2,0,0,0,673, +673,gogoat,6,672,345,3,8,,4,45,70,0,20,0,2,0,0,0,674, +674,pancham,6,,346,9,6,,4,220,70,0,25,0,2,0,0,0,675, +675,pangoro,6,674,346,9,12,,4,65,70,0,25,0,2,0,0,0,676, +676,furfrou,6,,347,9,8,,4,160,70,0,20,0,2,1,0,0,677, +677,espurr,6,,348,4,6,,4,190,70,0,20,0,2,0,0,0,678, +678,meowstic,6,677,348,2,6,,4,75,70,0,20,1,2,0,0,0,679, +679,honedge,6,,349,3,5,,4,180,70,0,20,0,2,0,0,0,680, +680,doublade,6,679,349,3,11,,4,90,70,0,20,0,2,0,0,0,681, +681,aegislash,6,680,349,3,5,,4,45,70,0,20,0,2,1,0,0,682, +682,spritzee,6,,350,6,4,,4,200,70,0,20,0,2,0,0,0,683, +683,aromatisse,6,682,350,6,12,,4,140,70,0,20,0,2,0,0,0,684, +684,swirlix,6,,351,9,7,,4,200,70,0,20,0,2,0,0,0,685, +685,slurpuff,6,684,351,9,12,,4,140,70,0,20,0,2,0,0,0,686, +686,inkay,6,,352,2,10,,4,190,70,0,20,0,2,0,0,0,687, +687,malamar,6,686,352,2,5,,4,80,70,0,20,0,2,0,0,0,688, +688,binacle,6,,353,3,11,,4,120,70,0,20,0,2,0,0,0,689, +689,barbaracle,6,688,353,3,11,,4,45,70,0,20,0,2,0,0,0,690, +690,skrelp,6,,354,3,5,,4,225,70,0,20,0,2,0,0,0,691, +691,dragalge,6,690,354,3,5,,4,55,70,0,20,0,2,0,0,0,692, +692,clauncher,6,,355,2,14,,4,225,70,0,15,0,1,0,0,0,693, +693,clawitzer,6,692,355,2,2,,4,55,70,0,15,0,1,0,0,0,694, +694,helioptile,6,,356,10,6,,4,190,70,0,20,0,2,0,0,0,695, +695,heliolisk,6,694,356,10,6,,4,75,70,0,20,0,2,0,0,0,696, +696,tyrunt,6,,357,3,6,,1,45,70,0,30,0,2,0,0,0,697, +697,tyrantrum,6,696,357,8,6,,1,45,70,0,30,0,2,0,0,0,698, +698,amaura,6,,358,2,8,,1,45,70,0,30,0,2,0,0,0,699, +699,aurorus,6,698,358,2,8,,1,45,70,0,30,0,2,0,0,0,700, +700,sylveon,6,133,67,6,8,,1,45,70,0,35,0,2,0,0,0,165, +701,hawlucha,6,,359,5,12,,4,100,70,0,20,0,2,0,0,0,701, +702,dedenne,6,,360,10,6,,4,180,70,0,20,0,2,0,0,0,702, +703,carbink,6,,361,4,1,,-1,60,70,0,25,0,1,0,0,0,703, +704,goomy,6,,362,7,2,,4,45,35,0,40,0,1,0,0,0,704, +705,sliggoo,6,704,362,7,2,,4,45,35,0,40,0,1,0,0,0,705, +706,goodra,6,705,362,7,6,,4,45,35,0,40,0,1,0,0,0,706, +707,klefki,6,,363,4,1,,4,75,70,0,20,0,3,0,0,0,707, +708,phantump,6,,364,3,4,,4,120,70,0,20,0,2,0,0,0,708, +709,trevenant,6,708,364,3,10,,4,60,70,0,20,0,2,0,0,0,709, +710,pumpkaboo,6,,365,3,1,,4,120,70,0,20,0,2,0,0,0,710, +711,gourgeist,6,710,365,3,5,,4,60,70,0,20,0,2,0,0,0,711, +712,bergmite,6,,366,2,8,,4,190,70,0,20,0,2,0,0,0,712, +713,avalugg,6,712,366,2,8,,4,55,70,0,20,0,2,0,0,0,713, +714,noibat,6,,367,7,9,,4,190,70,0,20,0,2,0,0,0,714, +715,noivern,6,714,367,7,9,,4,45,70,0,20,0,2,0,0,0,715, +716,xerneas,6,,368,2,8,,-1,45,0,0,120,0,1,1,1,0,716, +717,yveltal,6,,369,8,9,,-1,45,0,0,120,0,1,0,1,0,717, +718,zygarde,6,,370,5,2,,-1,3,0,0,120,0,1,0,1,0,718, +719,diancie,6,,371,6,4,,-1,3,70,0,25,0,1,1,0,1,719, +720,hoopa,6,,372,7,4,,-1,3,100,0,120,0,1,0,0,1,720, +721,volcanion,6,,373,3,8,,-1,3,100,0,120,0,1,0,0,1,721, +722,rowlet,7,,374,3,9,,1,45,70,0,15,0,4,0,0,0,722, +723,dartrix,7,722,374,3,9,,1,45,70,0,15,0,4,0,0,0,723, +724,decidueye,7,723,374,3,9,,1,45,70,0,15,0,4,0,0,0,724, +725,litten,7,,375,8,8,,1,45,70,0,15,0,4,0,0,0,725, +726,torracat,7,725,375,8,8,,1,45,70,0,15,0,4,0,0,0,726, +727,incineroar,7,726,375,8,6,,1,45,70,0,15,0,4,0,0,0,727, +728,popplio,7,,376,2,3,,1,45,70,0,15,0,4,0,0,0,728, +729,brionne,7,728,376,2,3,,1,45,70,0,15,0,4,0,0,0,729, +730,primarina,7,729,376,2,3,,1,45,70,0,15,0,4,0,0,0,730, +731,pikipek,7,,377,1,9,,4,255,70,0,15,0,2,0,0,0,731, +732,trumbeak,7,731,377,1,9,,4,120,70,0,15,0,2,0,0,0,732, +733,toucannon,7,732,377,1,9,,4,45,70,0,15,0,2,0,0,0,733, +734,yungoos,7,,378,3,8,,4,255,70,0,15,0,2,0,0,0,734, +735,gumshoos,7,734,378,3,8,,4,127,70,0,15,0,2,0,0,0,735, +736,grubbin,7,,379,4,14,,4,255,70,0,15,0,2,0,0,0,736, +737,charjabug,7,736,379,5,2,,4,120,70,0,15,0,2,0,0,0,737, +738,vikavolt,7,737,379,2,14,,4,45,70,0,15,0,2,0,0,0,738, +739,crabrawler,7,,380,7,14,,4,225,70,0,20,0,2,0,0,0,739, +740,crabominable,7,739,380,9,14,,4,60,70,0,20,0,2,0,0,0,740, +741,oricorio,7,,381,8,9,,6,45,70,0,20,0,2,0,0,0,741, +742,cutiefly,7,,382,10,14,,4,190,70,0,20,0,2,0,0,0,742, +743,ribombee,7,742,382,10,13,,4,75,70,0,20,0,2,0,0,0,743, +744,rockruff,7,,383,3,8,,4,190,70,0,15,0,2,0,0,0,744, +745,lycanroc,7,744,383,3,8,,4,90,70,0,15,0,2,0,0,0,745, +746,wishiwashi,7,,384,2,3,,4,60,70,0,15,0,3,0,0,0,746, +747,mareanie,7,,385,2,5,,4,190,70,0,20,0,2,0,0,0,747, +748,toxapex,7,747,385,2,10,,4,75,70,0,20,0,2,0,0,0,748, +749,mudbray,7,,386,3,8,,4,190,70,0,20,0,2,0,0,0,749, +750,mudsdale,7,749,386,3,8,,4,60,70,0,20,0,2,0,0,0,750, +751,dewpider,7,,387,5,7,,4,200,70,0,15,0,2,0,0,0,751, +752,araquanid,7,751,387,5,14,,4,100,70,0,15,0,2,0,0,0,752, +753,fomantis,7,,388,6,6,,4,190,70,0,20,0,2,0,0,0,753, +754,lurantis,7,753,388,6,12,,4,75,70,0,20,0,2,0,0,0,754, +755,morelull,7,,389,7,5,,4,190,70,0,20,0,2,0,0,0,755, +756,shiinotic,7,755,389,7,12,,4,75,70,0,20,0,2,0,0,0,756, +757,salandit,7,,390,1,8,,1,120,70,0,20,0,2,0,0,0,757, +758,salazzle,7,757,390,1,8,,8,45,70,0,20,0,2,0,0,0,758, +759,stufful,7,,391,6,8,,4,140,70,0,15,0,2,0,0,0,759, +760,bewear,7,759,391,6,6,,4,70,70,0,15,0,2,0,0,0,760, +761,bounsweet,7,,392,7,7,,8,235,70,0,20,0,4,0,0,0,761, +762,steenee,7,761,392,7,12,,8,120,70,0,20,0,4,0,0,0,762, +763,tsareena,7,762,392,7,12,,8,45,70,0,20,0,4,0,0,0,763, +764,comfey,7,,393,5,1,,6,60,70,0,20,0,3,0,0,0,764, +765,oranguru,7,,394,9,12,,4,45,70,0,20,0,1,0,0,0,765, +766,passimian,7,,395,9,6,,4,45,70,0,20,0,1,0,0,0,766, +767,wimpod,7,,396,4,10,,4,90,70,0,20,0,2,0,0,0,767, +768,golisopod,7,767,396,4,12,,4,45,70,0,20,0,2,0,0,0,768, +769,sandygast,7,,397,3,2,,4,140,70,0,15,0,2,0,0,0,769, +770,palossand,7,769,397,3,2,,4,60,70,0,15,0,2,0,0,0,770, +771,pyukumuku,7,,398,1,2,,4,60,70,0,15,0,3,0,0,0,771, +772,type-null,7,,399,4,8,,-1,3,0,0,120,0,1,0,0,0,772, +773,silvally,7,772,399,4,8,,-1,3,0,0,120,0,1,0,0,0,773, +774,minior,7,,400,3,1,,-1,30,70,0,25,0,4,0,0,0,774, +775,komala,7,,401,2,12,,4,45,70,0,20,0,1,0,0,0,775, +776,turtonator,7,,402,8,6,,4,70,70,0,20,0,2,0,0,0,776, +777,togedemaru,7,,403,4,6,,4,180,70,0,10,0,2,0,0,0,777, +778,mimikyu,7,,404,10,2,,4,45,70,0,20,0,2,0,0,0,778, +779,bruxish,7,,405,6,3,,4,80,70,0,15,0,2,0,0,0,779, +780,drampa,7,,406,9,2,,4,70,70,0,20,0,2,0,0,0,780, +781,dhelmise,7,,407,5,5,,-1,25,70,0,25,0,2,0,0,0,781, +782,jangmo-o,7,,408,4,8,,4,45,70,0,40,0,1,0,0,0,782, +783,hakamo-o,7,782,408,4,6,,4,45,70,0,40,0,1,0,0,0,783, +784,kommo-o,7,783,408,4,6,,4,45,70,0,40,0,1,0,0,0,784, +785,tapu-koko,7,,409,10,4,,-1,3,70,0,15,0,1,0,1,0,785, +786,tapu-lele,7,,410,6,4,,-1,3,70,0,15,0,1,0,1,0,786, +787,tapu-bulu,7,,411,8,4,,-1,3,70,0,15,0,1,0,1,0,787, +788,tapu-fini,7,,412,7,4,,-1,3,70,0,15,0,1,0,1,0,788, +789,cosmog,7,,413,2,1,,-1,45,0,0,120,0,1,0,1,0,789, +790,cosmoem,7,789,413,2,1,,-1,45,0,0,120,0,1,0,1,0,790, +791,solgaleo,7,790,413,9,8,,-1,45,0,0,120,0,1,0,1,0,791, +792,lunala,7,790,413,7,9,,-1,45,0,0,120,0,1,0,1,0,792, +793,nihilego,7,,414,9,10,,-1,45,0,0,120,0,1,0,0,0,793, +794,buzzwole,7,,415,8,10,,-1,45,0,0,120,0,1,0,0,0,794, +795,pheromosa,7,,416,9,12,,-1,45,0,0,120,0,1,0,0,0,795, +796,xurkitree,7,,417,1,6,,-1,45,0,0,120,0,1,0,0,0,796, +797,celesteela,7,,418,5,12,,-1,45,0,0,120,0,1,0,0,0,797, +798,kartana,7,,419,9,12,,-1,45,0,0,120,0,1,0,0,0,798, +799,guzzlord,7,,420,1,6,,-1,45,0,0,120,0,1,0,0,0,799, +800,necrozma,7,,421,1,4,,-1,255,0,0,120,0,1,0,1,0,800, +801,magearna,7,,422,4,12,,-1,3,0,0,120,0,1,0,0,1,801, +802,marshadow,7,,423,4,12,,-1,3,0,0,120,0,1,0,0,1,802, +803,poipole,7,,424,7,6,,-1,45,0,0,120,0,1,0,0,0,803, +804,naganadel,7,803,424,7,9,,-1,45,0,0,120,0,1,0,0,0,804, +805,stakataka,7,,425,4,8,,-1,30,0,0,120,0,1,0,0,0,805, +806,blacephalon,7,,426,9,12,,-1,30,0,0,120,0,1,0,0,0,806, +807,zeraora,7,,427,10,12,,-1,3,0,0,120,0,1,0,0,1,807, +810,grookey,8,,,5,6,,,45,50,0,20,,,0,0,0,, +811,thwackey,8,,,5,6,,,45,50,0,20,,,0,0,0,, +812,rillaboom,8,,,5,12,,,45,50,0,20,,,0,0,0,, +813,scorbunny,8,,,9,6,,,45,50,0,20,,,0,0,0,, +814,raboot,8,,,4,6,,,45,50,0,20,,,0,0,0,, +815,cinderace,8,,,9,6,,,45,50,0,20,,,0,0,0,, +816,sobble,8,,,2,8,,,45,50,0,20,,,0,0,0,, +817,drizzile,8,,,2,6,,,45,50,0,20,,,0,0,0,, +818,inteleon,8,,,2,6,,,45,50,0,20,,,0,0,0,, +819,skwovet,8,,,3,6,,,255,50,0,20,,,0,0,0,, +820,greedent,8,,,3,6,,,90,50,0,20,,,0,0,0,, +821,rookidee,8,,,2,9,,,255,50,0,15,,,0,0,0,, +822,corvisquire,8,,,2,9,,,120,50,0,15,,,0,0,0,, +823,corviknight,8,,,7,9,,,45,50,0,15,,,0,0,0,, +824,blipbug,8,,,2,14,,,255,50,0,15,,,0,0,0,, +825,dottler,8,,,10,14,,,120,50,0,15,,,0,0,0,, +826,orbeetle,8,,,8,9,,,45,50,0,15,,,0,0,0,, +827,nickit,8,,,3,8,,,255,50,0,15,,,0,0,0,, +828,thievul,8,,,3,8,,,127,50,0,15,,,0,0,0,, +829,gossifleur,8,,,5,5,,,190,50,0,20,,,0,0,0,, +830,eldegoss,8,,,5,5,,,75,50,0,20,,,0,0,0,, +831,wooloo,8,,,9,8,,,255,50,0,15,,,0,0,0,, +832,dubwool,8,,,9,8,,,127,50,0,15,,,0,0,0,, +833,chewtle,8,,,5,8,,,255,50,0,20,,,0,0,0,, +834,drednaw,8,,,5,8,,,75,50,0,20,,,0,0,0,, +835,yamper,8,,,10,8,,,255,50,0,20,,,0,0,0,, +836,boltund,8,,,10,8,,,45,50,0,20,,,0,0,0,, +837,rolycoly,8,,,1,1,,,255,50,0,15,,,0,0,0,, +838,carkol,8,,,1,7,,,120,50,0,15,,,0,0,0,, +839,coalossal,8,,,1,12,,,45,50,0,15,,,0,0,0,, +840,applin,8,,,5,2,,,255,50,0,20,,,0,0,0,, +841,flapple,8,,,5,9,,,45,50,0,20,,,0,0,0,, +842,appletun,8,,,5,8,,,45,50,0,20,,,0,0,0,, +843,silicobra,8,,,5,2,,,255,50,0,20,,,0,0,0,, +844,sandaconda,8,,,5,2,,,120,50,0,20,,,0,0,0,, +845,cramorant,8,,,2,9,,,45,50,0,20,,,0,0,0,, +846,arrokuda,8,,,3,3,,,255,50,0,20,,,0,0,0,, +847,barraskewda,8,,,3,3,,,60,50,0,20,,,0,0,0,, +848,toxel,8,,,7,6,,,75,50,0,25,,,0,0,0,, +849,toxtricity,8,,,7,6,,,45,50,0,25,,,0,0,0,, +850,sizzlipede,8,,,8,10,,,190,50,0,20,,,0,0,0,, +851,centiskorch,8,,,8,10,,,75,50,0,20,,,0,0,0,, +852,clobbopus,8,,,3,10,,,180,50,0,25,,,0,0,0,, +853,grapploct,8,,,2,10,,,45,50,0,25,,,0,0,0,, +854,sinistea,8,,,7,1,,,120,50,0,20,,,0,0,0,, +855,polteageist,8,,,7,1,,,60,50,0,20,,,0,0,0,, +856,hatenna,8,,,6,7,,,235,50,0,20,,,0,0,0,, +857,hattrem,8,,,6,12,,,120,50,0,20,,,0,0,0,, +858,hatterene,8,,,6,5,,,45,50,0,20,,,0,0,0,, +859,impidimp,8,,,6,12,,,255,50,0,20,,,0,0,0,, +860,morgrem,8,,,6,12,,,120,50,0,20,,,0,0,0,, +861,grimmsnarl,8,,,7,12,,,45,50,0,20,,,0,0,0,, +862,obstagoon,8,,,4,6,,,45,50,0,15,,,0,0,0,, +863,perrserker,8,,,3,6,,,90,50,0,20,,,0,0,0,, +864,cursola,8,,,9,4,,,30,50,0,20,,,0,0,0,, +865,sirfetch,8,,,9,9,,,45,50,0,20,,,0,0,0,, +866,mr,8,,,7,12,,,45,50,0,25,,,0,0,0,, +867,runerigus,8,,,4,5,,,90,50,0,25,,,0,0,0,, +868,milcery,8,,,9,1,,,200,50,0,20,,,0,0,0,, +869,alcremie,8,,,9,5,,,100,50,0,20,,,0,0,0,, +870,falinks,8,,,10,11,,,45,50,0,25,,,0,0,0,, +871,pincurchin,8,,,7,10,,,75,50,0,20,,,0,0,0,, +872,snom,8,,,9,2,,,190,50,0,20,,,0,0,0,, +873,frosmoth,8,,,9,13,,,75,50,0,20,,,0,0,0,, +874,stonjourner,8,,,4,7,,,60,50,0,25,,,0,0,0,, +875,eiscue,8,,,2,6,,,60,50,0,25,,,0,0,0,, +876,indeedee,8,,,7,6,,,30,140,0,40,,,0,0,0,, +877,morpeko,8,,,10,12,,,180,50,0,10,,,0,0,0,, +878,cufant,8,,,10,8,,,190,50,0,25,,,0,0,0,, +879,copperajah,8,,,5,8,,,90,50,0,25,,,0,0,0,, +880,dracozolt,8,,,5,6,,,45,50,0,35,,,0,0,0,, +881,arctozolt,8,,,2,6,,,45,50,0,35,,,0,0,0,, +882,dracovish,8,,,5,7,,,45,50,0,35,,,0,0,0,, +883,arctovish,8,,,2,3,,,45,50,0,35,,,0,0,0,, +884,duraludon,8,,,9,6,,,45,50,0,30,,,0,0,0,, +885,dreepy,8,,,5,2,,,45,50,0,40,,,0,0,0,, +886,drakloak,8,,,5,4,,,45,50,0,40,,,0,0,0,, +887,dragapult,8,,,5,6,,,45,50,0,40,,,0,0,0,, +888,zacian,8,,,2,8,,,10,0,0,120,,,0,0,0,, +889,zamazenta,8,,,8,8,,,10,0,0,120,,,0,0,0,, +890,eternatus,8,,,7,9,,,255,0,0,120,,,0,0,0,, +891,kubfu,8,,,4,0,,,3,50,0,120,,,0,0,0,, +892,urshifu,8,,,4,0,,,3,50,0,120,,,0,0,0,, +893,zarude,8,,,5,0,,,3,,0,120,,,0,0,0,, +20000,regieleki,8,,,,0,,,,,0,,,,0,0,0,, diff --git a/Resources/scripts/data/scraper_go/out/pokemon_stats.csv b/Resources/scripts/data/scraper_go/out/pokemon_stats.csv new file mode 100644 index 00000000..8f461dc1 --- /dev/null +++ b/Resources/scripts/data/scraper_go/out/pokemon_stats.csv @@ -0,0 +1,6289 @@ +pokemon_id,stat_id,base_stat,effort +1,1,45,0 +1,2,49,0 +1,3,49,0 +1,4,65,1 +1,5,65,0 +1,6,45,0 +2,1,60,0 +2,2,62,0 +2,3,63,0 +2,4,80,1 +2,5,80,1 +2,6,60,0 +3,1,80,0 +3,2,82,0 +3,3,83,0 +3,4,100,2 +3,5,100,1 +3,6,80,0 +4,1,39,0 +4,2,52,0 +4,3,43,0 +4,4,60,0 +4,5,50,0 +4,6,65,1 +5,1,58,0 +5,2,64,0 +5,3,58,0 +5,4,80,1 +5,5,65,0 +5,6,80,1 +6,1,78,0 +6,2,84,0 +6,3,78,0 +6,4,109,3 +6,5,85,0 +6,6,100,0 +7,1,44,0 +7,2,48,0 +7,3,65,1 +7,4,50,0 +7,5,64,0 +7,6,43,0 +8,1,59,0 +8,2,63,0 +8,3,80,1 +8,4,65,0 +8,5,80,1 +8,6,58,0 +9,1,79,0 +9,2,83,0 +9,3,100,0 +9,4,85,0 +9,5,105,3 +9,6,78,0 +10,1,45,1 +10,2,30,0 +10,3,35,0 +10,4,20,0 +10,5,20,0 +10,6,45,0 +11,1,50,0 +11,2,20,0 +11,3,55,2 +11,4,25,0 +11,5,25,0 +11,6,30,0 +12,1,60,0 +12,2,45,0 +12,3,50,0 +12,4,90,2 +12,5,80,1 +12,6,70,0 +13,1,40,0 +13,2,35,0 +13,3,30,0 +13,4,20,0 +13,5,20,0 +13,6,50,1 +14,1,45,0 +14,2,25,0 +14,3,50,2 +14,4,25,0 +14,5,25,0 +14,6,35,0 +15,1,65,0 +15,2,90,2 +15,3,40,0 +15,4,45,0 +15,5,80,1 +15,6,75,0 +16,1,40,0 +16,2,45,0 +16,3,40,0 +16,4,35,0 +16,5,35,0 +16,6,56,1 +17,1,63,0 +17,2,60,0 +17,3,55,0 +17,4,50,0 +17,5,50,0 +17,6,71,2 +18,1,83,0 +18,2,80,0 +18,3,75,0 +18,4,70,0 +18,5,70,0 +18,6,101,3 +19,1,30,0 +19,2,56,0 +19,3,35,0 +19,4,25,0 +19,5,35,0 +19,6,72,1 +20,1,55,0 +20,2,81,0 +20,3,60,0 +20,4,50,0 +20,5,70,0 +20,6,97,2 +21,1,40,0 +21,2,60,0 +21,3,30,0 +21,4,31,0 +21,5,31,0 +21,6,70,1 +22,1,65,0 +22,2,90,0 +22,3,65,0 +22,4,61,0 +22,5,61,0 +22,6,100,2 +23,1,35,0 +23,2,60,1 +23,3,44,0 +23,4,40,0 +23,5,54,0 +23,6,55,0 +24,1,60,0 +24,2,95,2 +24,3,69,0 +24,4,65,0 +24,5,79,0 +24,6,80,0 +25,1,35,0 +25,2,55,0 +25,3,40,0 +25,4,50,0 +25,5,50,0 +25,6,90,2 +26,1,60,0 +26,2,90,0 +26,3,55,0 +26,4,90,0 +26,5,80,0 +26,6,110,3 +27,1,50,0 +27,2,75,0 +27,3,85,1 +27,4,20,0 +27,5,30,0 +27,6,40,0 +28,1,75,0 +28,2,100,0 +28,3,110,2 +28,4,45,0 +28,5,55,0 +28,6,65,0 +29,1,55,1 +29,2,47,0 +29,3,52,0 +29,4,40,0 +29,5,40,0 +29,6,41,0 +30,1,70,2 +30,2,62,0 +30,3,67,0 +30,4,55,0 +30,5,55,0 +30,6,56,0 +31,1,90,3 +31,2,92,0 +31,3,87,0 +31,4,75,0 +31,5,85,0 +31,6,76,0 +32,1,46,0 +32,2,57,1 +32,3,40,0 +32,4,40,0 +32,5,40,0 +32,6,50,0 +33,1,61,0 +33,2,72,2 +33,3,57,0 +33,4,55,0 +33,5,55,0 +33,6,65,0 +34,1,81,0 +34,2,102,3 +34,3,77,0 +34,4,85,0 +34,5,75,0 +34,6,85,0 +35,1,70,2 +35,2,45,0 +35,3,48,0 +35,4,60,0 +35,5,65,0 +35,6,35,0 +36,1,95,3 +36,2,70,0 +36,3,73,0 +36,4,95,0 +36,5,90,0 +36,6,60,0 +37,1,38,0 +37,2,41,0 +37,3,40,0 +37,4,50,0 +37,5,65,0 +37,6,65,1 +38,1,73,0 +38,2,76,0 +38,3,75,0 +38,4,81,0 +38,5,100,1 +38,6,100,1 +39,1,115,2 +39,2,45,0 +39,3,20,0 +39,4,45,0 +39,5,25,0 +39,6,20,0 +40,1,140,3 +40,2,70,0 +40,3,45,0 +40,4,85,0 +40,5,50,0 +40,6,45,0 +41,1,40,0 +41,2,45,0 +41,3,35,0 +41,4,30,0 +41,5,40,0 +41,6,55,1 +42,1,75,0 +42,2,80,0 +42,3,70,0 +42,4,65,0 +42,5,75,0 +42,6,90,2 +43,1,45,0 +43,2,50,0 +43,3,55,0 +43,4,75,1 +43,5,65,0 +43,6,30,0 +44,1,60,0 +44,2,65,0 +44,3,70,0 +44,4,85,2 +44,5,75,0 +44,6,40,0 +45,1,75,0 +45,2,80,0 +45,3,85,0 +45,4,110,3 +45,5,90,0 +45,6,50,0 +46,1,35,0 +46,2,70,1 +46,3,55,0 +46,4,45,0 +46,5,55,0 +46,6,25,0 +47,1,60,0 +47,2,95,2 +47,3,80,1 +47,4,60,0 +47,5,80,0 +47,6,30,0 +48,1,60,0 +48,2,55,0 +48,3,50,0 +48,4,40,0 +48,5,55,1 +48,6,45,0 +49,1,70,0 +49,2,65,0 +49,3,60,0 +49,4,90,1 +49,5,75,0 +49,6,90,1 +50,1,10,0 +50,2,55,0 +50,3,25,0 +50,4,35,0 +50,5,45,0 +50,6,95,1 +51,1,35,0 +51,2,100,0 +51,3,50,0 +51,4,50,0 +51,5,70,0 +51,6,120,2 +52,1,40,0 +52,2,45,0 +52,3,35,0 +52,4,40,0 +52,5,40,0 +52,6,90,1 +53,1,65,0 +53,2,70,0 +53,3,60,0 +53,4,65,0 +53,5,65,0 +53,6,115,2 +54,1,50,0 +54,2,52,0 +54,3,48,0 +54,4,65,1 +54,5,50,0 +54,6,55,0 +55,1,80,0 +55,2,82,0 +55,3,78,0 +55,4,95,2 +55,5,80,0 +55,6,85,0 +56,1,40,0 +56,2,80,1 +56,3,35,0 +56,4,35,0 +56,5,45,0 +56,6,70,0 +57,1,65,0 +57,2,105,2 +57,3,60,0 +57,4,60,0 +57,5,70,0 +57,6,95,0 +58,1,55,0 +58,2,70,1 +58,3,45,0 +58,4,70,0 +58,5,50,0 +58,6,60,0 +59,1,90,0 +59,2,110,2 +59,3,80,0 +59,4,100,0 +59,5,80,0 +59,6,95,0 +60,1,40,0 +60,2,50,0 +60,3,40,0 +60,4,40,0 +60,5,40,0 +60,6,90,1 +61,1,65,0 +61,2,65,0 +61,3,65,0 +61,4,50,0 +61,5,50,0 +61,6,90,2 +62,1,90,0 +62,2,95,0 +62,3,95,3 +62,4,70,0 +62,5,90,0 +62,6,70,0 +63,1,25,0 +63,2,20,0 +63,3,15,0 +63,4,105,1 +63,5,55,0 +63,6,90,0 +64,1,40,0 +64,2,35,0 +64,3,30,0 +64,4,120,2 +64,5,70,0 +64,6,105,0 +65,1,55,0 +65,2,50,0 +65,3,45,0 +65,4,135,3 +65,5,95,0 +65,6,120,0 +66,1,70,0 +66,2,80,1 +66,3,50,0 +66,4,35,0 +66,5,35,0 +66,6,35,0 +67,1,80,0 +67,2,100,2 +67,3,70,0 +67,4,50,0 +67,5,60,0 +67,6,45,0 +68,1,90,0 +68,2,130,3 +68,3,80,0 +68,4,65,0 +68,5,85,0 +68,6,55,0 +69,1,50,0 +69,2,75,1 +69,3,35,0 +69,4,70,0 +69,5,30,0 +69,6,40,0 +70,1,65,0 +70,2,90,2 +70,3,50,0 +70,4,85,0 +70,5,45,0 +70,6,55,0 +71,1,80,0 +71,2,105,3 +71,3,65,0 +71,4,100,0 +71,5,70,0 +71,6,70,0 +72,1,40,0 +72,2,40,0 +72,3,35,0 +72,4,50,0 +72,5,100,1 +72,6,70,0 +73,1,80,0 +73,2,70,0 +73,3,65,0 +73,4,80,0 +73,5,120,2 +73,6,100,0 +74,1,40,0 +74,2,80,0 +74,3,100,1 +74,4,30,0 +74,5,30,0 +74,6,20,0 +75,1,55,0 +75,2,95,0 +75,3,115,2 +75,4,45,0 +75,5,45,0 +75,6,35,0 +76,1,80,0 +76,2,120,0 +76,3,130,3 +76,4,55,0 +76,5,65,0 +76,6,45,0 +77,1,50,0 +77,2,85,0 +77,3,55,0 +77,4,65,0 +77,5,65,0 +77,6,90,1 +78,1,65,0 +78,2,100,0 +78,3,70,0 +78,4,80,0 +78,5,80,0 +78,6,105,2 +79,1,90,1 +79,2,65,0 +79,3,65,0 +79,4,40,0 +79,5,40,0 +79,6,15,0 +80,1,95,0 +80,2,75,0 +80,3,110,2 +80,4,100,0 +80,5,80,0 +80,6,30,0 +81,1,25,0 +81,2,35,0 +81,3,70,0 +81,4,95,1 +81,5,55,0 +81,6,45,0 +82,1,50,0 +82,2,60,0 +82,3,95,0 +82,4,120,2 +82,5,70,0 +82,6,70,0 +83,1,52,0 +83,2,90,1 +83,3,55,0 +83,4,58,0 +83,5,62,0 +83,6,60,0 +84,1,35,0 +84,2,85,1 +84,3,45,0 +84,4,35,0 +84,5,35,0 +84,6,75,0 +85,1,60,0 +85,2,110,2 +85,3,70,0 +85,4,60,0 +85,5,60,0 +85,6,110,0 +86,1,65,0 +86,2,45,0 +86,3,55,0 +86,4,45,0 +86,5,70,1 +86,6,45,0 +87,1,90,0 +87,2,70,0 +87,3,80,0 +87,4,70,0 +87,5,95,2 +87,6,70,0 +88,1,80,1 +88,2,80,0 +88,3,50,0 +88,4,40,0 +88,5,50,0 +88,6,25,0 +89,1,105,1 +89,2,105,1 +89,3,75,0 +89,4,65,0 +89,5,100,0 +89,6,50,0 +90,1,30,0 +90,2,65,0 +90,3,100,1 +90,4,45,0 +90,5,25,0 +90,6,40,0 +91,1,50,0 +91,2,95,0 +91,3,180,2 +91,4,85,0 +91,5,45,0 +91,6,70,0 +92,1,30,0 +92,2,35,0 +92,3,30,0 +92,4,100,1 +92,5,35,0 +92,6,80,0 +93,1,45,0 +93,2,50,0 +93,3,45,0 +93,4,115,2 +93,5,55,0 +93,6,95,0 +94,1,60,0 +94,2,65,0 +94,3,60,0 +94,4,130,3 +94,5,75,0 +94,6,110,0 +95,1,35,0 +95,2,45,0 +95,3,160,1 +95,4,30,0 +95,5,45,0 +95,6,70,0 +96,1,60,0 +96,2,48,0 +96,3,45,0 +96,4,43,0 +96,5,90,1 +96,6,42,0 +97,1,85,0 +97,2,73,0 +97,3,70,0 +97,4,73,0 +97,5,115,2 +97,6,67,0 +98,1,30,0 +98,2,105,1 +98,3,90,0 +98,4,25,0 +98,5,25,0 +98,6,50,0 +99,1,55,0 +99,2,130,2 +99,3,115,0 +99,4,50,0 +99,5,50,0 +99,6,75,0 +100,1,40,0 +100,2,30,0 +100,3,50,0 +100,4,55,0 +100,5,55,0 +100,6,100,1 +101,1,60,0 +101,2,50,0 +101,3,70,0 +101,4,80,0 +101,5,80,0 +101,6,150,2 +102,1,60,0 +102,2,40,0 +102,3,80,1 +102,4,60,0 +102,5,45,0 +102,6,40,0 +103,1,95,0 +103,2,95,0 +103,3,85,0 +103,4,125,2 +103,5,75,0 +103,6,55,0 +104,1,50,0 +104,2,50,0 +104,3,95,1 +104,4,40,0 +104,5,50,0 +104,6,35,0 +105,1,60,0 +105,2,80,0 +105,3,110,2 +105,4,50,0 +105,5,80,0 +105,6,45,0 +106,1,50,0 +106,2,120,2 +106,3,53,0 +106,4,35,0 +106,5,110,0 +106,6,87,0 +107,1,50,0 +107,2,105,0 +107,3,79,0 +107,4,35,0 +107,5,110,2 +107,6,76,0 +108,1,90,2 +108,2,55,0 +108,3,75,0 +108,4,60,0 +108,5,75,0 +108,6,30,0 +109,1,40,0 +109,2,65,0 +109,3,95,1 +109,4,60,0 +109,5,45,0 +109,6,35,0 +110,1,65,0 +110,2,90,0 +110,3,120,2 +110,4,85,0 +110,5,70,0 +110,6,60,0 +111,1,80,0 +111,2,85,0 +111,3,95,1 +111,4,30,0 +111,5,30,0 +111,6,25,0 +112,1,105,0 +112,2,130,2 +112,3,120,0 +112,4,45,0 +112,5,45,0 +112,6,40,0 +113,1,250,2 +113,2,5,0 +113,3,5,0 +113,4,35,0 +113,5,105,0 +113,6,50,0 +114,1,65,0 +114,2,55,0 +114,3,115,1 +114,4,100,0 +114,5,40,0 +114,6,60,0 +115,1,105,2 +115,2,95,0 +115,3,80,0 +115,4,40,0 +115,5,80,0 +115,6,90,0 +116,1,30,0 +116,2,40,0 +116,3,70,0 +116,4,70,1 +116,5,25,0 +116,6,60,0 +117,1,55,0 +117,2,65,0 +117,3,95,1 +117,4,95,1 +117,5,45,0 +117,6,85,0 +118,1,45,0 +118,2,67,1 +118,3,60,0 +118,4,35,0 +118,5,50,0 +118,6,63,0 +119,1,80,0 +119,2,92,2 +119,3,65,0 +119,4,65,0 +119,5,80,0 +119,6,68,0 +120,1,30,0 +120,2,45,0 +120,3,55,0 +120,4,70,0 +120,5,55,0 +120,6,85,1 +121,1,60,0 +121,2,75,0 +121,3,85,0 +121,4,100,0 +121,5,85,0 +121,6,115,2 +122,1,40,0 +122,2,45,0 +122,3,65,0 +122,4,100,0 +122,5,120,2 +122,6,90,0 +123,1,70,0 +123,2,110,1 +123,3,80,0 +123,4,55,0 +123,5,80,0 +123,6,105,0 +124,1,65,0 +124,2,50,0 +124,3,35,0 +124,4,115,2 +124,5,95,0 +124,6,95,0 +125,1,65,0 +125,2,83,0 +125,3,57,0 +125,4,95,0 +125,5,85,0 +125,6,105,2 +126,1,65,0 +126,2,95,0 +126,3,57,0 +126,4,100,2 +126,5,85,0 +126,6,93,0 +127,1,65,0 +127,2,125,2 +127,3,100,0 +127,4,55,0 +127,5,70,0 +127,6,85,0 +128,1,75,0 +128,2,100,1 +128,3,95,0 +128,4,40,0 +128,5,70,0 +128,6,110,1 +129,1,20,0 +129,2,10,0 +129,3,55,0 +129,4,15,0 +129,5,20,0 +129,6,80,1 +130,1,95,0 +130,2,125,2 +130,3,79,0 +130,4,60,0 +130,5,100,0 +130,6,81,0 +131,1,130,2 +131,2,85,0 +131,3,80,0 +131,4,85,0 +131,5,95,0 +131,6,60,0 +132,1,48,1 +132,2,48,0 +132,3,48,0 +132,4,48,0 +132,5,48,0 +132,6,48,0 +133,1,55,0 +133,2,55,0 +133,3,50,0 +133,4,45,0 +133,5,65,1 +133,6,55,0 +134,1,130,2 +134,2,65,0 +134,3,60,0 +134,4,110,0 +134,5,95,0 +134,6,65,0 +135,1,65,0 +135,2,65,0 +135,3,60,0 +135,4,110,0 +135,5,95,0 +135,6,130,2 +136,1,65,0 +136,2,130,2 +136,3,60,0 +136,4,95,0 +136,5,110,0 +136,6,65,0 +137,1,65,0 +137,2,60,0 +137,3,70,0 +137,4,85,1 +137,5,75,0 +137,6,40,0 +138,1,35,0 +138,2,40,0 +138,3,100,1 +138,4,90,0 +138,5,55,0 +138,6,35,0 +139,1,70,0 +139,2,60,0 +139,3,125,2 +139,4,115,0 +139,5,70,0 +139,6,55,0 +140,1,30,0 +140,2,80,0 +140,3,90,1 +140,4,55,0 +140,5,45,0 +140,6,55,0 +141,1,60,0 +141,2,115,2 +141,3,105,0 +141,4,65,0 +141,5,70,0 +141,6,80,0 +142,1,80,0 +142,2,105,0 +142,3,65,0 +142,4,60,0 +142,5,75,0 +142,6,130,2 +143,1,160,2 +143,2,110,0 +143,3,65,0 +143,4,65,0 +143,5,110,0 +143,6,30,0 +144,1,90,0 +144,2,85,0 +144,3,100,0 +144,4,95,0 +144,5,125,3 +144,6,85,0 +145,1,90,0 +145,2,90,0 +145,3,85,0 +145,4,125,3 +145,5,90,0 +145,6,100,0 +146,1,90,0 +146,2,100,0 +146,3,90,0 +146,4,125,3 +146,5,85,0 +146,6,90,0 +147,1,41,0 +147,2,64,1 +147,3,45,0 +147,4,50,0 +147,5,50,0 +147,6,50,0 +148,1,61,0 +148,2,84,2 +148,3,65,0 +148,4,70,0 +148,5,70,0 +148,6,70,0 +149,1,91,0 +149,2,134,3 +149,3,95,0 +149,4,100,0 +149,5,100,0 +149,6,80,0 +150,1,106,0 +150,2,110,0 +150,3,90,0 +150,4,154,3 +150,5,90,0 +150,6,130,0 +151,1,100,3 +151,2,100,0 +151,3,100,0 +151,4,100,0 +151,5,100,0 +151,6,100,0 +152,1,45,0 +152,2,49,0 +152,3,65,0 +152,4,49,0 +152,5,65,1 +152,6,45,0 +153,1,60,0 +153,2,62,0 +153,3,80,1 +153,4,63,0 +153,5,80,1 +153,6,60,0 +154,1,80,0 +154,2,82,0 +154,3,100,1 +154,4,83,0 +154,5,100,2 +154,6,80,0 +155,1,39,0 +155,2,52,0 +155,3,43,0 +155,4,60,0 +155,5,50,0 +155,6,65,1 +156,1,58,0 +156,2,64,0 +156,3,58,0 +156,4,80,1 +156,5,65,0 +156,6,80,1 +157,1,78,0 +157,2,84,0 +157,3,78,0 +157,4,109,3 +157,5,85,0 +157,6,100,0 +158,1,50,0 +158,2,65,1 +158,3,64,0 +158,4,44,0 +158,5,48,0 +158,6,43,0 +159,1,65,0 +159,2,80,1 +159,3,80,1 +159,4,59,0 +159,5,63,0 +159,6,58,0 +160,1,85,0 +160,2,105,2 +160,3,100,1 +160,4,79,0 +160,5,83,0 +160,6,78,0 +161,1,35,0 +161,2,46,1 +161,3,34,0 +161,4,35,0 +161,5,45,0 +161,6,20,0 +162,1,85,0 +162,2,76,0 +162,3,64,0 +162,4,45,0 +162,5,55,0 +162,6,90,2 +163,1,60,1 +163,2,30,0 +163,3,30,0 +163,4,36,0 +163,5,56,0 +163,6,50,0 +164,1,100,2 +164,2,50,0 +164,3,50,0 +164,4,86,0 +164,5,96,0 +164,6,70,0 +165,1,40,0 +165,2,20,0 +165,3,30,0 +165,4,40,0 +165,5,80,1 +165,6,55,0 +166,1,55,0 +166,2,35,0 +166,3,50,0 +166,4,55,0 +166,5,110,2 +166,6,85,0 +167,1,40,0 +167,2,60,1 +167,3,40,0 +167,4,40,0 +167,5,40,0 +167,6,30,0 +168,1,70,0 +168,2,90,2 +168,3,70,0 +168,4,60,0 +168,5,70,0 +168,6,40,0 +169,1,85,0 +169,2,90,0 +169,3,80,0 +169,4,70,0 +169,5,80,0 +169,6,130,3 +170,1,75,1 +170,2,38,0 +170,3,38,0 +170,4,56,0 +170,5,56,0 +170,6,67,0 +171,1,125,2 +171,2,58,0 +171,3,58,0 +171,4,76,0 +171,5,76,0 +171,6,67,0 +172,1,20,0 +172,2,40,0 +172,3,15,0 +172,4,35,0 +172,5,35,0 +172,6,60,1 +173,1,50,0 +173,2,25,0 +173,3,28,0 +173,4,45,0 +173,5,55,1 +173,6,15,0 +174,1,90,1 +174,2,30,0 +174,3,15,0 +174,4,40,0 +174,5,20,0 +174,6,15,0 +175,1,35,0 +175,2,20,0 +175,3,65,0 +175,4,40,0 +175,5,65,1 +175,6,20,0 +176,1,55,0 +176,2,40,0 +176,3,85,0 +176,4,80,0 +176,5,105,2 +176,6,40,0 +177,1,40,0 +177,2,50,0 +177,3,45,0 +177,4,70,1 +177,5,45,0 +177,6,70,0 +178,1,65,0 +178,2,75,0 +178,3,70,0 +178,4,95,1 +178,5,70,0 +178,6,95,1 +179,1,55,0 +179,2,40,0 +179,3,40,0 +179,4,65,1 +179,5,45,0 +179,6,35,0 +180,1,70,0 +180,2,55,0 +180,3,55,0 +180,4,80,2 +180,5,60,0 +180,6,45,0 +181,1,90,0 +181,2,75,0 +181,3,85,0 +181,4,115,3 +181,5,90,0 +181,6,55,0 +182,1,75,0 +182,2,80,0 +182,3,95,0 +182,4,90,0 +182,5,100,3 +182,6,50,0 +183,1,70,2 +183,2,20,0 +183,3,50,0 +183,4,20,0 +183,5,50,0 +183,6,40,0 +184,1,100,3 +184,2,50,0 +184,3,80,0 +184,4,60,0 +184,5,80,0 +184,6,50,0 +185,1,70,0 +185,2,100,0 +185,3,115,2 +185,4,30,0 +185,5,65,0 +185,6,30,0 +186,1,90,0 +186,2,75,0 +186,3,75,0 +186,4,90,0 +186,5,100,3 +186,6,70,0 +187,1,35,0 +187,2,35,0 +187,3,40,0 +187,4,35,0 +187,5,55,1 +187,6,50,0 +188,1,55,0 +188,2,45,0 +188,3,50,0 +188,4,45,0 +188,5,65,0 +188,6,80,2 +189,1,75,0 +189,2,55,0 +189,3,70,0 +189,4,55,0 +189,5,95,0 +189,6,110,3 +190,1,55,0 +190,2,70,0 +190,3,55,0 +190,4,40,0 +190,5,55,0 +190,6,85,1 +191,1,30,0 +191,2,30,0 +191,3,30,0 +191,4,30,1 +191,5,30,0 +191,6,30,0 +192,1,75,0 +192,2,75,0 +192,3,55,0 +192,4,105,2 +192,5,85,0 +192,6,30,0 +193,1,65,0 +193,2,65,0 +193,3,45,0 +193,4,75,0 +193,5,45,0 +193,6,95,1 +194,1,55,1 +194,2,45,0 +194,3,45,0 +194,4,25,0 +194,5,25,0 +194,6,15,0 +195,1,95,2 +195,2,85,0 +195,3,85,0 +195,4,65,0 +195,5,65,0 +195,6,35,0 +196,1,65,0 +196,2,65,0 +196,3,60,0 +196,4,130,2 +196,5,95,0 +196,6,110,0 +197,1,95,0 +197,2,65,0 +197,3,110,0 +197,4,60,0 +197,5,130,2 +197,6,65,0 +198,1,60,0 +198,2,85,0 +198,3,42,0 +198,4,85,0 +198,5,42,0 +198,6,91,1 +199,1,95,0 +199,2,75,0 +199,3,80,0 +199,4,100,0 +199,5,110,3 +199,6,30,0 +200,1,60,0 +200,2,60,0 +200,3,60,0 +200,4,85,0 +200,5,85,1 +200,6,85,0 +201,1,48,0 +201,2,72,1 +201,3,48,0 +201,4,72,1 +201,5,48,0 +201,6,48,0 +202,1,190,2 +202,2,33,0 +202,3,58,0 +202,4,33,0 +202,5,58,0 +202,6,33,0 +203,1,70,0 +203,2,80,0 +203,3,65,0 +203,4,90,2 +203,5,65,0 +203,6,85,0 +204,1,50,0 +204,2,65,0 +204,3,90,1 +204,4,35,0 +204,5,35,0 +204,6,15,0 +205,1,75,0 +205,2,90,0 +205,3,140,2 +205,4,60,0 +205,5,60,0 +205,6,40,0 +206,1,100,1 +206,2,70,0 +206,3,70,0 +206,4,65,0 +206,5,65,0 +206,6,45,0 +207,1,65,0 +207,2,75,0 +207,3,105,1 +207,4,35,0 +207,5,65,0 +207,6,85,0 +208,1,75,0 +208,2,85,0 +208,3,200,2 +208,4,55,0 +208,5,65,0 +208,6,30,0 +209,1,60,0 +209,2,80,1 +209,3,50,0 +209,4,40,0 +209,5,40,0 +209,6,30,0 +210,1,90,0 +210,2,120,2 +210,3,75,0 +210,4,60,0 +210,5,60,0 +210,6,45,0 +211,1,65,0 +211,2,95,1 +211,3,85,0 +211,4,55,0 +211,5,55,0 +211,6,85,0 +212,1,70,0 +212,2,130,2 +212,3,100,0 +212,4,55,0 +212,5,80,0 +212,6,65,0 +213,1,20,0 +213,2,10,0 +213,3,230,1 +213,4,10,0 +213,5,230,1 +213,6,5,0 +214,1,80,0 +214,2,125,2 +214,3,75,0 +214,4,40,0 +214,5,95,0 +214,6,85,0 +215,1,55,0 +215,2,95,0 +215,3,55,0 +215,4,35,0 +215,5,75,0 +215,6,115,1 +216,1,60,0 +216,2,80,1 +216,3,50,0 +216,4,50,0 +216,5,50,0 +216,6,40,0 +217,1,90,0 +217,2,130,2 +217,3,75,0 +217,4,75,0 +217,5,75,0 +217,6,55,0 +218,1,40,0 +218,2,40,0 +218,3,40,0 +218,4,70,1 +218,5,40,0 +218,6,20,0 +219,1,60,0 +219,2,50,0 +219,3,120,2 +219,4,90,0 +219,5,80,0 +219,6,30,0 +220,1,50,0 +220,2,50,1 +220,3,40,0 +220,4,30,0 +220,5,30,0 +220,6,50,0 +221,1,100,1 +221,2,100,1 +221,3,80,0 +221,4,60,0 +221,5,60,0 +221,6,50,0 +222,1,65,0 +222,2,55,0 +222,3,95,1 +222,4,65,0 +222,5,95,1 +222,6,35,0 +223,1,35,0 +223,2,65,0 +223,3,35,0 +223,4,65,1 +223,5,35,0 +223,6,65,0 +224,1,75,0 +224,2,105,1 +224,3,75,0 +224,4,105,1 +224,5,75,0 +224,6,45,0 +225,1,45,0 +225,2,55,0 +225,3,45,0 +225,4,65,0 +225,5,45,0 +225,6,75,1 +226,1,85,0 +226,2,40,0 +226,3,70,0 +226,4,80,0 +226,5,140,2 +226,6,70,0 +227,1,65,0 +227,2,80,0 +227,3,140,2 +227,4,40,0 +227,5,70,0 +227,6,70,0 +228,1,45,0 +228,2,60,0 +228,3,30,0 +228,4,80,1 +228,5,50,0 +228,6,65,0 +229,1,75,0 +229,2,90,0 +229,3,50,0 +229,4,110,2 +229,5,80,0 +229,6,95,0 +230,1,75,0 +230,2,95,1 +230,3,95,0 +230,4,95,1 +230,5,95,1 +230,6,85,0 +231,1,90,1 +231,2,60,0 +231,3,60,0 +231,4,40,0 +231,5,40,0 +231,6,40,0 +232,1,90,0 +232,2,120,1 +232,3,120,1 +232,4,60,0 +232,5,60,0 +232,6,50,0 +233,1,85,0 +233,2,80,0 +233,3,90,0 +233,4,105,2 +233,5,95,0 +233,6,60,0 +234,1,73,0 +234,2,95,1 +234,3,62,0 +234,4,85,0 +234,5,65,0 +234,6,85,0 +235,1,55,0 +235,2,20,0 +235,3,35,0 +235,4,20,0 +235,5,45,0 +235,6,75,1 +236,1,35,0 +236,2,35,1 +236,3,35,0 +236,4,35,0 +236,5,35,0 +236,6,35,0 +237,1,50,0 +237,2,95,0 +237,3,95,0 +237,4,35,0 +237,5,110,2 +237,6,70,0 +238,1,45,0 +238,2,30,0 +238,3,15,0 +238,4,85,1 +238,5,65,0 +238,6,65,0 +239,1,45,0 +239,2,63,0 +239,3,37,0 +239,4,65,0 +239,5,55,0 +239,6,95,1 +240,1,45,0 +240,2,75,0 +240,3,37,0 +240,4,70,0 +240,5,55,0 +240,6,83,1 +241,1,95,0 +241,2,80,0 +241,3,105,2 +241,4,40,0 +241,5,70,0 +241,6,100,0 +242,1,255,3 +242,2,10,0 +242,3,10,0 +242,4,75,0 +242,5,135,0 +242,6,55,0 +243,1,90,0 +243,2,85,0 +243,3,75,0 +243,4,115,1 +243,5,100,0 +243,6,115,2 +244,1,115,1 +244,2,115,2 +244,3,85,0 +244,4,90,0 +244,5,75,0 +244,6,100,0 +245,1,100,0 +245,2,75,0 +245,3,115,1 +245,4,90,0 +245,5,115,2 +245,6,85,0 +246,1,50,0 +246,2,64,1 +246,3,50,0 +246,4,45,0 +246,5,50,0 +246,6,41,0 +247,1,70,0 +247,2,84,2 +247,3,70,0 +247,4,65,0 +247,5,70,0 +247,6,51,0 +248,1,100,0 +248,2,134,3 +248,3,110,0 +248,4,95,0 +248,5,100,0 +248,6,61,0 +249,1,106,0 +249,2,90,0 +249,3,130,0 +249,4,90,0 +249,5,154,3 +249,6,110,0 +250,1,106,0 +250,2,130,0 +250,3,90,0 +250,4,110,0 +250,5,154,3 +250,6,90,0 +251,1,100,3 +251,2,100,0 +251,3,100,0 +251,4,100,0 +251,5,100,0 +251,6,100,0 +252,1,40,0 +252,2,45,0 +252,3,35,0 +252,4,65,0 +252,5,55,0 +252,6,70,1 +253,1,50,0 +253,2,65,0 +253,3,45,0 +253,4,85,0 +253,5,65,0 +253,6,95,2 +254,1,70,0 +254,2,85,0 +254,3,65,0 +254,4,105,0 +254,5,85,0 +254,6,120,3 +255,1,45,0 +255,2,60,0 +255,3,40,0 +255,4,70,1 +255,5,50,0 +255,6,45,0 +256,1,60,0 +256,2,85,1 +256,3,60,0 +256,4,85,1 +256,5,60,0 +256,6,55,0 +257,1,80,0 +257,2,120,3 +257,3,70,0 +257,4,110,0 +257,5,70,0 +257,6,80,0 +258,1,50,0 +258,2,70,1 +258,3,50,0 +258,4,50,0 +258,5,50,0 +258,6,40,0 +259,1,70,0 +259,2,85,2 +259,3,70,0 +259,4,60,0 +259,5,70,0 +259,6,50,0 +260,1,100,0 +260,2,110,3 +260,3,90,0 +260,4,85,0 +260,5,90,0 +260,6,60,0 +261,1,35,0 +261,2,55,1 +261,3,35,0 +261,4,30,0 +261,5,30,0 +261,6,35,0 +262,1,70,0 +262,2,90,2 +262,3,70,0 +262,4,60,0 +262,5,60,0 +262,6,70,0 +263,1,38,0 +263,2,30,0 +263,3,41,0 +263,4,30,0 +263,5,41,0 +263,6,60,1 +264,1,78,0 +264,2,70,0 +264,3,61,0 +264,4,50,0 +264,5,61,0 +264,6,100,2 +265,1,45,1 +265,2,45,0 +265,3,35,0 +265,4,20,0 +265,5,30,0 +265,6,20,0 +266,1,50,0 +266,2,35,0 +266,3,55,2 +266,4,25,0 +266,5,25,0 +266,6,15,0 +267,1,60,0 +267,2,70,0 +267,3,50,0 +267,4,100,3 +267,5,50,0 +267,6,65,0 +268,1,50,0 +268,2,35,0 +268,3,55,2 +268,4,25,0 +268,5,25,0 +268,6,15,0 +269,1,60,0 +269,2,50,0 +269,3,70,0 +269,4,50,0 +269,5,90,3 +269,6,65,0 +270,1,40,0 +270,2,30,0 +270,3,30,0 +270,4,40,0 +270,5,50,1 +270,6,30,0 +271,1,60,0 +271,2,50,0 +271,3,50,0 +271,4,60,0 +271,5,70,2 +271,6,50,0 +272,1,80,0 +272,2,70,0 +272,3,70,0 +272,4,90,0 +272,5,100,3 +272,6,70,0 +273,1,40,0 +273,2,40,0 +273,3,50,1 +273,4,30,0 +273,5,30,0 +273,6,30,0 +274,1,70,0 +274,2,70,2 +274,3,40,0 +274,4,60,0 +274,5,40,0 +274,6,60,0 +275,1,90,0 +275,2,100,3 +275,3,60,0 +275,4,90,0 +275,5,60,0 +275,6,80,0 +276,1,40,0 +276,2,55,0 +276,3,30,0 +276,4,30,0 +276,5,30,0 +276,6,85,1 +277,1,60,0 +277,2,85,0 +277,3,60,0 +277,4,75,0 +277,5,50,0 +277,6,125,2 +278,1,40,0 +278,2,30,0 +278,3,30,0 +278,4,55,0 +278,5,30,0 +278,6,85,1 +279,1,60,0 +279,2,50,0 +279,3,100,2 +279,4,95,0 +279,5,70,0 +279,6,65,0 +280,1,28,0 +280,2,25,0 +280,3,25,0 +280,4,45,1 +280,5,35,0 +280,6,40,0 +281,1,38,0 +281,2,35,0 +281,3,35,0 +281,4,65,2 +281,5,55,0 +281,6,50,0 +282,1,68,0 +282,2,65,0 +282,3,65,0 +282,4,125,3 +282,5,115,0 +282,6,80,0 +283,1,40,0 +283,2,30,0 +283,3,32,0 +283,4,50,0 +283,5,52,0 +283,6,65,1 +284,1,70,0 +284,2,60,0 +284,3,62,0 +284,4,100,1 +284,5,82,1 +284,6,80,0 +285,1,60,1 +285,2,40,0 +285,3,60,0 +285,4,40,0 +285,5,60,0 +285,6,35,0 +286,1,60,0 +286,2,130,2 +286,3,80,0 +286,4,60,0 +286,5,60,0 +286,6,70,0 +287,1,60,1 +287,2,60,0 +287,3,60,0 +287,4,35,0 +287,5,35,0 +287,6,30,0 +288,1,80,0 +288,2,80,0 +288,3,80,0 +288,4,55,0 +288,5,55,0 +288,6,90,2 +289,1,150,3 +289,2,160,0 +289,3,100,0 +289,4,95,0 +289,5,65,0 +289,6,100,0 +290,1,31,0 +290,2,45,0 +290,3,90,1 +290,4,30,0 +290,5,30,0 +290,6,40,0 +291,1,61,0 +291,2,90,0 +291,3,45,0 +291,4,50,0 +291,5,50,0 +291,6,160,2 +292,1,1,2 +292,2,90,0 +292,3,45,0 +292,4,30,0 +292,5,30,0 +292,6,40,0 +293,1,64,1 +293,2,51,0 +293,3,23,0 +293,4,51,0 +293,5,23,0 +293,6,28,0 +294,1,84,2 +294,2,71,0 +294,3,43,0 +294,4,71,0 +294,5,43,0 +294,6,48,0 +295,1,104,3 +295,2,91,0 +295,3,63,0 +295,4,91,0 +295,5,73,0 +295,6,68,0 +296,1,72,1 +296,2,60,0 +296,3,30,0 +296,4,20,0 +296,5,30,0 +296,6,25,0 +297,1,144,2 +297,2,120,0 +297,3,60,0 +297,4,40,0 +297,5,60,0 +297,6,50,0 +298,1,50,1 +298,2,20,0 +298,3,40,0 +298,4,20,0 +298,5,40,0 +298,6,20,0 +299,1,30,0 +299,2,45,0 +299,3,135,1 +299,4,45,0 +299,5,90,0 +299,6,30,0 +300,1,50,0 +300,2,45,0 +300,3,45,0 +300,4,35,0 +300,5,35,0 +300,6,50,1 +301,1,70,1 +301,2,65,0 +301,3,65,0 +301,4,55,0 +301,5,55,0 +301,6,90,1 +302,1,50,0 +302,2,75,1 +302,3,75,1 +302,4,65,0 +302,5,65,0 +302,6,50,0 +303,1,50,0 +303,2,85,1 +303,3,85,1 +303,4,55,0 +303,5,55,0 +303,6,50,0 +304,1,50,0 +304,2,70,0 +304,3,100,1 +304,4,40,0 +304,5,40,0 +304,6,30,0 +305,1,60,0 +305,2,90,0 +305,3,140,2 +305,4,50,0 +305,5,50,0 +305,6,40,0 +306,1,70,0 +306,2,110,0 +306,3,180,3 +306,4,60,0 +306,5,60,0 +306,6,50,0 +307,1,30,0 +307,2,40,0 +307,3,55,0 +307,4,40,0 +307,5,55,0 +307,6,60,1 +308,1,60,0 +308,2,60,0 +308,3,75,0 +308,4,60,0 +308,5,75,0 +308,6,80,2 +309,1,40,0 +309,2,45,0 +309,3,40,0 +309,4,65,0 +309,5,40,0 +309,6,65,1 +310,1,70,0 +310,2,75,0 +310,3,60,0 +310,4,105,0 +310,5,60,0 +310,6,105,2 +311,1,60,0 +311,2,50,0 +311,3,40,0 +311,4,85,0 +311,5,75,0 +311,6,95,1 +312,1,60,0 +312,2,40,0 +312,3,50,0 +312,4,75,0 +312,5,85,0 +312,6,95,1 +313,1,65,0 +313,2,73,0 +313,3,75,0 +313,4,47,0 +313,5,85,0 +313,6,85,1 +314,1,65,0 +314,2,47,0 +314,3,75,0 +314,4,73,0 +314,5,85,0 +314,6,85,1 +315,1,50,0 +315,2,60,0 +315,3,45,0 +315,4,100,2 +315,5,80,0 +315,6,65,0 +316,1,70,1 +316,2,43,0 +316,3,53,0 +316,4,43,0 +316,5,53,0 +316,6,40,0 +317,1,100,2 +317,2,73,0 +317,3,83,0 +317,4,73,0 +317,5,83,0 +317,6,55,0 +318,1,45,0 +318,2,90,1 +318,3,20,0 +318,4,65,0 +318,5,20,0 +318,6,65,0 +319,1,70,0 +319,2,120,2 +319,3,40,0 +319,4,95,0 +319,5,40,0 +319,6,95,0 +320,1,130,1 +320,2,70,0 +320,3,35,0 +320,4,70,0 +320,5,35,0 +320,6,60,0 +321,1,170,2 +321,2,90,0 +321,3,45,0 +321,4,90,0 +321,5,45,0 +321,6,60,0 +322,1,60,0 +322,2,60,0 +322,3,40,0 +322,4,65,1 +322,5,45,0 +322,6,35,0 +323,1,70,0 +323,2,100,1 +323,3,70,0 +323,4,105,1 +323,5,75,0 +323,6,40,0 +324,1,70,0 +324,2,85,0 +324,3,140,2 +324,4,85,0 +324,5,70,0 +324,6,20,0 +325,1,60,0 +325,2,25,0 +325,3,35,0 +325,4,70,0 +325,5,80,1 +325,6,60,0 +326,1,80,0 +326,2,45,0 +326,3,65,0 +326,4,90,0 +326,5,110,2 +326,6,80,0 +327,1,60,0 +327,2,60,0 +327,3,60,0 +327,4,60,1 +327,5,60,0 +327,6,60,0 +328,1,45,0 +328,2,100,1 +328,3,45,0 +328,4,45,0 +328,5,45,0 +328,6,10,0 +329,1,50,0 +329,2,70,1 +329,3,50,0 +329,4,50,0 +329,5,50,0 +329,6,70,1 +330,1,80,0 +330,2,100,1 +330,3,80,0 +330,4,80,0 +330,5,80,0 +330,6,100,2 +331,1,50,0 +331,2,85,0 +331,3,40,0 +331,4,85,1 +331,5,40,0 +331,6,35,0 +332,1,70,0 +332,2,115,1 +332,3,60,0 +332,4,115,1 +332,5,60,0 +332,6,55,0 +333,1,45,0 +333,2,40,0 +333,3,60,0 +333,4,40,0 +333,5,75,1 +333,6,50,0 +334,1,75,0 +334,2,70,0 +334,3,90,0 +334,4,70,0 +334,5,105,2 +334,6,80,0 +335,1,73,0 +335,2,115,2 +335,3,60,0 +335,4,60,0 +335,5,60,0 +335,6,90,0 +336,1,73,0 +336,2,100,1 +336,3,60,0 +336,4,100,1 +336,5,60,0 +336,6,65,0 +337,1,90,0 +337,2,55,0 +337,3,65,0 +337,4,95,2 +337,5,85,0 +337,6,70,0 +338,1,90,0 +338,2,95,2 +338,3,85,0 +338,4,55,0 +338,5,65,0 +338,6,70,0 +339,1,50,1 +339,2,48,0 +339,3,43,0 +339,4,46,0 +339,5,41,0 +339,6,60,0 +340,1,110,2 +340,2,78,0 +340,3,73,0 +340,4,76,0 +340,5,71,0 +340,6,60,0 +341,1,43,0 +341,2,80,1 +341,3,65,0 +341,4,50,0 +341,5,35,0 +341,6,35,0 +342,1,63,0 +342,2,120,2 +342,3,85,0 +342,4,90,0 +342,5,55,0 +342,6,55,0 +343,1,40,0 +343,2,40,0 +343,3,55,0 +343,4,40,0 +343,5,70,1 +343,6,55,0 +344,1,60,0 +344,2,70,0 +344,3,105,0 +344,4,70,0 +344,5,120,2 +344,6,75,0 +345,1,66,0 +345,2,41,0 +345,3,77,0 +345,4,61,0 +345,5,87,1 +345,6,23,0 +346,1,86,0 +346,2,81,0 +346,3,97,0 +346,4,81,0 +346,5,107,2 +346,6,43,0 +347,1,45,0 +347,2,95,1 +347,3,50,0 +347,4,40,0 +347,5,50,0 +347,6,75,0 +348,1,75,0 +348,2,125,2 +348,3,100,0 +348,4,70,0 +348,5,80,0 +348,6,45,0 +349,1,20,0 +349,2,15,0 +349,3,20,0 +349,4,10,0 +349,5,55,0 +349,6,80,1 +350,1,95,0 +350,2,60,0 +350,3,79,0 +350,4,100,0 +350,5,125,2 +350,6,81,0 +351,1,70,1 +351,2,70,0 +351,3,70,0 +351,4,70,0 +351,5,70,0 +351,6,70,0 +352,1,60,0 +352,2,90,0 +352,3,70,0 +352,4,60,0 +352,5,120,1 +352,6,40,0 +353,1,44,0 +353,2,75,1 +353,3,35,0 +353,4,63,0 +353,5,33,0 +353,6,45,0 +354,1,64,0 +354,2,115,2 +354,3,65,0 +354,4,83,0 +354,5,63,0 +354,6,65,0 +355,1,20,0 +355,2,40,0 +355,3,90,0 +355,4,30,0 +355,5,90,1 +355,6,25,0 +356,1,40,0 +356,2,70,0 +356,3,130,1 +356,4,60,0 +356,5,130,1 +356,6,25,0 +357,1,99,2 +357,2,68,0 +357,3,83,0 +357,4,72,0 +357,5,87,0 +357,6,51,0 +358,1,75,0 +358,2,50,0 +358,3,80,0 +358,4,95,1 +358,5,90,1 +358,6,65,0 +359,1,65,0 +359,2,130,2 +359,3,60,0 +359,4,75,0 +359,5,60,0 +359,6,75,0 +360,1,95,1 +360,2,23,0 +360,3,48,0 +360,4,23,0 +360,5,48,0 +360,6,23,0 +361,1,50,1 +361,2,50,0 +361,3,50,0 +361,4,50,0 +361,5,50,0 +361,6,50,0 +362,1,80,2 +362,2,80,0 +362,3,80,0 +362,4,80,0 +362,5,80,0 +362,6,80,0 +363,1,70,1 +363,2,40,0 +363,3,50,0 +363,4,55,0 +363,5,50,0 +363,6,25,0 +364,1,90,2 +364,2,60,0 +364,3,70,0 +364,4,75,0 +364,5,70,0 +364,6,45,0 +365,1,110,3 +365,2,80,0 +365,3,90,0 +365,4,95,0 +365,5,90,0 +365,6,65,0 +366,1,35,0 +366,2,64,0 +366,3,85,1 +366,4,74,0 +366,5,55,0 +366,6,32,0 +367,1,55,0 +367,2,104,1 +367,3,105,1 +367,4,94,0 +367,5,75,0 +367,6,52,0 +368,1,55,0 +368,2,84,0 +368,3,105,0 +368,4,114,2 +368,5,75,0 +368,6,52,0 +369,1,100,1 +369,2,90,0 +369,3,130,1 +369,4,45,0 +369,5,65,0 +369,6,55,0 +370,1,43,0 +370,2,30,0 +370,3,55,0 +370,4,40,0 +370,5,65,0 +370,6,97,1 +371,1,45,0 +371,2,75,1 +371,3,60,0 +371,4,40,0 +371,5,30,0 +371,6,50,0 +372,1,65,0 +372,2,95,0 +372,3,100,2 +372,4,60,0 +372,5,50,0 +372,6,50,0 +373,1,95,0 +373,2,135,3 +373,3,80,0 +373,4,110,0 +373,5,80,0 +373,6,100,0 +374,1,40,0 +374,2,55,0 +374,3,80,1 +374,4,35,0 +374,5,60,0 +374,6,30,0 +375,1,60,0 +375,2,75,0 +375,3,100,2 +375,4,55,0 +375,5,80,0 +375,6,50,0 +376,1,80,0 +376,2,135,0 +376,3,130,3 +376,4,95,0 +376,5,90,0 +376,6,70,0 +377,1,80,0 +377,2,100,0 +377,3,200,3 +377,4,50,0 +377,5,100,0 +377,6,50,0 +378,1,80,0 +378,2,50,0 +378,3,100,0 +378,4,100,0 +378,5,200,3 +378,6,50,0 +379,1,80,0 +379,2,75,0 +379,3,150,2 +379,4,75,0 +379,5,150,1 +379,6,50,0 +380,1,80,0 +380,2,80,0 +380,3,90,0 +380,4,110,0 +380,5,130,3 +380,6,110,0 +381,1,80,0 +381,2,90,0 +381,3,80,0 +381,4,130,3 +381,5,110,0 +381,6,110,0 +382,1,100,0 +382,2,100,0 +382,3,90,0 +382,4,150,3 +382,5,140,0 +382,6,90,0 +383,1,100,0 +383,2,150,3 +383,3,140,0 +383,4,100,0 +383,5,90,0 +383,6,90,0 +384,1,105,0 +384,2,150,2 +384,3,90,0 +384,4,150,1 +384,5,90,0 +384,6,95,0 +385,1,100,3 +385,2,100,0 +385,3,100,0 +385,4,100,0 +385,5,100,0 +385,6,100,0 +386,1,50,0 +386,2,150,1 +386,3,50,0 +386,4,150,1 +386,5,50,0 +386,6,150,1 +387,1,55,0 +387,2,68,1 +387,3,64,0 +387,4,45,0 +387,5,55,0 +387,6,31,0 +388,1,75,0 +388,2,89,1 +388,3,85,1 +388,4,55,0 +388,5,65,0 +388,6,36,0 +389,1,95,0 +389,2,109,2 +389,3,105,1 +389,4,75,0 +389,5,85,0 +389,6,56,0 +390,1,44,0 +390,2,58,0 +390,3,44,0 +390,4,58,0 +390,5,44,0 +390,6,61,1 +391,1,64,0 +391,2,78,0 +391,3,52,0 +391,4,78,1 +391,5,52,0 +391,6,81,1 +392,1,76,0 +392,2,104,1 +392,3,71,0 +392,4,104,1 +392,5,71,0 +392,6,108,1 +393,1,53,0 +393,2,51,0 +393,3,53,0 +393,4,61,1 +393,5,56,0 +393,6,40,0 +394,1,64,0 +394,2,66,0 +394,3,68,0 +394,4,81,2 +394,5,76,0 +394,6,50,0 +395,1,84,0 +395,2,86,0 +395,3,88,0 +395,4,111,3 +395,5,101,0 +395,6,60,0 +396,1,40,0 +396,2,55,0 +396,3,30,0 +396,4,30,0 +396,5,30,0 +396,6,60,1 +397,1,55,0 +397,2,75,0 +397,3,50,0 +397,4,40,0 +397,5,40,0 +397,6,80,2 +398,1,85,0 +398,2,120,3 +398,3,70,0 +398,4,50,0 +398,5,60,0 +398,6,100,0 +399,1,59,1 +399,2,45,0 +399,3,40,0 +399,4,35,0 +399,5,40,0 +399,6,31,0 +400,1,79,0 +400,2,85,2 +400,3,60,0 +400,4,55,0 +400,5,60,0 +400,6,71,0 +401,1,37,0 +401,2,25,0 +401,3,41,1 +401,4,25,0 +401,5,41,0 +401,6,25,0 +402,1,77,0 +402,2,85,2 +402,3,51,0 +402,4,55,0 +402,5,51,0 +402,6,65,0 +403,1,45,0 +403,2,65,1 +403,3,34,0 +403,4,40,0 +403,5,34,0 +403,6,45,0 +404,1,60,0 +404,2,85,2 +404,3,49,0 +404,4,60,0 +404,5,49,0 +404,6,60,0 +405,1,80,0 +405,2,120,3 +405,3,79,0 +405,4,95,0 +405,5,79,0 +405,6,70,0 +406,1,40,0 +406,2,30,0 +406,3,35,0 +406,4,50,1 +406,5,70,0 +406,6,55,0 +407,1,60,0 +407,2,70,0 +407,3,65,0 +407,4,125,3 +407,5,105,0 +407,6,90,0 +408,1,67,0 +408,2,125,1 +408,3,40,0 +408,4,30,0 +408,5,30,0 +408,6,58,0 +409,1,97,0 +409,2,165,2 +409,3,60,0 +409,4,65,0 +409,5,50,0 +409,6,58,0 +410,1,30,0 +410,2,42,0 +410,3,118,1 +410,4,42,0 +410,5,88,0 +410,6,30,0 +411,1,60,0 +411,2,52,0 +411,3,168,2 +411,4,47,0 +411,5,138,0 +411,6,30,0 +412,1,40,0 +412,2,29,0 +412,3,45,0 +412,4,29,0 +412,5,45,1 +412,6,36,0 +413,1,60,0 +413,2,59,0 +413,3,85,0 +413,4,79,0 +413,5,105,2 +413,6,36,0 +414,1,70,0 +414,2,94,1 +414,3,50,0 +414,4,94,1 +414,5,50,0 +414,6,66,0 +415,1,30,0 +415,2,30,0 +415,3,42,0 +415,4,30,0 +415,5,42,0 +415,6,70,1 +416,1,70,0 +416,2,80,0 +416,3,102,1 +416,4,80,0 +416,5,102,1 +416,6,40,0 +417,1,60,0 +417,2,45,0 +417,3,70,0 +417,4,45,0 +417,5,90,0 +417,6,95,1 +418,1,55,0 +418,2,65,0 +418,3,35,0 +418,4,60,0 +418,5,30,0 +418,6,85,1 +419,1,85,0 +419,2,105,0 +419,3,55,0 +419,4,85,0 +419,5,50,0 +419,6,115,2 +420,1,45,0 +420,2,35,0 +420,3,45,0 +420,4,62,1 +420,5,53,0 +420,6,35,0 +421,1,70,0 +421,2,60,0 +421,3,70,0 +421,4,87,2 +421,5,78,0 +421,6,85,0 +422,1,76,1 +422,2,48,0 +422,3,48,0 +422,4,57,0 +422,5,62,0 +422,6,34,0 +423,1,111,2 +423,2,83,0 +423,3,68,0 +423,4,92,0 +423,5,82,0 +423,6,39,0 +424,1,75,0 +424,2,100,0 +424,3,66,0 +424,4,60,0 +424,5,66,0 +424,6,115,2 +425,1,90,1 +425,2,50,0 +425,3,34,0 +425,4,60,0 +425,5,44,0 +425,6,70,0 +426,1,150,2 +426,2,80,0 +426,3,44,0 +426,4,90,0 +426,5,54,0 +426,6,80,0 +427,1,55,0 +427,2,66,0 +427,3,44,0 +427,4,44,0 +427,5,56,0 +427,6,85,1 +428,1,65,0 +428,2,76,0 +428,3,84,0 +428,4,54,0 +428,5,96,0 +428,6,105,2 +429,1,60,0 +429,2,60,0 +429,3,60,0 +429,4,105,1 +429,5,105,1 +429,6,105,0 +430,1,100,0 +430,2,125,2 +430,3,52,0 +430,4,105,0 +430,5,52,0 +430,6,71,0 +431,1,49,0 +431,2,55,0 +431,3,42,0 +431,4,42,0 +431,5,37,0 +431,6,85,1 +432,1,71,0 +432,2,82,0 +432,3,64,0 +432,4,64,0 +432,5,59,0 +432,6,112,2 +433,1,45,0 +433,2,30,0 +433,3,50,0 +433,4,65,1 +433,5,50,0 +433,6,45,0 +434,1,63,0 +434,2,63,0 +434,3,47,0 +434,4,41,0 +434,5,41,0 +434,6,74,1 +435,1,103,2 +435,2,93,0 +435,3,67,0 +435,4,71,0 +435,5,61,0 +435,6,84,0 +436,1,57,0 +436,2,24,0 +436,3,86,1 +436,4,24,0 +436,5,86,0 +436,6,23,0 +437,1,67,0 +437,2,89,0 +437,3,116,1 +437,4,79,0 +437,5,116,1 +437,6,33,0 +438,1,50,0 +438,2,80,0 +438,3,95,1 +438,4,10,0 +438,5,45,0 +438,6,10,0 +439,1,20,0 +439,2,25,0 +439,3,45,0 +439,4,70,0 +439,5,90,1 +439,6,60,0 +440,1,100,1 +440,2,5,0 +440,3,5,0 +440,4,15,0 +440,5,65,0 +440,6,30,0 +441,1,76,0 +441,2,65,1 +441,3,45,0 +441,4,92,0 +441,5,42,0 +441,6,91,0 +442,1,50,0 +442,2,92,0 +442,3,108,1 +442,4,92,0 +442,5,108,1 +442,6,35,0 +443,1,58,0 +443,2,70,1 +443,3,45,0 +443,4,40,0 +443,5,45,0 +443,6,42,0 +444,1,68,0 +444,2,90,2 +444,3,65,0 +444,4,50,0 +444,5,55,0 +444,6,82,0 +445,1,108,0 +445,2,130,3 +445,3,95,0 +445,4,80,0 +445,5,85,0 +445,6,102,0 +446,1,135,1 +446,2,85,0 +446,3,40,0 +446,4,40,0 +446,5,85,0 +446,6,5,0 +447,1,40,0 +447,2,70,1 +447,3,40,0 +447,4,35,0 +447,5,40,0 +447,6,60,0 +448,1,70,0 +448,2,110,1 +448,3,70,0 +448,4,115,1 +448,5,70,0 +448,6,90,0 +449,1,68,0 +449,2,72,0 +449,3,78,1 +449,4,38,0 +449,5,42,0 +449,6,32,0 +450,1,108,0 +450,2,112,0 +450,3,118,2 +450,4,68,0 +450,5,72,0 +450,6,47,0 +451,1,40,0 +451,2,50,0 +451,3,90,1 +451,4,30,0 +451,5,55,0 +451,6,65,0 +452,1,70,0 +452,2,90,0 +452,3,110,2 +452,4,60,0 +452,5,75,0 +452,6,95,0 +453,1,48,0 +453,2,61,1 +453,3,40,0 +453,4,61,0 +453,5,40,0 +453,6,50,0 +454,1,83,0 +454,2,106,2 +454,3,65,0 +454,4,86,0 +454,5,65,0 +454,6,85,0 +455,1,74,0 +455,2,100,2 +455,3,72,0 +455,4,90,0 +455,5,72,0 +455,6,46,0 +456,1,49,0 +456,2,49,0 +456,3,56,0 +456,4,49,0 +456,5,61,0 +456,6,66,1 +457,1,69,0 +457,2,69,0 +457,3,76,0 +457,4,69,0 +457,5,86,0 +457,6,91,2 +458,1,45,0 +458,2,20,0 +458,3,50,0 +458,4,60,0 +458,5,120,1 +458,6,50,0 +459,1,60,0 +459,2,62,1 +459,3,50,0 +459,4,62,0 +459,5,60,0 +459,6,40,0 +460,1,90,0 +460,2,92,1 +460,3,75,0 +460,4,92,1 +460,5,85,0 +460,6,60,0 +461,1,70,0 +461,2,120,1 +461,3,65,0 +461,4,45,0 +461,5,85,0 +461,6,125,1 +462,1,70,0 +462,2,70,0 +462,3,115,0 +462,4,130,3 +462,5,90,0 +462,6,60,0 +463,1,110,3 +463,2,85,0 +463,3,95,0 +463,4,80,0 +463,5,95,0 +463,6,50,0 +464,1,115,0 +464,2,140,3 +464,3,130,0 +464,4,55,0 +464,5,55,0 +464,6,40,0 +465,1,100,0 +465,2,100,0 +465,3,125,2 +465,4,110,0 +465,5,50,0 +465,6,50,0 +466,1,75,0 +466,2,123,3 +466,3,67,0 +466,4,95,0 +466,5,85,0 +466,6,95,0 +467,1,75,0 +467,2,95,0 +467,3,67,0 +467,4,125,3 +467,5,95,0 +467,6,83,0 +468,1,85,0 +468,2,50,0 +468,3,95,0 +468,4,120,2 +468,5,115,1 +468,6,80,0 +469,1,86,0 +469,2,76,2 +469,3,86,0 +469,4,116,0 +469,5,56,0 +469,6,95,0 +470,1,65,0 +470,2,110,0 +470,3,130,2 +470,4,60,0 +470,5,65,0 +470,6,95,0 +471,1,65,0 +471,2,60,0 +471,3,110,0 +471,4,130,2 +471,5,95,0 +471,6,65,0 +472,1,75,0 +472,2,95,0 +472,3,125,2 +472,4,45,0 +472,5,75,0 +472,6,95,0 +473,1,110,0 +473,2,130,3 +473,3,80,0 +473,4,70,0 +473,5,60,0 +473,6,80,0 +474,1,85,0 +474,2,80,0 +474,3,70,0 +474,4,135,3 +474,5,75,0 +474,6,90,0 +475,1,68,0 +475,2,125,3 +475,3,65,0 +475,4,65,0 +475,5,115,0 +475,6,80,0 +476,1,60,0 +476,2,55,0 +476,3,145,1 +476,4,75,0 +476,5,150,2 +476,6,40,0 +477,1,45,0 +477,2,100,0 +477,3,135,1 +477,4,65,0 +477,5,135,2 +477,6,45,0 +478,1,70,0 +478,2,80,0 +478,3,70,0 +478,4,80,0 +478,5,70,0 +478,6,110,2 +479,1,50,0 +479,2,50,0 +479,3,77,0 +479,4,95,1 +479,5,77,0 +479,6,91,1 +480,1,75,0 +480,2,75,0 +480,3,130,2 +480,4,75,0 +480,5,130,1 +480,6,95,0 +481,1,80,0 +481,2,105,1 +481,3,105,0 +481,4,105,1 +481,5,105,1 +481,6,80,0 +482,1,75,0 +482,2,125,2 +482,3,70,0 +482,4,125,1 +482,5,70,0 +482,6,115,0 +483,1,100,0 +483,2,120,0 +483,3,120,0 +483,4,150,3 +483,5,100,0 +483,6,90,0 +484,1,90,0 +484,2,120,0 +484,3,100,0 +484,4,150,3 +484,5,120,0 +484,6,100,0 +485,1,91,0 +485,2,90,0 +485,3,106,0 +485,4,130,3 +485,5,106,0 +485,6,77,0 +486,1,110,0 +486,2,160,3 +486,3,110,0 +486,4,80,0 +486,5,110,0 +486,6,100,0 +487,1,150,3 +487,2,100,0 +487,3,120,0 +487,4,100,0 +487,5,120,0 +487,6,90,0 +488,1,120,0 +488,2,70,0 +488,3,120,0 +488,4,75,0 +488,5,130,3 +488,6,85,0 +489,1,80,1 +489,2,80,0 +489,3,80,0 +489,4,80,0 +489,5,80,0 +489,6,80,0 +490,1,100,3 +490,2,100,0 +490,3,100,0 +490,4,100,0 +490,5,100,0 +490,6,100,0 +491,1,70,0 +491,2,90,0 +491,3,90,0 +491,4,135,2 +491,5,90,0 +491,6,125,1 +492,1,100,3 +492,2,100,0 +492,3,100,0 +492,4,100,0 +492,5,100,0 +492,6,100,0 +493,1,120,3 +493,2,120,0 +493,3,120,0 +493,4,120,0 +493,5,120,0 +493,6,120,0 +494,1,100,3 +494,2,100,0 +494,3,100,0 +494,4,100,0 +494,5,100,0 +494,6,100,0 +495,1,45,0 +495,2,45,0 +495,3,55,0 +495,4,45,0 +495,5,55,0 +495,6,63,1 +496,1,60,0 +496,2,60,0 +496,3,75,0 +496,4,60,0 +496,5,75,0 +496,6,83,2 +497,1,75,0 +497,2,75,0 +497,3,95,0 +497,4,75,0 +497,5,95,0 +497,6,113,3 +498,1,65,1 +498,2,63,0 +498,3,45,0 +498,4,45,0 +498,5,45,0 +498,6,45,0 +499,1,90,0 +499,2,93,2 +499,3,55,0 +499,4,70,0 +499,5,55,0 +499,6,55,0 +500,1,110,0 +500,2,123,3 +500,3,65,0 +500,4,100,0 +500,5,65,0 +500,6,65,0 +501,1,55,0 +501,2,55,0 +501,3,45,0 +501,4,63,1 +501,5,45,0 +501,6,45,0 +502,1,75,0 +502,2,75,0 +502,3,60,0 +502,4,83,2 +502,5,60,0 +502,6,60,0 +503,1,95,0 +503,2,100,0 +503,3,85,0 +503,4,108,3 +503,5,70,0 +503,6,70,0 +504,1,45,0 +504,2,55,1 +504,3,39,0 +504,4,35,0 +504,5,39,0 +504,6,42,0 +505,1,60,0 +505,2,85,2 +505,3,69,0 +505,4,60,0 +505,5,69,0 +505,6,77,0 +506,1,45,0 +506,2,60,1 +506,3,45,0 +506,4,25,0 +506,5,45,0 +506,6,55,0 +507,1,65,0 +507,2,80,2 +507,3,65,0 +507,4,35,0 +507,5,65,0 +507,6,60,0 +508,1,85,0 +508,2,110,3 +508,3,90,0 +508,4,45,0 +508,5,90,0 +508,6,80,0 +509,1,41,0 +509,2,50,0 +509,3,37,0 +509,4,50,0 +509,5,37,0 +509,6,66,1 +510,1,64,0 +510,2,88,0 +510,3,50,0 +510,4,88,0 +510,5,50,0 +510,6,106,2 +511,1,50,0 +511,2,53,0 +511,3,48,0 +511,4,53,0 +511,5,48,0 +511,6,64,1 +512,1,75,0 +512,2,98,0 +512,3,63,0 +512,4,98,0 +512,5,63,0 +512,6,101,2 +513,1,50,0 +513,2,53,0 +513,3,48,0 +513,4,53,0 +513,5,48,0 +513,6,64,1 +514,1,75,0 +514,2,98,0 +514,3,63,0 +514,4,98,0 +514,5,63,0 +514,6,101,2 +515,1,50,0 +515,2,53,0 +515,3,48,0 +515,4,53,0 +515,5,48,0 +515,6,64,1 +516,1,75,0 +516,2,98,0 +516,3,63,0 +516,4,98,0 +516,5,63,0 +516,6,101,2 +517,1,76,1 +517,2,25,0 +517,3,45,0 +517,4,67,0 +517,5,55,0 +517,6,24,0 +518,1,116,2 +518,2,55,0 +518,3,85,0 +518,4,107,0 +518,5,95,0 +518,6,29,0 +519,1,50,0 +519,2,55,1 +519,3,50,0 +519,4,36,0 +519,5,30,0 +519,6,43,0 +520,1,62,0 +520,2,77,2 +520,3,62,0 +520,4,50,0 +520,5,42,0 +520,6,65,0 +521,1,80,0 +521,2,115,3 +521,3,80,0 +521,4,65,0 +521,5,55,0 +521,6,93,0 +522,1,45,0 +522,2,60,0 +522,3,32,0 +522,4,50,0 +522,5,32,0 +522,6,76,1 +523,1,75,0 +523,2,100,0 +523,3,63,0 +523,4,80,0 +523,5,63,0 +523,6,116,2 +524,1,55,0 +524,2,75,0 +524,3,85,1 +524,4,25,0 +524,5,25,0 +524,6,15,0 +525,1,70,0 +525,2,105,1 +525,3,105,1 +525,4,50,0 +525,5,40,0 +525,6,20,0 +526,1,85,0 +526,2,135,3 +526,3,130,0 +526,4,60,0 +526,5,80,0 +526,6,25,0 +527,1,65,0 +527,2,45,0 +527,3,43,0 +527,4,55,0 +527,5,43,0 +527,6,72,1 +528,1,67,0 +528,2,57,0 +528,3,55,0 +528,4,77,0 +528,5,55,0 +528,6,114,2 +529,1,60,0 +529,2,85,1 +529,3,40,0 +529,4,30,0 +529,5,45,0 +529,6,68,0 +530,1,110,0 +530,2,135,2 +530,3,60,0 +530,4,50,0 +530,5,65,0 +530,6,88,0 +531,1,103,2 +531,2,60,0 +531,3,86,0 +531,4,60,0 +531,5,86,0 +531,6,50,0 +532,1,75,0 +532,2,80,1 +532,3,55,0 +532,4,25,0 +532,5,35,0 +532,6,35,0 +533,1,85,0 +533,2,105,2 +533,3,85,0 +533,4,40,0 +533,5,50,0 +533,6,40,0 +534,1,105,0 +534,2,140,3 +534,3,95,0 +534,4,55,0 +534,5,65,0 +534,6,45,0 +535,1,50,0 +535,2,50,0 +535,3,40,0 +535,4,50,0 +535,5,40,0 +535,6,64,1 +536,1,75,2 +536,2,65,0 +536,3,55,0 +536,4,65,0 +536,5,55,0 +536,6,69,0 +537,1,105,3 +537,2,95,0 +537,3,75,0 +537,4,85,0 +537,5,75,0 +537,6,74,0 +538,1,120,2 +538,2,100,0 +538,3,85,0 +538,4,30,0 +538,5,85,0 +538,6,45,0 +539,1,75,0 +539,2,125,2 +539,3,75,0 +539,4,30,0 +539,5,75,0 +539,6,85,0 +540,1,45,0 +540,2,53,0 +540,3,70,1 +540,4,40,0 +540,5,60,0 +540,6,42,0 +541,1,55,0 +541,2,63,0 +541,3,90,2 +541,4,50,0 +541,5,80,0 +541,6,42,0 +542,1,75,0 +542,2,103,3 +542,3,80,0 +542,4,70,0 +542,5,80,0 +542,6,92,0 +543,1,30,0 +543,2,45,0 +543,3,59,1 +543,4,30,0 +543,5,39,0 +543,6,57,0 +544,1,40,0 +544,2,55,0 +544,3,99,2 +544,4,40,0 +544,5,79,0 +544,6,47,0 +545,1,60,0 +545,2,100,0 +545,3,89,0 +545,4,55,0 +545,5,69,0 +545,6,112,3 +546,1,40,0 +546,2,27,0 +546,3,60,0 +546,4,37,0 +546,5,50,0 +546,6,66,1 +547,1,60,0 +547,2,67,0 +547,3,85,0 +547,4,77,0 +547,5,75,0 +547,6,116,2 +548,1,45,0 +548,2,35,0 +548,3,50,0 +548,4,70,1 +548,5,50,0 +548,6,30,0 +549,1,70,0 +549,2,60,0 +549,3,75,0 +549,4,110,2 +549,5,75,0 +549,6,90,0 +550,1,70,0 +550,2,92,0 +550,3,65,0 +550,4,80,0 +550,5,55,0 +550,6,98,2 +551,1,50,0 +551,2,72,1 +551,3,35,0 +551,4,35,0 +551,5,35,0 +551,6,65,0 +552,1,60,0 +552,2,82,2 +552,3,45,0 +552,4,45,0 +552,5,45,0 +552,6,74,0 +553,1,95,0 +553,2,117,3 +553,3,80,0 +553,4,65,0 +553,5,70,0 +553,6,92,0 +554,1,70,0 +554,2,90,1 +554,3,45,0 +554,4,15,0 +554,5,45,0 +554,6,50,0 +555,1,105,0 +555,2,140,2 +555,3,55,0 +555,4,30,0 +555,5,55,0 +555,6,95,0 +556,1,75,0 +556,2,86,0 +556,3,67,0 +556,4,106,2 +556,5,67,0 +556,6,60,0 +557,1,50,0 +557,2,65,0 +557,3,85,1 +557,4,35,0 +557,5,35,0 +557,6,55,0 +558,1,70,0 +558,2,105,0 +558,3,125,2 +558,4,65,0 +558,5,75,0 +558,6,45,0 +559,1,50,0 +559,2,75,1 +559,3,70,0 +559,4,35,0 +559,5,70,0 +559,6,48,0 +560,1,65,0 +560,2,90,0 +560,3,115,1 +560,4,45,0 +560,5,115,1 +560,6,58,0 +561,1,72,0 +561,2,58,0 +561,3,80,0 +561,4,103,2 +561,5,80,0 +561,6,97,0 +562,1,38,0 +562,2,30,0 +562,3,85,1 +562,4,55,0 +562,5,65,0 +562,6,30,0 +563,1,58,0 +563,2,50,0 +563,3,145,2 +563,4,95,0 +563,5,105,0 +563,6,30,0 +564,1,54,0 +564,2,78,0 +564,3,103,1 +564,4,53,0 +564,5,45,0 +564,6,22,0 +565,1,74,0 +565,2,108,0 +565,3,133,2 +565,4,83,0 +565,5,65,0 +565,6,32,0 +566,1,55,0 +566,2,112,1 +566,3,45,0 +566,4,74,0 +566,5,45,0 +566,6,70,0 +567,1,75,0 +567,2,140,2 +567,3,65,0 +567,4,112,0 +567,5,65,0 +567,6,110,0 +568,1,50,0 +568,2,50,0 +568,3,62,0 +568,4,40,0 +568,5,62,0 +568,6,65,1 +569,1,80,0 +569,2,95,2 +569,3,82,0 +569,4,60,0 +569,5,82,0 +569,6,75,0 +570,1,40,0 +570,2,65,0 +570,3,40,0 +570,4,80,1 +570,5,40,0 +570,6,65,0 +571,1,60,0 +571,2,105,0 +571,3,60,0 +571,4,120,2 +571,5,60,0 +571,6,105,0 +572,1,55,0 +572,2,50,0 +572,3,40,0 +572,4,40,0 +572,5,40,0 +572,6,75,1 +573,1,75,0 +573,2,95,0 +573,3,60,0 +573,4,65,0 +573,5,60,0 +573,6,115,2 +574,1,45,0 +574,2,30,0 +574,3,50,0 +574,4,55,0 +574,5,65,1 +574,6,45,0 +575,1,60,0 +575,2,45,0 +575,3,70,0 +575,4,75,0 +575,5,85,2 +575,6,55,0 +576,1,70,0 +576,2,55,0 +576,3,95,0 +576,4,95,0 +576,5,110,3 +576,6,65,0 +577,1,45,0 +577,2,30,0 +577,3,40,0 +577,4,105,1 +577,5,50,0 +577,6,20,0 +578,1,65,0 +578,2,40,0 +578,3,50,0 +578,4,125,2 +578,5,60,0 +578,6,30,0 +579,1,110,0 +579,2,65,0 +579,3,75,0 +579,4,125,3 +579,5,85,0 +579,6,30,0 +580,1,62,1 +580,2,44,0 +580,3,50,0 +580,4,44,0 +580,5,50,0 +580,6,55,0 +581,1,75,0 +581,2,87,0 +581,3,63,0 +581,4,87,0 +581,5,63,0 +581,6,98,2 +582,1,36,0 +582,2,50,0 +582,3,50,0 +582,4,65,1 +582,5,60,0 +582,6,44,0 +583,1,51,0 +583,2,65,0 +583,3,65,0 +583,4,80,2 +583,5,75,0 +583,6,59,0 +584,1,71,0 +584,2,95,0 +584,3,85,0 +584,4,110,3 +584,5,95,0 +584,6,79,0 +585,1,60,0 +585,2,60,0 +585,3,50,0 +585,4,40,0 +585,5,50,0 +585,6,75,1 +586,1,80,0 +586,2,100,2 +586,3,70,0 +586,4,60,0 +586,5,70,0 +586,6,95,0 +587,1,55,0 +587,2,75,0 +587,3,60,0 +587,4,75,0 +587,5,60,0 +587,6,103,2 +588,1,50,0 +588,2,75,1 +588,3,45,0 +588,4,40,0 +588,5,45,0 +588,6,60,0 +589,1,70,0 +589,2,135,2 +589,3,105,0 +589,4,60,0 +589,5,105,0 +589,6,20,0 +590,1,69,1 +590,2,55,0 +590,3,45,0 +590,4,55,0 +590,5,55,0 +590,6,15,0 +591,1,114,2 +591,2,85,0 +591,3,70,0 +591,4,85,0 +591,5,80,0 +591,6,30,0 +592,1,55,0 +592,2,40,0 +592,3,50,0 +592,4,65,0 +592,5,85,1 +592,6,40,0 +593,1,100,0 +593,2,60,0 +593,3,70,0 +593,4,85,0 +593,5,105,2 +593,6,60,0 +594,1,165,2 +594,2,75,0 +594,3,80,0 +594,4,40,0 +594,5,45,0 +594,6,65,0 +595,1,50,0 +595,2,47,0 +595,3,50,0 +595,4,57,0 +595,5,50,0 +595,6,65,1 +596,1,70,0 +596,2,77,0 +596,3,60,0 +596,4,97,0 +596,5,60,0 +596,6,108,2 +597,1,44,0 +597,2,50,0 +597,3,91,1 +597,4,24,0 +597,5,86,0 +597,6,10,0 +598,1,74,0 +598,2,94,0 +598,3,131,2 +598,4,54,0 +598,5,116,0 +598,6,20,0 +599,1,40,0 +599,2,55,0 +599,3,70,1 +599,4,45,0 +599,5,60,0 +599,6,30,0 +600,1,60,0 +600,2,80,0 +600,3,95,2 +600,4,70,0 +600,5,85,0 +600,6,50,0 +601,1,60,0 +601,2,100,0 +601,3,115,3 +601,4,70,0 +601,5,85,0 +601,6,90,0 +602,1,35,0 +602,2,55,0 +602,3,40,0 +602,4,45,0 +602,5,40,0 +602,6,60,1 +603,1,65,0 +603,2,85,2 +603,3,70,0 +603,4,75,0 +603,5,70,0 +603,6,40,0 +604,1,85,0 +604,2,115,3 +604,3,80,0 +604,4,105,0 +604,5,80,0 +604,6,50,0 +605,1,55,0 +605,2,55,0 +605,3,55,0 +605,4,85,1 +605,5,55,0 +605,6,30,0 +606,1,75,0 +606,2,75,0 +606,3,75,0 +606,4,125,2 +606,5,95,0 +606,6,40,0 +607,1,50,0 +607,2,30,0 +607,3,55,0 +607,4,65,1 +607,5,55,0 +607,6,20,0 +608,1,60,0 +608,2,40,0 +608,3,60,0 +608,4,95,2 +608,5,60,0 +608,6,55,0 +609,1,60,0 +609,2,55,0 +609,3,90,0 +609,4,145,3 +609,5,90,0 +609,6,80,0 +610,1,46,0 +610,2,87,1 +610,3,60,0 +610,4,30,0 +610,5,40,0 +610,6,57,0 +611,1,66,0 +611,2,117,2 +611,3,70,0 +611,4,40,0 +611,5,50,0 +611,6,67,0 +612,1,76,0 +612,2,147,3 +612,3,90,0 +612,4,60,0 +612,5,70,0 +612,6,97,0 +613,1,55,0 +613,2,70,1 +613,3,40,0 +613,4,60,0 +613,5,40,0 +613,6,40,0 +614,1,95,0 +614,2,130,2 +614,3,80,0 +614,4,70,0 +614,5,80,0 +614,6,50,0 +615,1,80,0 +615,2,50,0 +615,3,50,0 +615,4,95,0 +615,5,135,2 +615,6,105,0 +616,1,50,0 +616,2,40,0 +616,3,85,1 +616,4,40,0 +616,5,65,0 +616,6,25,0 +617,1,80,0 +617,2,70,0 +617,3,40,0 +617,4,100,0 +617,5,60,0 +617,6,145,2 +618,1,109,2 +618,2,66,0 +618,3,84,0 +618,4,81,0 +618,5,99,0 +618,6,32,0 +619,1,45,0 +619,2,85,1 +619,3,50,0 +619,4,55,0 +619,5,50,0 +619,6,65,0 +620,1,65,0 +620,2,125,2 +620,3,60,0 +620,4,95,0 +620,5,60,0 +620,6,105,0 +621,1,77,0 +621,2,120,2 +621,3,90,0 +621,4,60,0 +621,5,90,0 +621,6,48,0 +622,1,59,0 +622,2,74,1 +622,3,50,0 +622,4,35,0 +622,5,50,0 +622,6,35,0 +623,1,89,0 +623,2,124,2 +623,3,80,0 +623,4,55,0 +623,5,80,0 +623,6,55,0 +624,1,45,0 +624,2,85,1 +624,3,70,0 +624,4,40,0 +624,5,40,0 +624,6,60,0 +625,1,65,0 +625,2,125,2 +625,3,100,0 +625,4,60,0 +625,5,70,0 +625,6,70,0 +626,1,95,0 +626,2,110,2 +626,3,95,0 +626,4,40,0 +626,5,95,0 +626,6,55,0 +627,1,70,0 +627,2,83,1 +627,3,50,0 +627,4,37,0 +627,5,50,0 +627,6,60,0 +628,1,100,0 +628,2,123,2 +628,3,75,0 +628,4,57,0 +628,5,75,0 +628,6,80,0 +629,1,70,0 +629,2,55,0 +629,3,75,1 +629,4,45,0 +629,5,65,0 +629,6,60,0 +630,1,110,0 +630,2,65,0 +630,3,105,0 +630,4,55,2 +630,5,95,0 +630,6,80,0 +631,1,85,0 +631,2,97,0 +631,3,66,0 +631,4,105,2 +631,5,66,0 +631,6,65,0 +632,1,58,0 +632,2,109,0 +632,3,112,2 +632,4,48,0 +632,5,48,0 +632,6,109,0 +633,1,52,0 +633,2,65,1 +633,3,50,0 +633,4,45,0 +633,5,50,0 +633,6,38,0 +634,1,72,0 +634,2,85,2 +634,3,70,0 +634,4,65,0 +634,5,70,0 +634,6,58,0 +635,1,92,0 +635,2,105,0 +635,3,90,0 +635,4,125,3 +635,5,90,0 +635,6,98,0 +636,1,55,0 +636,2,85,1 +636,3,55,0 +636,4,50,0 +636,5,55,0 +636,6,60,0 +637,1,85,0 +637,2,60,0 +637,3,65,0 +637,4,135,3 +637,5,105,0 +637,6,100,0 +638,1,91,0 +638,2,90,0 +638,3,129,3 +638,4,90,0 +638,5,72,0 +638,6,108,0 +639,1,91,0 +639,2,129,3 +639,3,90,0 +639,4,72,0 +639,5,90,0 +639,6,108,0 +640,1,91,0 +640,2,90,0 +640,3,72,0 +640,4,90,0 +640,5,129,3 +640,6,108,0 +641,1,79,0 +641,2,115,3 +641,3,70,0 +641,4,125,0 +641,5,80,0 +641,6,111,0 +642,1,79,0 +642,2,115,3 +642,3,70,0 +642,4,125,0 +642,5,80,0 +642,6,111,0 +643,1,100,0 +643,2,120,0 +643,3,100,0 +643,4,150,3 +643,5,120,0 +643,6,90,0 +644,1,100,0 +644,2,150,3 +644,3,120,0 +644,4,120,0 +644,5,100,0 +644,6,90,0 +645,1,89,0 +645,2,125,0 +645,3,90,0 +645,4,115,3 +645,5,80,0 +645,6,101,0 +646,1,125,1 +646,2,130,1 +646,3,90,0 +646,4,130,1 +646,5,90,0 +646,6,95,0 +647,1,91,0 +647,2,72,0 +647,3,90,0 +647,4,129,3 +647,5,90,0 +647,6,108,0 +648,1,100,0 +648,2,77,0 +648,3,77,0 +648,4,128,1 +648,5,128,1 +648,6,90,1 +649,1,71,0 +649,2,120,1 +649,3,95,0 +649,4,120,1 +649,5,95,0 +649,6,99,1 +650,1,56,0 +650,2,61,0 +650,3,65,1 +650,4,48,0 +650,5,45,0 +650,6,38,0 +651,1,61,0 +651,2,78,0 +651,3,95,2 +651,4,56,0 +651,5,58,0 +651,6,57,0 +652,1,88,0 +652,2,107,0 +652,3,122,3 +652,4,74,0 +652,5,75,0 +652,6,64,0 +653,1,40,0 +653,2,45,0 +653,3,40,0 +653,4,62,1 +653,5,60,0 +653,6,60,0 +654,1,59,0 +654,2,59,0 +654,3,58,0 +654,4,90,2 +654,5,70,0 +654,6,73,0 +655,1,75,0 +655,2,69,0 +655,3,72,0 +655,4,114,3 +655,5,100,0 +655,6,104,0 +656,1,41,0 +656,2,56,0 +656,3,40,0 +656,4,62,0 +656,5,44,0 +656,6,71,1 +657,1,54,0 +657,2,63,0 +657,3,52,0 +657,4,83,0 +657,5,56,0 +657,6,97,2 +658,1,72,0 +658,2,95,0 +658,3,67,0 +658,4,103,0 +658,5,71,0 +658,6,122,3 +659,1,38,0 +659,2,36,0 +659,3,38,0 +659,4,32,0 +659,5,36,0 +659,6,57,1 +660,1,85,2 +660,2,56,0 +660,3,77,0 +660,4,50,0 +660,5,77,0 +660,6,78,0 +661,1,45,0 +661,2,50,0 +661,3,43,0 +661,4,40,0 +661,5,38,0 +661,6,62,1 +662,1,62,0 +662,2,73,0 +662,3,55,0 +662,4,56,0 +662,5,52,0 +662,6,84,2 +663,1,78,0 +663,2,81,0 +663,3,71,0 +663,4,74,0 +663,5,69,0 +663,6,126,3 +664,1,38,0 +664,2,35,0 +664,3,40,1 +664,4,27,0 +664,5,25,0 +664,6,35,0 +665,1,45,0 +665,2,22,0 +665,3,60,2 +665,4,27,0 +665,5,30,0 +665,6,29,0 +666,1,80,1 +666,2,52,0 +666,3,50,0 +666,4,90,1 +666,5,50,0 +666,6,89,1 +667,1,62,0 +667,2,50,0 +667,3,58,0 +667,4,73,1 +667,5,54,0 +667,6,72,0 +668,1,86,0 +668,2,68,0 +668,3,72,0 +668,4,109,2 +668,5,66,0 +668,6,106,0 +669,1,44,0 +669,2,38,0 +669,3,39,0 +669,4,61,0 +669,5,79,1 +669,6,42,0 +670,1,54,0 +670,2,45,0 +670,3,47,0 +670,4,75,0 +670,5,98,2 +670,6,52,0 +671,1,78,0 +671,2,65,0 +671,3,68,0 +671,4,112,0 +671,5,154,3 +671,6,75,0 +672,1,66,1 +672,2,65,0 +672,3,48,0 +672,4,62,0 +672,5,57,0 +672,6,52,0 +673,1,123,2 +673,2,100,0 +673,3,62,0 +673,4,97,0 +673,5,81,0 +673,6,68,0 +674,1,67,0 +674,2,82,1 +674,3,62,0 +674,4,46,0 +674,5,48,0 +674,6,43,0 +675,1,95,0 +675,2,124,2 +675,3,78,0 +675,4,69,0 +675,5,71,0 +675,6,58,0 +676,1,75,0 +676,2,80,0 +676,3,60,0 +676,4,65,0 +676,5,90,0 +676,6,102,1 +677,1,62,0 +677,2,48,0 +677,3,54,0 +677,4,63,0 +677,5,60,0 +677,6,68,1 +678,1,74,0 +678,2,48,0 +678,3,76,0 +678,4,83,0 +678,5,81,0 +678,6,104,2 +679,1,45,0 +679,2,80,0 +679,3,100,1 +679,4,35,0 +679,5,37,0 +679,6,28,0 +680,1,59,0 +680,2,110,0 +680,3,150,2 +680,4,45,0 +680,5,49,0 +680,6,35,0 +681,1,60,0 +681,2,50,0 +681,3,150,2 +681,4,50,0 +681,5,150,1 +681,6,60,0 +682,1,78,1 +682,2,52,0 +682,3,60,0 +682,4,63,0 +682,5,65,0 +682,6,23,0 +683,1,101,2 +683,2,72,0 +683,3,72,0 +683,4,99,0 +683,5,89,0 +683,6,29,0 +684,1,62,0 +684,2,48,0 +684,3,66,1 +684,4,59,0 +684,5,57,0 +684,6,49,0 +685,1,82,0 +685,2,80,0 +685,3,86,2 +685,4,85,0 +685,5,75,0 +685,6,72,0 +686,1,53,0 +686,2,54,1 +686,3,53,0 +686,4,37,0 +686,5,46,0 +686,6,45,0 +687,1,86,0 +687,2,92,2 +687,3,88,0 +687,4,68,0 +687,5,75,0 +687,6,73,0 +688,1,42,0 +688,2,52,1 +688,3,67,0 +688,4,39,0 +688,5,56,0 +688,6,50,0 +689,1,72,0 +689,2,105,2 +689,3,115,0 +689,4,54,0 +689,5,86,0 +689,6,68,0 +690,1,50,0 +690,2,60,0 +690,3,60,0 +690,4,60,0 +690,5,60,1 +690,6,30,0 +691,1,65,0 +691,2,75,0 +691,3,90,0 +691,4,97,0 +691,5,123,2 +691,6,44,0 +692,1,50,0 +692,2,53,0 +692,3,62,0 +692,4,58,1 +692,5,63,0 +692,6,44,0 +693,1,71,0 +693,2,73,0 +693,3,88,0 +693,4,120,2 +693,5,89,0 +693,6,59,0 +694,1,44,0 +694,2,38,0 +694,3,33,0 +694,4,61,0 +694,5,43,0 +694,6,70,1 +695,1,62,0 +695,2,55,0 +695,3,52,0 +695,4,109,1 +695,5,94,0 +695,6,109,1 +696,1,58,0 +696,2,89,1 +696,3,77,0 +696,4,45,0 +696,5,45,0 +696,6,48,0 +697,1,82,0 +697,2,121,2 +697,3,119,0 +697,4,69,0 +697,5,59,0 +697,6,71,0 +698,1,77,1 +698,2,59,0 +698,3,50,0 +698,4,67,0 +698,5,63,0 +698,6,46,0 +699,1,123,2 +699,2,77,0 +699,3,72,0 +699,4,99,0 +699,5,92,0 +699,6,58,0 +700,1,95,0 +700,2,65,0 +700,3,65,0 +700,4,110,0 +700,5,130,2 +700,6,60,0 +701,1,78,0 +701,2,92,2 +701,3,75,0 +701,4,74,0 +701,5,63,0 +701,6,118,0 +702,1,67,0 +702,2,58,0 +702,3,57,0 +702,4,81,0 +702,5,67,0 +702,6,101,2 +703,1,50,0 +703,2,50,0 +703,3,150,1 +703,4,50,0 +703,5,150,1 +703,6,50,0 +704,1,45,0 +704,2,50,0 +704,3,35,0 +704,4,55,0 +704,5,75,1 +704,6,40,0 +705,1,68,0 +705,2,75,0 +705,3,53,0 +705,4,83,0 +705,5,113,2 +705,6,60,0 +706,1,90,0 +706,2,100,0 +706,3,70,0 +706,4,110,0 +706,5,150,3 +706,6,80,0 +707,1,57,0 +707,2,80,0 +707,3,91,1 +707,4,80,0 +707,5,87,0 +707,6,75,0 +708,1,43,0 +708,2,70,1 +708,3,48,0 +708,4,50,0 +708,5,60,0 +708,6,38,0 +709,1,85,0 +709,2,110,2 +709,3,76,0 +709,4,65,0 +709,5,82,0 +709,6,56,0 +710,1,49,0 +710,2,66,0 +710,3,70,1 +710,4,44,0 +710,5,55,0 +710,6,51,0 +711,1,65,0 +711,2,90,0 +711,3,122,2 +711,4,58,0 +711,5,75,0 +711,6,84,0 +712,1,55,0 +712,2,69,0 +712,3,85,1 +712,4,32,0 +712,5,35,0 +712,6,28,0 +713,1,95,0 +713,2,117,0 +713,3,184,2 +713,4,44,0 +713,5,46,0 +713,6,28,0 +714,1,40,0 +714,2,30,0 +714,3,35,0 +714,4,45,0 +714,5,40,0 +714,6,55,1 +715,1,85,0 +715,2,70,0 +715,3,80,0 +715,4,97,0 +715,5,80,0 +715,6,123,2 +716,1,126,3 +716,2,131,0 +716,3,95,0 +716,4,131,0 +716,5,98,0 +716,6,99,0 +717,1,126,3 +717,2,131,0 +717,3,95,0 +717,4,131,0 +717,5,98,0 +717,6,99,0 +718,1,108,3 +718,2,100,0 +718,3,121,0 +718,4,81,0 +718,5,95,0 +718,6,95,0 +719,1,50,0 +719,2,100,0 +719,3,150,1 +719,4,100,0 +719,5,150,2 +719,6,50,0 +720,1,80,0 +720,2,110,0 +720,3,60,0 +720,4,150,3 +720,5,130,0 +720,6,70,0 +721,1,80,0 +721,2,110,0 +721,3,120,0 +721,4,130,3 +721,5,90,0 +721,6,70,0 +722,1,68,1 +722,2,55,0 +722,3,55,0 +722,4,50,0 +722,5,50,0 +722,6,42,0 +723,1,78,2 +723,2,75,0 +723,3,75,0 +723,4,70,0 +723,5,70,0 +723,6,52,0 +724,1,78,0 +724,2,107,3 +724,3,75,0 +724,4,100,0 +724,5,100,0 +724,6,70,0 +725,1,45,0 +725,2,65,0 +725,3,40,0 +725,4,60,0 +725,5,40,0 +725,6,70,1 +726,1,65,0 +726,2,85,0 +726,3,50,0 +726,4,80,0 +726,5,50,0 +726,6,90,2 +727,1,95,0 +727,2,115,3 +727,3,90,0 +727,4,80,0 +727,5,90,0 +727,6,60,0 +728,1,50,0 +728,2,54,0 +728,3,54,0 +728,4,66,1 +728,5,56,0 +728,6,40,0 +729,1,60,0 +729,2,69,0 +729,3,69,0 +729,4,91,2 +729,5,81,0 +729,6,50,0 +730,1,80,0 +730,2,74,0 +730,3,74,0 +730,4,126,3 +730,5,116,0 +730,6,60,0 +731,1,35,0 +731,2,75,1 +731,3,30,0 +731,4,30,0 +731,5,30,0 +731,6,65,0 +732,1,55,0 +732,2,85,2 +732,3,50,0 +732,4,40,0 +732,5,50,0 +732,6,75,0 +733,1,80,0 +733,2,120,3 +733,3,75,0 +733,4,75,0 +733,5,75,0 +733,6,60,0 +734,1,48,0 +734,2,70,1 +734,3,30,0 +734,4,30,0 +734,5,30,0 +734,6,45,0 +735,1,88,0 +735,2,110,2 +735,3,60,0 +735,4,55,0 +735,5,60,0 +735,6,45,0 +736,1,47,0 +736,2,62,1 +736,3,45,0 +736,4,55,0 +736,5,45,0 +736,6,46,0 +737,1,57,0 +737,2,82,0 +737,3,95,2 +737,4,55,0 +737,5,75,0 +737,6,36,0 +738,1,77,0 +738,2,70,0 +738,3,90,0 +738,4,145,3 +738,5,75,0 +738,6,43,0 +739,1,47,0 +739,2,82,1 +739,3,57,0 +739,4,42,0 +739,5,47,0 +739,6,63,0 +740,1,97,0 +740,2,132,2 +740,3,77,0 +740,4,62,0 +740,5,67,0 +740,6,43,0 +741,1,75,0 +741,2,70,0 +741,3,70,0 +741,4,98,2 +741,5,70,0 +741,6,93,0 +742,1,40,0 +742,2,45,0 +742,3,40,0 +742,4,55,0 +742,5,40,0 +742,6,84,1 +743,1,60,0 +743,2,55,0 +743,3,60,0 +743,4,95,0 +743,5,70,0 +743,6,124,2 +744,1,45,0 +744,2,65,1 +744,3,40,0 +744,4,30,0 +744,5,40,0 +744,6,60,0 +745,1,75,0 +745,2,115,2 +745,3,65,0 +745,4,55,0 +745,5,65,0 +745,6,112,0 +746,1,45,1 +746,2,20,0 +746,3,20,0 +746,4,25,0 +746,5,25,0 +746,6,40,0 +747,1,50,0 +747,2,53,0 +747,3,62,1 +747,4,43,0 +747,5,52,0 +747,6,45,0 +748,1,50,0 +748,2,63,0 +748,3,152,2 +748,4,53,0 +748,5,142,0 +748,6,35,0 +749,1,70,0 +749,2,100,1 +749,3,70,0 +749,4,45,0 +749,5,55,0 +749,6,45,0 +750,1,100,0 +750,2,125,2 +750,3,100,0 +750,4,55,0 +750,5,85,0 +750,6,35,0 +751,1,38,0 +751,2,40,0 +751,3,52,0 +751,4,40,0 +751,5,72,1 +751,6,27,0 +752,1,68,0 +752,2,70,0 +752,3,92,0 +752,4,50,0 +752,5,132,2 +752,6,42,0 +753,1,40,0 +753,2,55,1 +753,3,35,0 +753,4,50,0 +753,5,35,0 +753,6,35,0 +754,1,70,0 +754,2,105,2 +754,3,90,0 +754,4,80,0 +754,5,90,0 +754,6,45,0 +755,1,40,0 +755,2,35,0 +755,3,55,0 +755,4,65,0 +755,5,75,1 +755,6,15,0 +756,1,60,0 +756,2,45,0 +756,3,80,0 +756,4,90,0 +756,5,100,2 +756,6,30,0 +757,1,48,0 +757,2,44,0 +757,3,40,0 +757,4,71,0 +757,5,40,0 +757,6,77,1 +758,1,68,0 +758,2,64,0 +758,3,60,0 +758,4,111,0 +758,5,60,0 +758,6,117,2 +759,1,70,0 +759,2,75,1 +759,3,50,0 +759,4,45,0 +759,5,50,0 +759,6,50,0 +760,1,120,0 +760,2,125,2 +760,3,80,0 +760,4,55,0 +760,5,60,0 +760,6,60,0 +761,1,42,1 +761,2,30,0 +761,3,38,0 +761,4,30,0 +761,5,38,0 +761,6,32,0 +762,1,52,0 +762,2,40,0 +762,3,48,0 +762,4,40,0 +762,5,48,0 +762,6,62,2 +763,1,72,0 +763,2,120,3 +763,3,98,0 +763,4,50,0 +763,5,98,0 +763,6,72,0 +764,1,51,0 +764,2,52,0 +764,3,90,0 +764,4,82,0 +764,5,110,2 +764,6,100,0 +765,1,90,0 +765,2,60,0 +765,3,80,0 +765,4,90,0 +765,5,110,2 +765,6,60,0 +766,1,100,0 +766,2,120,2 +766,3,90,0 +766,4,40,0 +766,5,60,0 +766,6,80,0 +767,1,25,0 +767,2,35,0 +767,3,40,0 +767,4,20,0 +767,5,30,0 +767,6,80,1 +768,1,75,0 +768,2,125,0 +768,3,140,2 +768,4,60,0 +768,5,90,0 +768,6,40,0 +769,1,55,0 +769,2,55,0 +769,3,80,1 +769,4,70,0 +769,5,45,0 +769,6,15,0 +770,1,85,0 +770,2,75,0 +770,3,110,2 +770,4,100,0 +770,5,75,0 +770,6,35,0 +771,1,55,0 +771,2,60,0 +771,3,130,0 +771,4,30,0 +771,5,130,2 +771,6,5,0 +772,1,95,2 +772,2,95,0 +772,3,95,0 +772,4,95,0 +772,5,95,0 +772,6,59,0 +773,1,95,3 +773,2,95,0 +773,3,95,0 +773,4,95,0 +773,5,95,0 +773,6,95,0 +774,1,60,0 +774,2,60,0 +774,3,100,1 +774,4,60,0 +774,5,100,1 +774,6,60,0 +775,1,65,0 +775,2,115,2 +775,3,65,0 +775,4,75,0 +775,5,95,0 +775,6,65,0 +776,1,60,0 +776,2,78,0 +776,3,135,2 +776,4,91,0 +776,5,85,0 +776,6,36,0 +777,1,65,0 +777,2,98,2 +777,3,63,0 +777,4,40,0 +777,5,73,0 +777,6,96,0 +778,1,55,0 +778,2,90,0 +778,3,80,0 +778,4,50,0 +778,5,105,2 +778,6,96,0 +779,1,68,0 +779,2,105,2 +779,3,70,0 +779,4,70,0 +779,5,70,0 +779,6,92,0 +780,1,78,0 +780,2,60,0 +780,3,85,0 +780,4,135,2 +780,5,91,0 +780,6,36,0 +781,1,70,0 +781,2,131,2 +781,3,100,0 +781,4,86,0 +781,5,90,0 +781,6,40,0 +782,1,45,0 +782,2,55,0 +782,3,65,1 +782,4,45,0 +782,5,45,0 +782,6,45,0 +783,1,55,0 +783,2,75,0 +783,3,90,2 +783,4,65,0 +783,5,70,0 +783,6,65,0 +784,1,75,0 +784,2,110,0 +784,3,125,3 +784,4,100,0 +784,5,105,0 +784,6,85,0 +785,1,70,0 +785,2,115,0 +785,3,85,0 +785,4,95,0 +785,5,75,0 +785,6,130,3 +786,1,70,0 +786,2,85,0 +786,3,75,0 +786,4,130,3 +786,5,115,0 +786,6,95,0 +787,1,70,0 +787,2,130,3 +787,3,115,0 +787,4,85,0 +787,5,95,0 +787,6,75,0 +788,1,70,0 +788,2,75,0 +788,3,115,0 +788,4,95,0 +788,5,130,3 +788,6,85,0 +789,1,43,1 +789,2,29,0 +789,3,31,0 +789,4,29,0 +789,5,31,0 +789,6,37,0 +790,1,43,0 +790,2,29,0 +790,3,131,1 +790,4,29,0 +790,5,131,1 +790,6,37,0 +791,1,137,0 +791,2,137,3 +791,3,107,0 +791,4,113,0 +791,5,89,0 +791,6,97,0 +792,1,137,0 +792,2,113,0 +792,3,89,0 +792,4,137,3 +792,5,107,0 +792,6,97,0 +793,1,109,0 +793,2,53,0 +793,3,47,0 +793,4,127,0 +793,5,131,3 +793,6,103,0 +794,1,107,0 +794,2,139,1 +794,3,139,2 +794,4,53,0 +794,5,53,0 +794,6,79,0 +795,1,71,0 +795,2,137,0 +795,3,37,0 +795,4,137,0 +795,5,37,0 +795,6,151,3 +796,1,83,0 +796,2,89,0 +796,3,71,0 +796,4,173,3 +796,5,71,0 +796,6,83,0 +797,1,97,0 +797,2,101,1 +797,3,103,1 +797,4,107,1 +797,5,101,0 +797,6,61,0 +798,1,59,0 +798,2,181,3 +798,3,131,0 +798,4,59,0 +798,5,31,0 +798,6,109,0 +799,1,223,3 +799,2,101,0 +799,3,53,0 +799,4,97,0 +799,5,53,0 +799,6,43,0 +800,1,97,0 +800,2,107,1 +800,3,101,0 +800,4,127,2 +800,5,89,0 +800,6,79,0 +801,1,80,0 +801,2,95,0 +801,3,115,0 +801,4,130,3 +801,5,115,0 +801,6,65,0 +802,1,90,0 +802,2,125,2 +802,3,80,0 +802,4,90,0 +802,5,90,0 +802,6,125,1 +803,1,67,0 +803,2,73,0 +803,3,67,0 +803,4,73,0 +803,5,67,0 +803,6,73,1 +804,1,73,0 +804,2,73,0 +804,3,73,0 +804,4,127,3 +804,5,73,0 +804,6,121,0 +805,1,61,0 +805,2,131,0 +805,3,211,3 +805,4,53,0 +805,5,101,0 +805,6,13,0 +806,1,53,0 +806,2,127,0 +806,3,53,0 +806,4,151,3 +806,5,79,0 +806,6,107,0 +807,1,88,0 +807,2,112,0 +807,3,75,0 +807,4,102,0 +807,5,80,0 +807,6,143,3 +810,1,50,0 +810,2,65,1 +810,3,50,0 +810,4,40,0 +810,5,40,0 +810,6,65,0 +811,1,70,0 +811,2,85,2 +811,3,70,0 +811,4,55,0 +811,5,60,0 +811,6,80,0 +812,1,100,0 +812,2,125,3 +812,3,90,0 +812,4,60,0 +812,5,70,0 +812,6,85,0 +813,1,50,0 +813,2,71,0 +813,3,40,0 +813,4,40,0 +813,5,40,0 +813,6,69,1 +814,1,65,0 +814,2,86,0 +814,3,60,0 +814,4,55,0 +814,5,60,0 +814,6,94,2 +815,1,80,0 +815,2,116,0 +815,3,75,0 +815,4,65,0 +815,5,75,0 +815,6,119,3 +816,1,50,0 +816,2,40,0 +816,3,40,0 +816,4,70,0 +816,5,40,1 +816,6,70,1 +817,1,65,0 +817,2,60,0 +817,3,55,0 +817,4,95,2 +817,5,55,0 +817,6,90,0 +818,1,70,0 +818,2,85,0 +818,3,65,0 +818,4,125,0 +818,5,65,0 +818,6,120,3 +819,1,70,1 +819,2,55,0 +819,3,55,0 +819,4,35,0 +819,5,35,0 +819,6,25,0 +820,1,120,2 +820,2,95,0 +820,3,95,0 +820,4,55,0 +820,5,75,0 +820,6,20,0 +821,1,38,0 +821,2,47,0 +821,3,35,0 +821,4,33,0 +821,5,35,0 +821,6,57,1 +822,1,68,0 +822,2,67,0 +822,3,55,0 +822,4,43,0 +822,5,55,0 +822,6,77,2 +823,1,98,0 +823,2,87,0 +823,3,105,3 +823,4,53,0 +823,5,85,0 +823,6,67,0 +824,1,25,0 +824,2,20,0 +824,3,20,0 +824,4,25,0 +824,5,45,1 +824,6,45,0 +825,1,50,0 +825,2,35,0 +825,3,80,0 +825,4,50,0 +825,5,90,2 +825,6,30,0 +826,1,60,0 +826,2,45,0 +826,3,110,0 +826,4,80,0 +826,5,120,3 +826,6,90,0 +827,1,40,0 +827,2,28,0 +827,3,28,0 +827,4,47,0 +827,5,52,1 +827,6,50,0 +828,1,70,0 +828,2,58,0 +828,3,58,0 +828,4,87,0 +828,5,92,2 +828,6,90,0 +829,1,40,0 +829,2,40,0 +829,3,60,0 +829,4,40,0 +829,5,60,1 +829,6,10,0 +830,1,60,0 +830,2,50,0 +830,3,90,0 +830,4,80,0 +830,5,120,2 +830,6,60,0 +831,1,42,0 +831,2,40,0 +831,3,55,1 +831,4,40,0 +831,5,45,0 +831,6,48,0 +832,1,72,0 +832,2,80,0 +832,3,100,2 +832,4,60,0 +832,5,90,0 +832,6,88,0 +833,1,50,0 +833,2,64,1 +833,3,50,0 +833,4,38,0 +833,5,38,0 +833,6,44,0 +834,1,90,0 +834,2,115,2 +834,3,90,0 +834,4,48,0 +834,5,68,0 +834,6,74,0 +835,1,59,1 +835,2,45,0 +835,3,50,0 +835,4,40,0 +835,5,50,0 +835,6,26,0 +836,1,69,0 +836,2,90,0 +836,3,60,0 +836,4,90,0 +836,5,60,0 +836,6,121,2 +837,1,30,0 +837,2,40,0 +837,3,50,1 +837,4,40,0 +837,5,50,0 +837,6,30,0 +838,1,80,0 +838,2,60,0 +838,3,90,2 +838,4,60,0 +838,5,70,0 +838,6,50,0 +839,1,110,0 +839,2,80,0 +839,3,120,3 +839,4,80,0 +839,5,90,0 +839,6,30,0 +840,1,40,0 +840,2,40,0 +840,3,80,1 +840,4,40,0 +840,5,40,0 +840,6,20,0 +841,1,70,0 +841,2,110,2 +841,3,80,0 +841,4,95,0 +841,5,60,0 +841,6,70,0 +842,1,110,2 +842,2,85,0 +842,3,80,0 +842,4,100,0 +842,5,80,0 +842,6,30,0 +843,1,52,0 +843,2,57,0 +843,3,75,1 +843,4,35,0 +843,5,50,0 +843,6,46,0 +844,1,72,0 +844,2,107,0 +844,3,125,2 +844,4,65,0 +844,5,70,0 +844,6,71,0 +845,1,70,0 +845,2,85,0 +845,3,55,0 +845,4,85,0 +845,5,95,2 +845,6,85,0 +846,1,41,0 +846,2,63,0 +846,3,40,0 +846,4,40,0 +846,5,30,0 +846,6,66,1 +847,1,61,0 +847,2,123,0 +847,3,60,0 +847,4,60,0 +847,5,50,0 +847,6,136,2 +848,1,40,0 +848,2,38,0 +848,3,35,0 +848,4,54,1 +848,5,35,0 +848,6,40,0 +849,1,75,0 +849,2,98,0 +849,3,70,0 +849,4,114,2 +849,5,70,0 +849,6,75,0 +850,1,50,0 +850,2,65,1 +850,3,45,0 +850,4,50,0 +850,5,50,0 +850,6,45,0 +851,1,100,0 +851,2,115,2 +851,3,65,0 +851,4,90,0 +851,5,90,0 +851,6,65,0 +852,1,50,0 +852,2,68,1 +852,3,60,0 +852,4,50,0 +852,5,50,0 +852,6,32,0 +853,1,80,0 +853,2,118,2 +853,3,90,0 +853,4,70,0 +853,5,80,0 +853,6,42,0 +854,1,40,0 +854,2,45,0 +854,3,45,0 +854,4,74,1 +854,5,54,0 +854,6,50,0 +855,1,60,0 +855,2,65,0 +855,3,65,0 +855,4,134,2 +855,5,114,0 +855,6,70,0 +856,1,42,0 +856,2,30,0 +856,3,45,0 +856,4,56,1 +856,5,53,0 +856,6,39,0 +857,1,57,0 +857,2,40,0 +857,3,65,0 +857,4,86,2 +857,5,73,0 +857,6,49,0 +858,1,57,0 +858,2,90,0 +858,3,95,0 +858,4,136,3 +858,5,103,0 +858,6,29,0 +859,1,45,0 +859,2,45,0 +859,3,30,0 +859,4,55,1 +859,5,40,0 +859,6,50,0 +860,1,65,0 +860,2,60,0 +860,3,45,0 +860,4,75,2 +860,5,55,0 +860,6,70,0 +861,1,95,0 +861,2,120,3 +861,3,65,0 +861,4,95,0 +861,5,75,0 +861,6,60,0 +862,1,93,0 +862,2,90,0 +862,3,101,3 +862,4,60,0 +862,5,81,0 +862,6,95,0 +863,1,70,0 +863,2,110,2 +863,3,100,0 +863,4,50,0 +863,5,60,0 +863,6,50,0 +864,1,60,0 +864,2,95,0 +864,3,50,0 +864,4,145,2 +864,5,130,0 +864,6,30,0 +865,1,62,0 +865,2,135,2 +865,3,95,0 +865,4,68,0 +865,5,82,0 +865,6,65,0 +866,1,80,0 +866,2,85,0 +866,3,75,0 +866,4,110,3 +866,5,100,0 +866,6,70,0 +867,1,58,0 +867,2,95,0 +867,3,145,2 +867,4,50,0 +867,5,105,0 +867,6,30,0 +868,1,45,0 +868,2,40,0 +868,3,40,0 +868,4,50,0 +868,5,61,1 +868,6,34,0 +869,1,65,0 +869,2,60,0 +869,3,75,0 +869,4,110,0 +869,5,121,2 +869,6,64,0 +870,1,65,0 +870,2,100,2 +870,3,100,0 +870,4,70,0 +870,5,60,1 +870,6,75,0 +871,1,48,0 +871,2,101,2 +871,3,95,0 +871,4,91,0 +871,5,85,0 +871,6,15,0 +872,1,30,0 +872,2,25,0 +872,3,35,0 +872,4,45,1 +872,5,30,0 +872,6,20,0 +873,1,70,0 +873,2,65,0 +873,3,60,0 +873,4,125,2 +873,5,90,0 +873,6,65,0 +874,1,100,0 +874,2,125,0 +874,3,135,2 +874,4,20,0 +874,5,20,0 +874,6,70,0 +875,1,75,0 +875,2,80,0 +875,3,110,2 +875,4,65,0 +875,5,90,0 +875,6,50,0 +876,1,60,0 +876,2,65,0 +876,3,55,0 +876,4,105,2 +876,5,95,0 +876,6,95,0 +877,1,58,0 +877,2,95,0 +877,3,58,0 +877,4,70,0 +877,5,58,0 +877,6,97,2 +878,1,72,0 +878,2,80,1 +878,3,49,0 +878,4,40,0 +878,5,49,0 +878,6,40,0 +879,1,122,0 +879,2,130,2 +879,3,69,0 +879,4,80,0 +879,5,69,0 +879,6,30,0 +880,1,90,0 +880,2,100,2 +880,3,90,0 +880,4,80,0 +880,5,70,0 +880,6,75,0 +881,1,90,0 +881,2,100,2 +881,3,90,0 +881,4,90,0 +881,5,80,0 +881,6,55,0 +882,1,90,0 +882,2,90,0 +882,3,100,2 +882,4,70,0 +882,5,80,0 +882,6,75,0 +883,1,90,0 +883,2,90,0 +883,3,100,2 +883,4,80,0 +883,5,90,0 +883,6,55,0 +884,1,70,0 +884,2,95,0 +884,3,115,0 +884,4,120,2 +884,5,50,0 +884,6,85,0 +885,1,28,0 +885,2,60,0 +885,3,30,0 +885,4,40,0 +885,5,30,0 +885,6,82,1 +886,1,68,0 +886,2,80,0 +886,3,50,0 +886,4,60,0 +886,5,50,0 +886,6,102,2 +887,1,88,0 +887,2,120,0 +887,3,75,0 +887,4,100,0 +887,5,75,0 +887,6,142,3 +888,1,92,0 +888,2,130,0 +888,3,115,0 +888,4,80,0 +888,5,115,0 +888,6,138,3 +889,1,92,0 +889,2,130,0 +889,3,115,0 +889,4,80,0 +889,5,115,0 +889,6,138,3 +890,1,140,3 +890,2,85,0 +890,3,95,0 +890,4,145,0 +890,5,95,0 +890,6,130,0 +891,1,60,0 +891,2,90,1 +891,3,60,0 +891,4,53,0 +891,5,50,0 +891,6,72,0 +892,1,100,0 +892,2,130,3 +892,3,100,0 +892,4,63,0 +892,5,60,0 +892,6,97,0 +893,1,105,0 +893,2,120,3 +893,3,105,0 +893,4,70,0 +893,5,95,0 +893,6,105,0 +10001,1,50,0 +10001,2,180,2 +10001,3,20,0 +10001,4,180,1 +10001,5,20,0 +10001,6,150,0 +10002,1,50,0 +10002,2,70,0 +10002,3,160,2 +10002,4,70,0 +10002,5,160,1 +10002,6,90,0 +10003,1,50,0 +10003,2,95,0 +10003,3,90,0 +10003,4,95,0 +10003,5,90,0 +10003,6,180,3 +10004,1,60,0 +10004,2,79,0 +10004,3,105,2 +10004,4,59,0 +10004,5,85,0 +10004,6,36,0 +10005,1,60,0 +10005,2,69,0 +10005,3,95,1 +10005,4,69,0 +10005,5,95,1 +10005,6,36,0 +10006,1,100,0 +10006,2,103,0 +10006,3,75,0 +10006,4,120,0 +10006,5,75,0 +10006,6,127,3 +10007,1,150,3 +10007,2,120,0 +10007,3,100,0 +10007,4,120,0 +10007,5,100,0 +10007,6,90,0 +10008,1,50,0 +10008,2,65,0 +10008,3,107,0 +10008,4,105,1 +10008,5,107,0 +10008,6,86,1 +10009,1,50,0 +10009,2,65,0 +10009,3,107,0 +10009,4,105,1 +10009,5,107,0 +10009,6,86,1 +10010,1,50,0 +10010,2,65,0 +10010,3,107,0 +10010,4,105,1 +10010,5,107,0 +10010,6,86,1 +10011,1,50,0 +10011,2,65,0 +10011,3,107,0 +10011,4,105,1 +10011,5,107,0 +10011,6,86,1 +10012,1,50,0 +10012,2,65,0 +10012,3,107,0 +10012,4,105,1 +10012,5,107,0 +10012,6,86,1 +10013,1,70,1 +10013,2,70,0 +10013,3,70,0 +10013,4,70,0 +10013,5,70,0 +10013,6,70,0 +10014,1,70,1 +10014,2,70,0 +10014,3,70,0 +10014,4,70,0 +10014,5,70,0 +10014,6,70,0 +10015,1,70,1 +10015,2,70,0 +10015,3,70,0 +10015,4,70,0 +10015,5,70,0 +10015,6,70,0 +10016,1,70,0 +10016,2,92,0 +10016,3,65,0 +10016,4,80,0 +10016,5,55,0 +10016,6,98,2 +10017,1,105,0 +10017,2,30,0 +10017,3,105,0 +10017,4,140,2 +10017,5,105,0 +10017,6,55,0 +10018,1,100,0 +10018,2,128,1 +10018,3,90,1 +10018,4,77,0 +10018,5,77,0 +10018,6,128,1 +10019,1,79,0 +10019,2,100,0 +10019,3,80,0 +10019,4,110,0 +10019,5,90,0 +10019,6,121,3 +10020,1,79,0 +10020,2,105,0 +10020,3,70,0 +10020,4,145,3 +10020,5,80,0 +10020,6,101,0 +10021,1,89,0 +10021,2,145,3 +10021,3,90,0 +10021,4,105,0 +10021,5,80,0 +10021,6,91,0 +10022,1,125,0 +10022,2,170,3 +10022,3,100,0 +10022,4,120,0 +10022,5,90,0 +10022,6,95,0 +10023,1,125,0 +10023,2,120,0 +10023,3,90,0 +10023,4,170,3 +10023,5,100,0 +10023,6,95,0 +10024,1,91,0 +10024,2,72,0 +10024,3,90,0 +10024,4,129,3 +10024,5,90,0 +10024,6,108,0 +10025,1,74,0 +10025,2,48,0 +10025,3,76,0 +10025,4,83,0 +10025,5,81,0 +10025,6,104,2 +10026,1,60,0 +10026,2,150,2 +10026,3,50,0 +10026,4,150,1 +10026,5,50,0 +10026,6,60,0 +10027,1,44,0 +10027,2,66,0 +10027,3,70,1 +10027,4,44,0 +10027,5,55,0 +10027,6,56,0 +10028,1,54,0 +10028,2,66,0 +10028,3,70,1 +10028,4,44,0 +10028,5,55,0 +10028,6,46,0 +10029,1,59,0 +10029,2,66,0 +10029,3,70,1 +10029,4,44,0 +10029,5,55,0 +10029,6,41,0 +10030,1,55,0 +10030,2,85,0 +10030,3,122,2 +10030,4,58,0 +10030,5,75,0 +10030,6,99,0 +10031,1,75,0 +10031,2,95,0 +10031,3,122,2 +10031,4,58,0 +10031,5,75,0 +10031,6,69,0 +10032,1,85,0 +10032,2,100,0 +10032,3,122,2 +10032,4,58,0 +10032,5,75,0 +10032,6,54,0 +10033,1,80,0 +10033,2,100,0 +10033,3,123,0 +10033,4,122,2 +10033,5,120,1 +10033,6,80,0 +10034,1,78,0 +10034,2,130,0 +10034,3,111,0 +10034,4,130,3 +10034,5,85,0 +10034,6,100,0 +10035,1,78,0 +10035,2,104,0 +10035,3,78,0 +10035,4,159,3 +10035,5,115,0 +10035,6,100,0 +10036,1,79,0 +10036,2,103,0 +10036,3,120,0 +10036,4,135,0 +10036,5,115,3 +10036,6,78,0 +10037,1,55,0 +10037,2,50,0 +10037,3,65,0 +10037,4,175,3 +10037,5,105,0 +10037,6,150,0 +10038,1,60,0 +10038,2,65,0 +10038,3,80,0 +10038,4,170,3 +10038,5,95,0 +10038,6,130,0 +10039,1,105,2 +10039,2,125,0 +10039,3,100,0 +10039,4,60,0 +10039,5,100,0 +10039,6,100,0 +10040,1,65,0 +10040,2,155,2 +10040,3,120,0 +10040,4,65,0 +10040,5,90,0 +10040,6,105,0 +10041,1,95,0 +10041,2,155,2 +10041,3,109,0 +10041,4,70,0 +10041,5,130,0 +10041,6,81,0 +10042,1,80,0 +10042,2,135,0 +10042,3,85,0 +10042,4,70,0 +10042,5,95,0 +10042,6,150,2 +10043,1,106,0 +10043,2,190,0 +10043,3,100,0 +10043,4,154,3 +10043,5,100,0 +10043,6,130,0 +10044,1,106,0 +10044,2,150,0 +10044,3,70,0 +10044,4,194,3 +10044,5,120,0 +10044,6,140,0 +10045,1,90,0 +10045,2,95,0 +10045,3,105,0 +10045,4,165,3 +10045,5,110,0 +10045,6,45,0 +10046,1,70,0 +10046,2,150,2 +10046,3,140,0 +10046,4,65,0 +10046,5,100,0 +10046,6,75,0 +10047,1,80,0 +10047,2,185,2 +10047,3,115,0 +10047,4,40,0 +10047,5,105,0 +10047,6,75,0 +10048,1,75,0 +10048,2,90,0 +10048,3,90,0 +10048,4,140,2 +10048,5,90,0 +10048,6,115,0 +10049,1,100,0 +10049,2,164,3 +10049,3,150,0 +10049,4,95,0 +10049,5,120,0 +10049,6,71,0 +10050,1,80,0 +10050,2,160,3 +10050,3,80,0 +10050,4,130,0 +10050,5,80,0 +10050,6,100,0 +10051,1,68,0 +10051,2,85,0 +10051,3,65,0 +10051,4,165,3 +10051,5,135,0 +10051,6,100,0 +10052,1,50,0 +10052,2,105,1 +10052,3,125,1 +10052,4,55,0 +10052,5,95,0 +10052,6,50,0 +10053,1,70,0 +10053,2,140,0 +10053,3,230,3 +10053,4,60,0 +10053,5,80,0 +10053,6,50,0 +10054,1,60,0 +10054,2,100,0 +10054,3,85,0 +10054,4,80,0 +10054,5,85,0 +10054,6,100,2 +10055,1,70,0 +10055,2,75,0 +10055,3,80,0 +10055,4,135,0 +10055,5,80,0 +10055,6,135,2 +10056,1,64,0 +10056,2,165,2 +10056,3,75,0 +10056,4,93,0 +10056,5,83,0 +10056,6,75,0 +10057,1,65,0 +10057,2,150,2 +10057,3,60,0 +10057,4,115,0 +10057,5,60,0 +10057,6,115,0 +10058,1,108,0 +10058,2,170,3 +10058,3,115,0 +10058,4,120,0 +10058,5,95,0 +10058,6,92,0 +10059,1,70,0 +10059,2,145,1 +10059,3,88,0 +10059,4,140,1 +10059,5,70,0 +10059,6,112,0 +10060,1,90,0 +10060,2,132,1 +10060,3,105,0 +10060,4,132,1 +10060,5,105,0 +10060,6,30,0 +10061,1,74,0 +10061,2,65,0 +10061,3,67,0 +10061,4,125,0 +10061,5,128,2 +10061,6,92,0 +10062,1,80,0 +10062,2,100,0 +10062,3,120,0 +10062,4,140,0 +10062,5,150,3 +10062,6,110,0 +10063,1,80,0 +10063,2,130,0 +10063,3,100,0 +10063,4,160,3 +10063,5,120,0 +10063,6,110,0 +10064,1,100,0 +10064,2,150,3 +10064,3,110,0 +10064,4,95,0 +10064,5,110,0 +10064,6,70,0 +10065,1,70,0 +10065,2,110,0 +10065,3,75,0 +10065,4,145,0 +10065,5,85,0 +10065,6,145,3 +10066,1,50,0 +10066,2,85,1 +10066,3,125,1 +10066,4,85,0 +10066,5,115,0 +10066,6,20,0 +10067,1,75,0 +10067,2,110,0 +10067,3,110,0 +10067,4,110,0 +10067,5,105,2 +10067,6,80,0 +10068,1,68,0 +10068,2,165,3 +10068,3,95,0 +10068,4,65,0 +10068,5,115,0 +10068,6,110,0 +10069,1,103,2 +10069,2,60,0 +10069,3,126,0 +10069,4,80,0 +10069,5,126,0 +10069,6,50,0 +10070,1,70,0 +10070,2,140,2 +10070,3,70,0 +10070,4,110,0 +10070,5,65,0 +10070,6,105,0 +10071,1,95,0 +10071,2,75,0 +10071,3,180,2 +10071,4,130,0 +10071,5,80,0 +10071,6,30,0 +10072,1,75,0 +10072,2,125,0 +10072,3,230,2 +10072,4,55,0 +10072,5,95,0 +10072,6,30,0 +10073,1,83,0 +10073,2,80,0 +10073,3,80,0 +10073,4,135,0 +10073,5,80,0 +10073,6,121,3 +10074,1,80,2 +10074,2,120,0 +10074,3,80,0 +10074,4,120,0 +10074,5,80,0 +10074,6,100,0 +10075,1,50,0 +10075,2,160,0 +10075,3,110,1 +10075,4,160,0 +10075,5,110,2 +10075,6,110,0 +10076,1,80,0 +10076,2,145,0 +10076,3,150,3 +10076,4,105,0 +10076,5,110,0 +10076,6,110,0 +10077,1,100,0 +10077,2,150,0 +10077,3,90,0 +10077,4,180,3 +10077,5,160,0 +10077,6,90,0 +10078,1,100,0 +10078,2,180,3 +10078,3,160,0 +10078,4,150,0 +10078,5,90,0 +10078,6,90,0 +10079,1,105,0 +10079,2,180,2 +10079,3,100,0 +10079,4,180,1 +10079,5,100,0 +10079,6,115,0 +10080,1,35,0 +10080,2,55,0 +10080,3,40,0 +10080,4,50,0 +10080,5,50,0 +10080,6,90,2 +10081,1,35,0 +10081,2,55,0 +10081,3,40,0 +10081,4,50,0 +10081,5,50,0 +10081,6,90,2 +10082,1,35,0 +10082,2,55,0 +10082,3,40,0 +10082,4,50,0 +10082,5,50,0 +10082,6,90,2 +10083,1,35,0 +10083,2,55,0 +10083,3,40,0 +10083,4,50,0 +10083,5,50,0 +10083,6,90,2 +10084,1,35,0 +10084,2,55,0 +10084,3,40,0 +10084,4,50,0 +10084,5,50,0 +10084,6,90,2 +10085,1,35,0 +10085,2,55,0 +10085,3,40,0 +10085,4,50,0 +10085,5,50,0 +10085,6,90,2 +10086,1,80,0 +10086,2,160,0 +10086,3,60,0 +10086,4,170,3 +10086,5,130,0 +10086,6,80,0 +10087,1,70,0 +10087,2,120,1 +10087,3,100,0 +10087,4,145,1 +10087,5,105,0 +10087,6,20,0 +10088,1,65,0 +10088,2,136,0 +10088,3,94,0 +10088,4,54,0 +10088,5,96,0 +10088,6,135,2 +10089,1,95,0 +10089,2,145,3 +10089,3,130,0 +10089,4,120,0 +10089,5,90,0 +10089,6,120,0 +10090,1,65,0 +10090,2,150,2 +10090,3,40,0 +10090,4,15,0 +10090,5,80,1 +10090,6,145,0 +10091,1,30,0 +10091,2,56,0 +10091,3,35,0 +10091,4,25,0 +10091,5,35,0 +10091,6,72,1 +10092,1,75,0 +10092,2,71,0 +10092,3,70,0 +10092,4,40,0 +10092,5,80,0 +10092,6,77,2 +10093,1,75,0 +10093,2,71,0 +10093,3,70,0 +10093,4,40,0 +10093,5,80,0 +10093,6,77,2 +10094,1,35,0 +10094,2,55,0 +10094,3,40,0 +10094,4,50,0 +10094,5,50,0 +10094,6,90,2 +10095,1,35,0 +10095,2,55,0 +10095,3,40,0 +10095,4,50,0 +10095,5,50,0 +10095,6,90,2 +10096,1,35,0 +10096,2,55,0 +10096,3,40,0 +10096,4,50,0 +10096,5,50,0 +10096,6,90,2 +10097,1,35,0 +10097,2,55,0 +10097,3,40,0 +10097,4,50,0 +10097,5,50,0 +10097,6,90,2 +10098,1,35,0 +10098,2,55,0 +10098,3,40,0 +10098,4,50,0 +10098,5,50,0 +10098,6,90,2 +10099,1,35,0 +10099,2,55,0 +10099,3,40,0 +10099,4,50,0 +10099,5,50,0 +10099,6,90,2 +10100,1,60,0 +10100,2,85,0 +10100,3,50,0 +10100,4,95,0 +10100,5,85,0 +10100,6,110,3 +10101,1,50,0 +10101,2,75,0 +10101,3,90,1 +10101,4,10,0 +10101,5,35,0 +10101,6,40,0 +10102,1,75,0 +10102,2,100,0 +10102,3,120,2 +10102,4,25,0 +10102,5,65,0 +10102,6,65,0 +10103,1,38,0 +10103,2,41,0 +10103,3,40,0 +10103,4,50,0 +10103,5,65,0 +10103,6,65,1 +10104,1,73,0 +10104,2,67,0 +10104,3,75,0 +10104,4,81,0 +10104,5,100,0 +10104,6,109,2 +10105,1,10,0 +10105,2,55,0 +10105,3,30,0 +10105,4,35,0 +10105,5,45,0 +10105,6,90,1 +10106,1,35,0 +10106,2,100,2 +10106,3,60,0 +10106,4,50,0 +10106,5,70,0 +10106,6,110,0 +10107,1,40,0 +10107,2,35,0 +10107,3,35,0 +10107,4,50,0 +10107,5,40,0 +10107,6,90,1 +10108,1,65,0 +10108,2,60,0 +10108,3,60,0 +10108,4,75,0 +10108,5,65,0 +10108,6,115,2 +10109,1,40,0 +10109,2,80,0 +10109,3,100,1 +10109,4,30,0 +10109,5,30,0 +10109,6,20,0 +10110,1,55,0 +10110,2,95,0 +10110,3,115,2 +10110,4,45,0 +10110,5,45,0 +10110,6,35,0 +10111,1,80,0 +10111,2,120,0 +10111,3,130,3 +10111,4,55,0 +10111,5,65,0 +10111,6,45,0 +10112,1,80,1 +10112,2,80,0 +10112,3,50,0 +10112,4,40,0 +10112,5,50,0 +10112,6,25,0 +10113,1,105,1 +10113,2,105,1 +10113,3,75,0 +10113,4,65,0 +10113,5,100,0 +10113,6,50,0 +10114,1,95,0 +10114,2,105,0 +10114,3,85,0 +10114,4,125,2 +10114,5,75,0 +10114,6,45,0 +10115,1,60,0 +10115,2,80,0 +10115,3,110,2 +10115,4,50,0 +10115,5,80,0 +10115,6,45,0 +10116,1,72,0 +10116,2,95,0 +10116,3,67,0 +10116,4,103,0 +10116,5,71,0 +10116,6,122,3 +10117,1,72,0 +10117,2,145,0 +10117,3,67,0 +10117,4,153,0 +10117,5,71,0 +10117,6,132,3 +10118,1,54,3 +10118,2,100,0 +10118,3,71,0 +10118,4,61,0 +10118,5,85,0 +10118,6,115,0 +10119,1,108,3 +10119,2,100,0 +10119,3,121,0 +10119,4,81,0 +10119,5,95,0 +10119,6,95,0 +10120,1,216,3 +10120,2,100,0 +10120,3,121,0 +10120,4,91,0 +10120,5,95,0 +10120,6,85,0 +10121,1,88,0 +10121,2,110,2 +10121,3,60,0 +10121,4,55,0 +10121,5,60,0 +10121,6,45,0 +10122,1,77,0 +10122,2,70,0 +10122,3,90,0 +10122,4,145,3 +10122,5,75,0 +10122,6,43,0 +10123,1,75,0 +10123,2,70,0 +10123,3,70,0 +10123,4,98,2 +10123,5,70,0 +10123,6,93,0 +10124,1,75,0 +10124,2,70,0 +10124,3,70,0 +10124,4,98,2 +10124,5,70,0 +10124,6,93,0 +10125,1,75,0 +10125,2,70,0 +10125,3,70,0 +10125,4,98,2 +10125,5,70,0 +10125,6,93,0 +10126,1,85,0 +10126,2,115,2 +10126,3,75,0 +10126,4,55,0 +10126,5,75,0 +10126,6,82,0 +10127,1,45,1 +10127,2,140,0 +10127,3,130,0 +10127,4,140,0 +10127,5,135,0 +10127,6,30,0 +10128,1,70,0 +10128,2,105,2 +10128,3,90,0 +10128,4,80,0 +10128,5,90,0 +10128,6,45,0 +10129,1,68,0 +10129,2,64,0 +10129,3,60,0 +10129,4,111,0 +10129,5,60,0 +10129,6,117,2 +10130,1,60,0 +10130,2,60,0 +10130,3,100,1 +10130,4,60,0 +10130,5,100,1 +10130,6,60,0 +10131,1,60,0 +10131,2,60,0 +10131,3,100,1 +10131,4,60,0 +10131,5,100,1 +10131,6,60,0 +10132,1,60,0 +10132,2,60,0 +10132,3,100,1 +10132,4,60,0 +10132,5,100,1 +10132,6,60,0 +10133,1,60,0 +10133,2,60,0 +10133,3,100,1 +10133,4,60,0 +10133,5,100,1 +10133,6,60,0 +10134,1,60,0 +10134,2,60,0 +10134,3,100,1 +10134,4,60,0 +10134,5,100,1 +10134,6,60,0 +10135,1,60,0 +10135,2,60,0 +10135,3,100,1 +10135,4,60,0 +10135,5,100,1 +10135,6,60,0 +10136,1,60,0 +10136,2,100,1 +10136,3,60,0 +10136,4,100,1 +10136,5,60,0 +10136,6,120,0 +10137,1,60,0 +10137,2,100,1 +10137,3,60,0 +10137,4,100,1 +10137,5,60,0 +10137,6,120,0 +10138,1,60,0 +10138,2,100,1 +10138,3,60,0 +10138,4,100,1 +10138,5,60,0 +10138,6,120,0 +10139,1,60,0 +10139,2,100,1 +10139,3,60,0 +10139,4,100,1 +10139,5,60,0 +10139,6,120,0 +10140,1,60,0 +10140,2,100,1 +10140,3,60,0 +10140,4,100,1 +10140,5,60,0 +10140,6,120,0 +10141,1,60,0 +10141,2,100,1 +10141,3,60,0 +10141,4,100,1 +10141,5,60,0 +10141,6,120,0 +10142,1,60,0 +10142,2,100,1 +10142,3,60,0 +10142,4,100,1 +10142,5,60,0 +10142,6,120,0 +10143,1,55,0 +10143,2,90,0 +10143,3,80,0 +10143,4,50,0 +10143,5,105,2 +10143,6,96,0 +10144,1,55,0 +10144,2,90,0 +10144,3,80,0 +10144,4,50,0 +10144,5,105,2 +10144,6,96,0 +10145,1,55,0 +10145,2,90,0 +10145,3,80,0 +10145,4,50,0 +10145,5,105,2 +10145,6,96,0 +10146,1,75,0 +10146,2,110,0 +10146,3,125,3 +10146,4,100,0 +10146,5,105,0 +10146,6,85,0 +10147,1,80,0 +10147,2,95,0 +10147,3,115,0 +10147,4,130,3 +10147,5,115,0 +10147,6,65,0 +10148,1,35,0 +10148,2,55,0 +10148,3,40,0 +10148,4,50,0 +10148,5,50,0 +10148,6,90,2 +10149,1,60,0 +10149,2,80,0 +10149,3,110,2 +10149,4,50,0 +10149,5,80,0 +10149,6,45,0 +10150,1,60,0 +10150,2,55,0 +10150,3,60,0 +10150,4,95,0 +10150,5,70,0 +10150,6,124,2 +10151,1,45,0 +10151,2,65,1 +10151,3,40,0 +10151,4,30,0 +10151,5,40,0 +10151,6,60,0 +10152,1,75,0 +10152,2,117,2 +10152,3,65,0 +10152,4,55,0 +10152,5,65,0 +10152,6,110,0 +10153,1,68,0 +10153,2,70,0 +10153,3,92,0 +10153,4,50,0 +10153,5,132,2 +10153,6,42,0 +10154,1,65,0 +10154,2,98,2 +10154,3,63,0 +10154,4,40,0 +10154,5,73,0 +10154,6,96,0 +10155,1,97,0 +10155,2,157,3 +10155,3,127,0 +10155,4,113,0 +10155,5,109,0 +10155,6,77,0 +10156,1,97,0 +10156,2,113,0 +10156,3,109,0 +10156,4,157,3 +10156,5,127,0 +10156,6,77,0 +10157,1,97,0 +10157,2,167,1 +10157,3,97,0 +10157,4,167,1 +10157,5,97,0 +10157,6,129,1 diff --git a/Resources/scripts/data/scraper_go/pkg/bulbapedia/model.go b/Resources/scripts/data/scraper_go/pkg/bulbapedia/model.go new file mode 100644 index 00000000..744c1a06 --- /dev/null +++ b/Resources/scripts/data/scraper_go/pkg/bulbapedia/model.go @@ -0,0 +1,41 @@ +package bulbapedia + +import ( + "bufio" + "os" + + "github.com/rs/zerolog/log" +) + +type Scrapper interface { + init() + read(path string) error + scrape(name string) + write(path string) error +} + +func Scrape(s Scrapper, source, newPokemon, out string) { + s.init() + s.read(source) + + sl := fetchList(newPokemon) + for _, n := range sl { + s.scrape(n) + } + s.write(out) +} + +func fetchList(path string) []string { + file, err := os.Open(path) + if err != nil { + log.Fatal().Err(err).Str("path", path).Msg("Failed to open file @") + } + defer file.Close() + + sl := []string{} + scanner := bufio.NewScanner(file) + for scanner.Scan() { + sl = append(sl, scanner.Text()) + } + return sl +} diff --git a/Resources/scripts/data/scraper_go/pkg/bulbapedia/pokemon.go b/Resources/scripts/data/scraper_go/pkg/bulbapedia/pokemon.go new file mode 100644 index 00000000..64feeb48 --- /dev/null +++ b/Resources/scripts/data/scraper_go/pkg/bulbapedia/pokemon.go @@ -0,0 +1,119 @@ +package bulbapedia + +import ( + "bufio" + "encoding/csv" + "fmt" + "io" + "io/ioutil" + "net/http" + "os" + "sort" + "strconv" + + "github.com/rs/zerolog/log" +) + +type Pokemon struct { + ID int64 `json:"id" bulbapedia:"ndex"` + Species string `json:"species_id" bulbapedia:"ndex"` + Identifier string `json:"identifier" bulbapedia:"name,lower"` + Height string `json:"height" bulbapedia:"height-m,round"` + Weight string `json:"weight" bulbapedia:"weight-kg,round"` + Basexp string `json:"expyield" bulbapedia:"expyield"` + Order string `json:"order"` + Isdefault string `json:"is_default" default:"1"` +} + +type PokemonScrapper struct { + Data map[int64]Pokemon +} + +func (ps *PokemonScrapper) init() { + ps.Data = make(map[int64]Pokemon) +} + +func (ps *PokemonScrapper) read(path string) error { + var err error + file, err := os.Open(path) + if err != nil { + return err + } + defer file.Close() + reader := csv.NewReader(file) + reader.Read() + for { + row, err := reader.Read() + if err != nil { + if err == io.EOF { + break + } + + if err != nil { + return err + } + } + p := Pokemon{ + Identifier: row[1], + Species: row[2], + Height: row[3], + Weight: row[4], + Basexp: row[5], + Order: row[6], + Isdefault: row[7], + } + if row[0] == "" { + p.ID = ErrID + } else { + if p.ID, err = strconv.ParseInt(row[0], 10, 64); err != nil { + return err + } + } + ps.Data[p.ID] = p + log.Info().Str("pokemon_id", p.Identifier).Msg("Added pokemon") + } + return nil +} + +func (ps *PokemonScrapper) scrape(name string) { + fmt.Printf("Scrapping for %s\n", name) + resp, err := http.Get("https://bulbapedia.bulbagarden.net/w/api.php?action=parse&page=" + name + "&prop=wikitext&format=json") + if err != nil { + log.Fatal().Err(err) + } + defer resp.Body.Close() + body, err := ioutil.ReadAll(resp.Body) + pokemon := &Pokemon{} + if err := Unmarshal(body, pokemon); err != nil { + + } + pokemon.Species = strconv.Itoa(int(pokemon.ID)) + if _, ok := ps.Data[pokemon.ID]; ok { + fmt.Printf("Updating old pokemon %s [%d]\n", pokemon.Identifier, pokemon.ID) + } + ps.Data[pokemon.ID] = *pokemon +} + +func (ps *PokemonScrapper) write(path string) error { + file, err := os.Create(path) + if err != nil { + return err + } + defer file.Close() + + w := bufio.NewWriter(file) + fmt.Fprintln(w, "id,identifier,species_id,height,weight,base_experience,order,is_default") + + keys := make([]int, 0, len(ps.Data)) + for k := range ps.Data { + keys = append(keys, int(k)) + } + sort.Ints(keys) + + for _, k := range keys { + pokemon := ps.Data[int64(k)] + fmt.Fprintf(w, "%d,%s,%s,%s,%s,%s,%s,%s\n", pokemon.ID, pokemon.Identifier, pokemon.Species, pokemon.Height, pokemon.Weight, pokemon.Basexp, pokemon.Order, pokemon.Isdefault) + } + + return w.Flush() +} diff --git a/Resources/scripts/data/scraper_go/pkg/bulbapedia/species.go b/Resources/scripts/data/scraper_go/pkg/bulbapedia/species.go new file mode 100644 index 00000000..d6c829cf --- /dev/null +++ b/Resources/scripts/data/scraper_go/pkg/bulbapedia/species.go @@ -0,0 +1,145 @@ +package bulbapedia + +import ( + "bufio" + "fmt" + "io" + "os" + "sort" + "strconv" + + "github.com/rs/zerolog/log" + + "encoding/csv" + + "github.com/anaskhan96/soup" +) + +type Species struct { + ID int64 `json:"id" bulbapedia:"ndex"` + Identifier string `json:"identifier" bulbapedia:"name,lower"` + GenerationID string `json:"generation_id" bulbapedia:"generation"` + EvolvesFromSpeciesID string `json:"evolves_from_species_id"` + EvolutionChainID string `json:"evolution_chain_id"` + ColorID string `json:"color_id" bulbapedia:"color,color"` + ShapeID string `json:"shape_id" bulbapedia:"body"` + HabitatID string `json:"habitat_id"` + GenderRate string `json:"gender_rate"` + CaptureRate string `json:"capture_rate" bulbapedia:"catchrate"` + BaseHappiness string `json:"base_happiness" bulbapedia:"friendship"` + IsBaby string `json:"is_baby"` + HatchCounter string `json:"hatch_counter" bulbapedia:"eggcycles"` + HasGenderDifference string `json:"has_gender_differences"` + GrowthRateID string `json:"growth_rate_id"` + FormsSwitchable string `json:"forms_switchable" default:"0"` + IsLegendary string `json:"is_legendary" default:"0"` + IsMythical string `json:"is_mythical" default:"0"` + Order string `json:"order"` + ConquestOrder string `json:"conquest_order"` +} + +type SpeciesScrapper map[int64]Species + +func (s *SpeciesScrapper) init() { + *s = make(map[int64]Species) +} + +func (s SpeciesScrapper) read(path string) error { + var err error + file, err := os.Open(path) + if err != nil { + return err + } + defer file.Close() + // PokemonSpecies + reader := csv.NewReader(file) + reader.Read() + for { + row, err := reader.Read() + if err != nil { + if err == io.EOF { + break + } + + if err != nil { + return err + } + } + p := Species{ + Identifier: row[1], + GenerationID: row[2], + EvolvesFromSpeciesID: row[3], + EvolutionChainID: row[4], + ColorID: row[5], + ShapeID: row[6], + HabitatID: row[7], + GenderRate: row[8], + CaptureRate: row[9], + BaseHappiness: row[10], + IsBaby: row[11], + HatchCounter: row[12], + HasGenderDifference: row[13], + GrowthRateID: row[14], + FormsSwitchable: row[15], + IsLegendary: row[16], + IsMythical: row[17], + Order: row[18], + ConquestOrder: row[19], + } + if row[0] == "" { + p.ID = ErrID + } else { + if p.ID, err = strconv.ParseInt(row[0], 10, 64); err != nil { + return err + } + } + s[p.ID] = p + log.Info().Str("species_id", p.Identifier).Msg("Added species") + } + return nil +} + +func (s SpeciesScrapper) scrape(name string) { + log.Info().Str("species_name", name).Msg("Scrapping") + resp, err := soup.Get("https://bulbapedia.bulbagarden.net/w/index.php?title=" + name + "&action=edit") + if err != nil { + log.Error().Str("species_name", name).Err(err).Msg("Failed to scrape") + } + species := &Species{} + if err := Unmarshal([]byte(soup.HTMLParse(resp).Find("textarea", "id", "wpTextbox1").Text()), species); err != nil { + log.Error().Err(err).Msg("Failed to unmarshal") + } + if species.ID >= 888 && species.ID <= 892 { + species.IsLegendary = "1" + } + + if _, ok := s[species.ID]; ok { + log.Info().Str("species_identifier", species.Identifier). + Int64("species_id", species.ID).Msg("Updating old species") + } + s[species.ID] = *species +} + +func (s SpeciesScrapper) write(path string) error { + file, err := os.Create(path) + if err != nil { + return err + } + defer file.Close() + + w := bufio.NewWriter(file) + fmt.Fprintln(w, "id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,shape_id,habitat_id,gender_rate,capture_rate,base_happiness,is_baby,hatch_counter,has_gender_differences,growth_rate_id,forms_switchable,is_legendary,is_mythical,order,conquest_order") + + keys := make([]int, 0, len(s)) + for k := range s { + keys = append(keys, int(k)) + } + sort.Ints(keys) + + for _, k := range keys { + pokemon := s[int64(k)] + fmt.Fprintf(w, "%d,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n", pokemon.ID, pokemon.Identifier, pokemon.GenerationID, pokemon.EvolvesFromSpeciesID, pokemon.EvolutionChainID, pokemon.ColorID, pokemon.ShapeID, pokemon.HabitatID, pokemon.GenderRate, pokemon.CaptureRate, pokemon.BaseHappiness, pokemon.IsBaby, pokemon.HatchCounter, pokemon.HasGenderDifference, pokemon.GrowthRateID, pokemon.FormsSwitchable, pokemon.IsLegendary, pokemon.IsMythical, pokemon.Order, pokemon.ConquestOrder) + } + + return w.Flush() +} diff --git a/Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal.go b/Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal.go new file mode 100644 index 00000000..e0c97b21 --- /dev/null +++ b/Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal.go @@ -0,0 +1,135 @@ +package bulbapedia + +import ( + "encoding/json" + "net/http" + "reflect" + "regexp" + "strconv" + "strings" + + "github.com/rs/zerolog/log" +) + +const ( + ErrID int64 = 20000 +) + +var Color = map[string]string{} + +func getColor(color string) string { + resp, err := http.Get("https://pokeapi.co/api/v2/pokemon-color/" + strings.ToLower(color)) + if err != nil { + log.Fatal(). + Str("color", color). + Err(err). + Msg("Failed to fetch color") + } + defer resp.Body.Close() + res := map[string]interface{}{} + err = json.NewDecoder(resp.Body).Decode(&res) + if err != nil { + log.Fatal(). + Err(err). + Msg("Failed to unmarshal JSON color response") + } + return strconv.Itoa(int(res["id"].(float64))) +} + +func init() { + for _, color := range []string{ + "black", + "blue", + "brown", + "gray", + "green", + "pink", + "purple", + "red", + "white", + "yellow", + } { + Color[color] = getColor(color) + } +} + +func Unmarshal(data []byte, v interface{}) error { + var st reflect.Type + var ps reflect.Value + switch rv := v.(type) { + case *Species: + st = reflect.TypeOf(*rv) + ps = reflect.Indirect(reflect.ValueOf(rv)) + break + case *Pokemon: + st = reflect.TypeOf(*rv) + ps = reflect.Indirect(reflect.ValueOf(rv)) + break + } + + for i := 0; i < st.NumField(); i++ { + field := st.Field(i) + + // bulbapedia + if alias, ok := field.Tag.Lookup("bulbapedia"); ok { + // Splits alias into bulbapedia:"[][,[,]]" + // round : converts float to int, rounds it and returns value as string + // lower : lowercases string + // color : converts to color id + aliases := strings.Split(alias, ",") + + switch field.Type.Kind() { + case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: + matches := regexp.MustCompile(`\|` + aliases[0] + `=(\d*)`).FindSubmatch(data) + if len(matches) < 1 || string(matches[1]) == "" { + ps.FieldByName(field.Name).SetInt(ErrID) + break + } + res, err := strconv.ParseInt(string(matches[1]), 10, 64) + if err != nil { + ps.FieldByName(field.Name).SetInt(ErrID) + break + } + ps.FieldByName(field.Name).SetInt(res) + break + default: + matches := regexp.MustCompile(`\|` + aliases[0] + `=([^|\\n}]*)`).FindSubmatch(data) + if len(matches) < 1 { + // default values (only for string structs) + if alias, ok := field.Tag.Lookup("default"); ok { + ps.FieldByName(field.Name).SetString(alias) + } else { + ps.FieldByName(field.Name).SetString("") + } + break + } + res := strings.TrimSpace(string(matches[1])) + for _, al := range aliases { + switch al { + case "lower": + res = strings.ToLower(res) + break + case "color": + res = Color[strings.ToLower(res)] + break + case "round": + round, err := strconv.ParseFloat(string(matches[1]), 64) + if err != nil { + res = "" + } + res = strconv.Itoa(int(round * 10)) + break + } + } + ps.FieldByName(field.Name).SetString(res) + break + } + } else { + // Non bulbapedia tags + if alias, ok := field.Tag.Lookup("default"); ok { + ps.FieldByName(field.Name).SetString(alias) + } + } + } + return nil +} diff --git a/Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal_test.go b/Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal_test.go new file mode 100644 index 00000000..3c2b449c --- /dev/null +++ b/Resources/scripts/data/scraper_go/pkg/bulbapedia/unmarshal_test.go @@ -0,0 +1,26 @@ +package bulbapedia + +import ( + "fmt" + "io/ioutil" + "net/http" + "testing" + + "github.com/anaskhan96/soup" +) + +func TestPokemonUnmarshal(t *testing.T) { + v := &Pokemon{} + resp, _ := http.Get("https://bulbapedia.bulbagarden.net/w/api.php?action=parse&page=Rolycoly_(Pok%C3%A9mon)&prop=wikitext&format=json") + body, _ := ioutil.ReadAll(resp.Body) + Unmarshal(body, v) + fmt.Printf("%+v\n", v) +} + +func TestSpeciesUnmarshal(t *testing.T) { + v := &Species{} + resp, _ := soup.Get("https://bulbapedia.bulbagarden.net/w/index.php?title=Rolycoly_(Pok%C3%A9mon)&action=edit") + body := []byte(soup.HTMLParse(resp).Find("textarea", "id", "wpTextbox1").Text()) + Unmarshal(body, v) + fmt.Printf("%+v\n", v) +} diff --git a/Resources/scripts/data/scraper_node/new_pokemons.js b/Resources/scripts/data/scraper_node/new_pokemons.js new file mode 100644 index 00000000..9021f70d --- /dev/null +++ b/Resources/scripts/data/scraper_node/new_pokemons.js @@ -0,0 +1,89 @@ +module.exports.new_pokemons = [ + "Alcremie", + "Appletun", + "Applin", + "Arctovish", + "Arctozolt", + "Arrokuda", + "Barraskewda", + "Blipbug", + "Boltund", + "Calyrex", + "Carkol", + "Centiskorch", + "Chewtle", + "Cinderace", + "Clobbopus", + "Coalossal", + "Copperajah", + "Corviknight", + "Corvisquire", + "Cramorant", + "Cufant", + "Cursola", + "Dottler", + "Dracovish", + "Dracozolt", + "Dragapult", + "Drakloak", + "Drednaw", + "Dreepy", + "Drizzile", + "Dubwool", + "Duraludon", + "Eiscue", + "Eldegoss", + "Eternatus", + "Falinks", + "Flapple", + "Frosmoth", + "Gossifleur", + "Grapploct", + "Greedent", + "Grimmsnarl", + "Grookey", + "Hatenna", + "Hatterene", + "Hattrem", + "Impidimp", + "Indeedee", + "Inteleon", + "Kubfu", + "Milcery", + "Morgrem", + "Morpeko", + "Mr._Rime", + "Nickit", + "Obstagoon", + "Orbeetle", + "Perrserker", + "Pincurchin", + "Polteageist", + "Raboot", + "Regidrago", + "Regieleki", + "Rillaboom", + "Rolycoly", + "Rookidee", + "Runerigus", + "Sandaconda", + "Scorbunny", + "Silicobra", + "Sinistea", + "Sirfetch%27d", + "Sizzlipede", + "Skwovet", + "Snom", + "Sobble", + "Stonjourner", + "Thievul", + "Thwackey", + "Toxel", + "Toxtricity", + "Urshifu", + "Wooloo", + "Yamper", + "Zacian", + "Zamazenta", + "Zarude" +] \ No newline at end of file diff --git a/Resources/scripts/data/scraper_node/package-lock.json b/Resources/scripts/data/scraper_node/package-lock.json new file mode 100644 index 00000000..9f28ad29 --- /dev/null +++ b/Resources/scripts/data/scraper_node/package-lock.json @@ -0,0 +1,224 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "@sindresorhus/is": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.0.tgz", + "integrity": "sha512-n4J+zu52VdY43kdi/XdI9DzuMr1Mur8zFL5ZRG2opCans9aiFwkPxHYFEb5Xgy7n1Z4K6WfI4FpqUqsh3E8BPQ==" + }, + "@szmarczak/http-timer": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz", + "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==", + "requires": { + "defer-to-connect": "^2.0.0" + } + }, + "@types/cacheable-request": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz", + "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==", + "requires": { + "@types/http-cache-semantics": "*", + "@types/keyv": "*", + "@types/node": "*", + "@types/responselike": "*" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz", + "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==" + }, + "@types/keyv": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz", + "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==", + "requires": { + "@types/node": "*" + } + }, + "@types/node": { + "version": "14.0.27", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.27.tgz", + "integrity": "sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g==" + }, + "@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "requires": { + "@types/node": "*" + } + }, + "cacheable-lookup": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.3.tgz", + "integrity": "sha512-W+JBqF9SWe18A72XFzN/V/CULFzPm7sBXzzR6ekkE+3tLG72wFZrBiBZhrZuDoYexop4PHJVdFAKb/Nj9+tm9w==" + }, + "cacheable-request": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz", + "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^2.0.0" + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + } + }, + "defer-to-connect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz", + "integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "get-stream": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", + "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", + "requires": { + "pump": "^3.0.0" + } + }, + "got": { + "version": "11.5.1", + "resolved": "https://registry.npmjs.org/got/-/got-11.5.1.tgz", + "integrity": "sha512-reQEZcEBMTGnujmQ+Wm97mJs/OK6INtO6HmLI+xt3+9CvnRwWjXutUvb2mqr+Ao4Lu05Rx6+udx9sOQAmExMxA==", + "requires": { + "@sindresorhus/is": "^3.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.1", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.0", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "http2-wrapper": { + "version": "1.0.0-beta.5.2", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz", + "integrity": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==", + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + } + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "keyv": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.1.tgz", + "integrity": "sha512-xz6Jv6oNkbhrFCvCP7HQa8AaII8y8LRpoSm661NOKLr4uHuBwhX4epXrPQgF3+xdJnN4Esm5X0xwY4bOlALOtw==", + "requires": { + "json-buffer": "3.0.1" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "p-cancelable": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz", + "integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + }, + "resolve-alpn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz", + "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==" + }, + "responselike": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", + "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "requires": { + "lowercase-keys": "^2.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } +} diff --git a/Resources/scripts/data/scraper_node/pokemon_stats.csv b/Resources/scripts/data/scraper_node/pokemon_stats.csv new file mode 100644 index 00000000..d3995346 --- /dev/null +++ b/Resources/scripts/data/scraper_node/pokemon_stats.csv @@ -0,0 +1,5785 @@ +pokemon_id,stat_id,base_stat,effort +1,1,45,0 +1,2,49,0 +1,3,49,0 +1,4,65,1 +1,5,65,0 +1,6,45,0 +2,1,60,0 +2,2,62,0 +2,3,63,0 +2,4,80,1 +2,5,80,1 +2,6,60,0 +3,1,80,0 +3,2,82,0 +3,3,83,0 +3,4,100,2 +3,5,100,1 +3,6,80,0 +4,1,39,0 +4,2,52,0 +4,3,43,0 +4,4,60,0 +4,5,50,0 +4,6,65,1 +5,1,58,0 +5,2,64,0 +5,3,58,0 +5,4,80,1 +5,5,65,0 +5,6,80,1 +6,1,78,0 +6,2,84,0 +6,3,78,0 +6,4,109,3 +6,5,85,0 +6,6,100,0 +7,1,44,0 +7,2,48,0 +7,3,65,1 +7,4,50,0 +7,5,64,0 +7,6,43,0 +8,1,59,0 +8,2,63,0 +8,3,80,1 +8,4,65,0 +8,5,80,1 +8,6,58,0 +9,1,79,0 +9,2,83,0 +9,3,100,0 +9,4,85,0 +9,5,105,3 +9,6,78,0 +10,1,45,1 +10,2,30,0 +10,3,35,0 +10,4,20,0 +10,5,20,0 +10,6,45,0 +11,1,50,0 +11,2,20,0 +11,3,55,2 +11,4,25,0 +11,5,25,0 +11,6,30,0 +12,1,60,0 +12,2,45,0 +12,3,50,0 +12,4,90,2 +12,5,80,1 +12,6,70,0 +13,1,40,0 +13,2,35,0 +13,3,30,0 +13,4,20,0 +13,5,20,0 +13,6,50,1 +14,1,45,0 +14,2,25,0 +14,3,50,2 +14,4,25,0 +14,5,25,0 +14,6,35,0 +15,1,65,0 +15,2,90,2 +15,3,40,0 +15,4,45,0 +15,5,80,1 +15,6,75,0 +16,1,40,0 +16,2,45,0 +16,3,40,0 +16,4,35,0 +16,5,35,0 +16,6,56,1 +17,1,63,0 +17,2,60,0 +17,3,55,0 +17,4,50,0 +17,5,50,0 +17,6,71,2 +18,1,83,0 +18,2,80,0 +18,3,75,0 +18,4,70,0 +18,5,70,0 +18,6,101,3 +19,1,30,0 +19,2,56,0 +19,3,35,0 +19,4,25,0 +19,5,35,0 +19,6,72,1 +20,1,55,0 +20,2,81,0 +20,3,60,0 +20,4,50,0 +20,5,70,0 +20,6,97,2 +21,1,40,0 +21,2,60,0 +21,3,30,0 +21,4,31,0 +21,5,31,0 +21,6,70,1 +22,1,65,0 +22,2,90,0 +22,3,65,0 +22,4,61,0 +22,5,61,0 +22,6,100,2 +23,1,35,0 +23,2,60,1 +23,3,44,0 +23,4,40,0 +23,5,54,0 +23,6,55,0 +24,1,60,0 +24,2,95,2 +24,3,69,0 +24,4,65,0 +24,5,79,0 +24,6,80,0 +25,1,35,0 +25,2,55,0 +25,3,40,0 +25,4,50,0 +25,5,50,0 +25,6,90,2 +26,1,60,0 +26,2,90,0 +26,3,55,0 +26,4,90,0 +26,5,80,0 +26,6,110,3 +27,1,50,0 +27,2,75,0 +27,3,85,1 +27,4,20,0 +27,5,30,0 +27,6,40,0 +28,1,75,0 +28,2,100,0 +28,3,110,2 +28,4,45,0 +28,5,55,0 +28,6,65,0 +29,1,55,1 +29,2,47,0 +29,3,52,0 +29,4,40,0 +29,5,40,0 +29,6,41,0 +30,1,70,2 +30,2,62,0 +30,3,67,0 +30,4,55,0 +30,5,55,0 +30,6,56,0 +31,1,90,3 +31,2,92,0 +31,3,87,0 +31,4,75,0 +31,5,85,0 +31,6,76,0 +32,1,46,0 +32,2,57,1 +32,3,40,0 +32,4,40,0 +32,5,40,0 +32,6,50,0 +33,1,61,0 +33,2,72,2 +33,3,57,0 +33,4,55,0 +33,5,55,0 +33,6,65,0 +34,1,81,0 +34,2,102,3 +34,3,77,0 +34,4,85,0 +34,5,75,0 +34,6,85,0 +35,1,70,2 +35,2,45,0 +35,3,48,0 +35,4,60,0 +35,5,65,0 +35,6,35,0 +36,1,95,3 +36,2,70,0 +36,3,73,0 +36,4,95,0 +36,5,90,0 +36,6,60,0 +37,1,38,0 +37,2,41,0 +37,3,40,0 +37,4,50,0 +37,5,65,0 +37,6,65,1 +38,1,73,0 +38,2,76,0 +38,3,75,0 +38,4,81,0 +38,5,100,1 +38,6,100,1 +39,1,115,2 +39,2,45,0 +39,3,20,0 +39,4,45,0 +39,5,25,0 +39,6,20,0 +40,1,140,3 +40,2,70,0 +40,3,45,0 +40,4,85,0 +40,5,50,0 +40,6,45,0 +41,1,40,0 +41,2,45,0 +41,3,35,0 +41,4,30,0 +41,5,40,0 +41,6,55,1 +42,1,75,0 +42,2,80,0 +42,3,70,0 +42,4,65,0 +42,5,75,0 +42,6,90,2 +43,1,45,0 +43,2,50,0 +43,3,55,0 +43,4,75,1 +43,5,65,0 +43,6,30,0 +44,1,60,0 +44,2,65,0 +44,3,70,0 +44,4,85,2 +44,5,75,0 +44,6,40,0 +45,1,75,0 +45,2,80,0 +45,3,85,0 +45,4,110,3 +45,5,90,0 +45,6,50,0 +46,1,35,0 +46,2,70,1 +46,3,55,0 +46,4,45,0 +46,5,55,0 +46,6,25,0 +47,1,60,0 +47,2,95,2 +47,3,80,1 +47,4,60,0 +47,5,80,0 +47,6,30,0 +48,1,60,0 +48,2,55,0 +48,3,50,0 +48,4,40,0 +48,5,55,1 +48,6,45,0 +49,1,70,0 +49,2,65,0 +49,3,60,0 +49,4,90,1 +49,5,75,0 +49,6,90,1 +50,1,10,0 +50,2,55,0 +50,3,25,0 +50,4,35,0 +50,5,45,0 +50,6,95,1 +51,1,35,0 +51,2,100,0 +51,3,50,0 +51,4,50,0 +51,5,70,0 +51,6,120,2 +52,1,40,0 +52,2,45,0 +52,3,35,0 +52,4,40,0 +52,5,40,0 +52,6,90,1 +53,1,65,0 +53,2,70,0 +53,3,60,0 +53,4,65,0 +53,5,65,0 +53,6,115,2 +54,1,50,0 +54,2,52,0 +54,3,48,0 +54,4,65,1 +54,5,50,0 +54,6,55,0 +55,1,80,0 +55,2,82,0 +55,3,78,0 +55,4,95,2 +55,5,80,0 +55,6,85,0 +56,1,40,0 +56,2,80,1 +56,3,35,0 +56,4,35,0 +56,5,45,0 +56,6,70,0 +57,1,65,0 +57,2,105,2 +57,3,60,0 +57,4,60,0 +57,5,70,0 +57,6,95,0 +58,1,55,0 +58,2,70,1 +58,3,45,0 +58,4,70,0 +58,5,50,0 +58,6,60,0 +59,1,90,0 +59,2,110,2 +59,3,80,0 +59,4,100,0 +59,5,80,0 +59,6,95,0 +60,1,40,0 +60,2,50,0 +60,3,40,0 +60,4,40,0 +60,5,40,0 +60,6,90,1 +61,1,65,0 +61,2,65,0 +61,3,65,0 +61,4,50,0 +61,5,50,0 +61,6,90,2 +62,1,90,0 +62,2,95,0 +62,3,95,3 +62,4,70,0 +62,5,90,0 +62,6,70,0 +63,1,25,0 +63,2,20,0 +63,3,15,0 +63,4,105,1 +63,5,55,0 +63,6,90,0 +64,1,40,0 +64,2,35,0 +64,3,30,0 +64,4,120,2 +64,5,70,0 +64,6,105,0 +65,1,55,0 +65,2,50,0 +65,3,45,0 +65,4,135,3 +65,5,95,0 +65,6,120,0 +66,1,70,0 +66,2,80,1 +66,3,50,0 +66,4,35,0 +66,5,35,0 +66,6,35,0 +67,1,80,0 +67,2,100,2 +67,3,70,0 +67,4,50,0 +67,5,60,0 +67,6,45,0 +68,1,90,0 +68,2,130,3 +68,3,80,0 +68,4,65,0 +68,5,85,0 +68,6,55,0 +69,1,50,0 +69,2,75,1 +69,3,35,0 +69,4,70,0 +69,5,30,0 +69,6,40,0 +70,1,65,0 +70,2,90,2 +70,3,50,0 +70,4,85,0 +70,5,45,0 +70,6,55,0 +71,1,80,0 +71,2,105,3 +71,3,65,0 +71,4,100,0 +71,5,70,0 +71,6,70,0 +72,1,40,0 +72,2,40,0 +72,3,35,0 +72,4,50,0 +72,5,100,1 +72,6,70,0 +73,1,80,0 +73,2,70,0 +73,3,65,0 +73,4,80,0 +73,5,120,2 +73,6,100,0 +74,1,40,0 +74,2,80,0 +74,3,100,1 +74,4,30,0 +74,5,30,0 +74,6,20,0 +75,1,55,0 +75,2,95,0 +75,3,115,2 +75,4,45,0 +75,5,45,0 +75,6,35,0 +76,1,80,0 +76,2,120,0 +76,3,130,3 +76,4,55,0 +76,5,65,0 +76,6,45,0 +77,1,50,0 +77,2,85,0 +77,3,55,0 +77,4,65,0 +77,5,65,0 +77,6,90,1 +78,1,65,0 +78,2,100,0 +78,3,70,0 +78,4,80,0 +78,5,80,0 +78,6,105,2 +79,1,90,1 +79,2,65,0 +79,3,65,0 +79,4,40,0 +79,5,40,0 +79,6,15,0 +80,1,95,0 +80,2,75,0 +80,3,110,2 +80,4,100,0 +80,5,80,0 +80,6,30,0 +81,1,25,0 +81,2,35,0 +81,3,70,0 +81,4,95,1 +81,5,55,0 +81,6,45,0 +82,1,50,0 +82,2,60,0 +82,3,95,0 +82,4,120,2 +82,5,70,0 +82,6,70,0 +83,1,52,0 +83,2,90,1 +83,3,55,0 +83,4,58,0 +83,5,62,0 +83,6,60,0 +84,1,35,0 +84,2,85,1 +84,3,45,0 +84,4,35,0 +84,5,35,0 +84,6,75,0 +85,1,60,0 +85,2,110,2 +85,3,70,0 +85,4,60,0 +85,5,60,0 +85,6,110,0 +86,1,65,0 +86,2,45,0 +86,3,55,0 +86,4,45,0 +86,5,70,1 +86,6,45,0 +87,1,90,0 +87,2,70,0 +87,3,80,0 +87,4,70,0 +87,5,95,2 +87,6,70,0 +88,1,80,1 +88,2,80,0 +88,3,50,0 +88,4,40,0 +88,5,50,0 +88,6,25,0 +89,1,105,1 +89,2,105,1 +89,3,75,0 +89,4,65,0 +89,5,100,0 +89,6,50,0 +90,1,30,0 +90,2,65,0 +90,3,100,1 +90,4,45,0 +90,5,25,0 +90,6,40,0 +91,1,50,0 +91,2,95,0 +91,3,180,2 +91,4,85,0 +91,5,45,0 +91,6,70,0 +92,1,30,0 +92,2,35,0 +92,3,30,0 +92,4,100,1 +92,5,35,0 +92,6,80,0 +93,1,45,0 +93,2,50,0 +93,3,45,0 +93,4,115,2 +93,5,55,0 +93,6,95,0 +94,1,60,0 +94,2,65,0 +94,3,60,0 +94,4,130,3 +94,5,75,0 +94,6,110,0 +95,1,35,0 +95,2,45,0 +95,3,160,1 +95,4,30,0 +95,5,45,0 +95,6,70,0 +96,1,60,0 +96,2,48,0 +96,3,45,0 +96,4,43,0 +96,5,90,1 +96,6,42,0 +97,1,85,0 +97,2,73,0 +97,3,70,0 +97,4,73,0 +97,5,115,2 +97,6,67,0 +98,1,30,0 +98,2,105,1 +98,3,90,0 +98,4,25,0 +98,5,25,0 +98,6,50,0 +99,1,55,0 +99,2,130,2 +99,3,115,0 +99,4,50,0 +99,5,50,0 +99,6,75,0 +100,1,40,0 +100,2,30,0 +100,3,50,0 +100,4,55,0 +100,5,55,0 +100,6,100,1 +101,1,60,0 +101,2,50,0 +101,3,70,0 +101,4,80,0 +101,5,80,0 +101,6,150,2 +102,1,60,0 +102,2,40,0 +102,3,80,1 +102,4,60,0 +102,5,45,0 +102,6,40,0 +103,1,95,0 +103,2,95,0 +103,3,85,0 +103,4,125,2 +103,5,75,0 +103,6,55,0 +104,1,50,0 +104,2,50,0 +104,3,95,1 +104,4,40,0 +104,5,50,0 +104,6,35,0 +105,1,60,0 +105,2,80,0 +105,3,110,2 +105,4,50,0 +105,5,80,0 +105,6,45,0 +106,1,50,0 +106,2,120,2 +106,3,53,0 +106,4,35,0 +106,5,110,0 +106,6,87,0 +107,1,50,0 +107,2,105,0 +107,3,79,0 +107,4,35,0 +107,5,110,2 +107,6,76,0 +108,1,90,2 +108,2,55,0 +108,3,75,0 +108,4,60,0 +108,5,75,0 +108,6,30,0 +109,1,40,0 +109,2,65,0 +109,3,95,1 +109,4,60,0 +109,5,45,0 +109,6,35,0 +110,1,65,0 +110,2,90,0 +110,3,120,2 +110,4,85,0 +110,5,70,0 +110,6,60,0 +111,1,80,0 +111,2,85,0 +111,3,95,1 +111,4,30,0 +111,5,30,0 +111,6,25,0 +112,1,105,0 +112,2,130,2 +112,3,120,0 +112,4,45,0 +112,5,45,0 +112,6,40,0 +113,1,250,2 +113,2,5,0 +113,3,5,0 +113,4,35,0 +113,5,105,0 +113,6,50,0 +114,1,65,0 +114,2,55,0 +114,3,115,1 +114,4,100,0 +114,5,40,0 +114,6,60,0 +115,1,105,2 +115,2,95,0 +115,3,80,0 +115,4,40,0 +115,5,80,0 +115,6,90,0 +116,1,30,0 +116,2,40,0 +116,3,70,0 +116,4,70,1 +116,5,25,0 +116,6,60,0 +117,1,55,0 +117,2,65,0 +117,3,95,1 +117,4,95,1 +117,5,45,0 +117,6,85,0 +118,1,45,0 +118,2,67,1 +118,3,60,0 +118,4,35,0 +118,5,50,0 +118,6,63,0 +119,1,80,0 +119,2,92,2 +119,3,65,0 +119,4,65,0 +119,5,80,0 +119,6,68,0 +120,1,30,0 +120,2,45,0 +120,3,55,0 +120,4,70,0 +120,5,55,0 +120,6,85,1 +121,1,60,0 +121,2,75,0 +121,3,85,0 +121,4,100,0 +121,5,85,0 +121,6,115,2 +122,1,40,0 +122,2,45,0 +122,3,65,0 +122,4,100,0 +122,5,120,2 +122,6,90,0 +123,1,70,0 +123,2,110,1 +123,3,80,0 +123,4,55,0 +123,5,80,0 +123,6,105,0 +124,1,65,0 +124,2,50,0 +124,3,35,0 +124,4,115,2 +124,5,95,0 +124,6,95,0 +125,1,65,0 +125,2,83,0 +125,3,57,0 +125,4,95,0 +125,5,85,0 +125,6,105,2 +126,1,65,0 +126,2,95,0 +126,3,57,0 +126,4,100,2 +126,5,85,0 +126,6,93,0 +127,1,65,0 +127,2,125,2 +127,3,100,0 +127,4,55,0 +127,5,70,0 +127,6,85,0 +128,1,75,0 +128,2,100,1 +128,3,95,0 +128,4,40,0 +128,5,70,0 +128,6,110,1 +129,1,20,0 +129,2,10,0 +129,3,55,0 +129,4,15,0 +129,5,20,0 +129,6,80,1 +130,1,95,0 +130,2,125,2 +130,3,79,0 +130,4,60,0 +130,5,100,0 +130,6,81,0 +131,1,130,2 +131,2,85,0 +131,3,80,0 +131,4,85,0 +131,5,95,0 +131,6,60,0 +132,1,48,1 +132,2,48,0 +132,3,48,0 +132,4,48,0 +132,5,48,0 +132,6,48,0 +133,1,55,0 +133,2,55,0 +133,3,50,0 +133,4,45,0 +133,5,65,1 +133,6,55,0 +134,1,130,2 +134,2,65,0 +134,3,60,0 +134,4,110,0 +134,5,95,0 +134,6,65,0 +135,1,65,0 +135,2,65,0 +135,3,60,0 +135,4,110,0 +135,5,95,0 +135,6,130,2 +136,1,65,0 +136,2,130,2 +136,3,60,0 +136,4,95,0 +136,5,110,0 +136,6,65,0 +137,1,65,0 +137,2,60,0 +137,3,70,0 +137,4,85,1 +137,5,75,0 +137,6,40,0 +138,1,35,0 +138,2,40,0 +138,3,100,1 +138,4,90,0 +138,5,55,0 +138,6,35,0 +139,1,70,0 +139,2,60,0 +139,3,125,2 +139,4,115,0 +139,5,70,0 +139,6,55,0 +140,1,30,0 +140,2,80,0 +140,3,90,1 +140,4,55,0 +140,5,45,0 +140,6,55,0 +141,1,60,0 +141,2,115,2 +141,3,105,0 +141,4,65,0 +141,5,70,0 +141,6,80,0 +142,1,80,0 +142,2,105,0 +142,3,65,0 +142,4,60,0 +142,5,75,0 +142,6,130,2 +143,1,160,2 +143,2,110,0 +143,3,65,0 +143,4,65,0 +143,5,110,0 +143,6,30,0 +144,1,90,0 +144,2,85,0 +144,3,100,0 +144,4,95,0 +144,5,125,3 +144,6,85,0 +145,1,90,0 +145,2,90,0 +145,3,85,0 +145,4,125,3 +145,5,90,0 +145,6,100,0 +146,1,90,0 +146,2,100,0 +146,3,90,0 +146,4,125,3 +146,5,85,0 +146,6,90,0 +147,1,41,0 +147,2,64,1 +147,3,45,0 +147,4,50,0 +147,5,50,0 +147,6,50,0 +148,1,61,0 +148,2,84,2 +148,3,65,0 +148,4,70,0 +148,5,70,0 +148,6,70,0 +149,1,91,0 +149,2,134,3 +149,3,95,0 +149,4,100,0 +149,5,100,0 +149,6,80,0 +150,1,106,0 +150,2,110,0 +150,3,90,0 +150,4,154,3 +150,5,90,0 +150,6,130,0 +151,1,100,3 +151,2,100,0 +151,3,100,0 +151,4,100,0 +151,5,100,0 +151,6,100,0 +152,1,45,0 +152,2,49,0 +152,3,65,0 +152,4,49,0 +152,5,65,1 +152,6,45,0 +153,1,60,0 +153,2,62,0 +153,3,80,1 +153,4,63,0 +153,5,80,1 +153,6,60,0 +154,1,80,0 +154,2,82,0 +154,3,100,1 +154,4,83,0 +154,5,100,2 +154,6,80,0 +155,1,39,0 +155,2,52,0 +155,3,43,0 +155,4,60,0 +155,5,50,0 +155,6,65,1 +156,1,58,0 +156,2,64,0 +156,3,58,0 +156,4,80,1 +156,5,65,0 +156,6,80,1 +157,1,78,0 +157,2,84,0 +157,3,78,0 +157,4,109,3 +157,5,85,0 +157,6,100,0 +158,1,50,0 +158,2,65,1 +158,3,64,0 +158,4,44,0 +158,5,48,0 +158,6,43,0 +159,1,65,0 +159,2,80,1 +159,3,80,1 +159,4,59,0 +159,5,63,0 +159,6,58,0 +160,1,85,0 +160,2,105,2 +160,3,100,1 +160,4,79,0 +160,5,83,0 +160,6,78,0 +161,1,35,0 +161,2,46,1 +161,3,34,0 +161,4,35,0 +161,5,45,0 +161,6,20,0 +162,1,85,0 +162,2,76,0 +162,3,64,0 +162,4,45,0 +162,5,55,0 +162,6,90,2 +163,1,60,1 +163,2,30,0 +163,3,30,0 +163,4,36,0 +163,5,56,0 +163,6,50,0 +164,1,100,2 +164,2,50,0 +164,3,50,0 +164,4,86,0 +164,5,96,0 +164,6,70,0 +165,1,40,0 +165,2,20,0 +165,3,30,0 +165,4,40,0 +165,5,80,1 +165,6,55,0 +166,1,55,0 +166,2,35,0 +166,3,50,0 +166,4,55,0 +166,5,110,2 +166,6,85,0 +167,1,40,0 +167,2,60,1 +167,3,40,0 +167,4,40,0 +167,5,40,0 +167,6,30,0 +168,1,70,0 +168,2,90,2 +168,3,70,0 +168,4,60,0 +168,5,70,0 +168,6,40,0 +169,1,85,0 +169,2,90,0 +169,3,80,0 +169,4,70,0 +169,5,80,0 +169,6,130,3 +170,1,75,1 +170,2,38,0 +170,3,38,0 +170,4,56,0 +170,5,56,0 +170,6,67,0 +171,1,125,2 +171,2,58,0 +171,3,58,0 +171,4,76,0 +171,5,76,0 +171,6,67,0 +172,1,20,0 +172,2,40,0 +172,3,15,0 +172,4,35,0 +172,5,35,0 +172,6,60,1 +173,1,50,0 +173,2,25,0 +173,3,28,0 +173,4,45,0 +173,5,55,1 +173,6,15,0 +174,1,90,1 +174,2,30,0 +174,3,15,0 +174,4,40,0 +174,5,20,0 +174,6,15,0 +175,1,35,0 +175,2,20,0 +175,3,65,0 +175,4,40,0 +175,5,65,1 +175,6,20,0 +176,1,55,0 +176,2,40,0 +176,3,85,0 +176,4,80,0 +176,5,105,2 +176,6,40,0 +177,1,40,0 +177,2,50,0 +177,3,45,0 +177,4,70,1 +177,5,45,0 +177,6,70,0 +178,1,65,0 +178,2,75,0 +178,3,70,0 +178,4,95,1 +178,5,70,0 +178,6,95,1 +179,1,55,0 +179,2,40,0 +179,3,40,0 +179,4,65,1 +179,5,45,0 +179,6,35,0 +180,1,70,0 +180,2,55,0 +180,3,55,0 +180,4,80,2 +180,5,60,0 +180,6,45,0 +181,1,90,0 +181,2,75,0 +181,3,85,0 +181,4,115,3 +181,5,90,0 +181,6,55,0 +182,1,75,0 +182,2,80,0 +182,3,95,0 +182,4,90,0 +182,5,100,3 +182,6,50,0 +183,1,70,2 +183,2,20,0 +183,3,50,0 +183,4,20,0 +183,5,50,0 +183,6,40,0 +184,1,100,3 +184,2,50,0 +184,3,80,0 +184,4,60,0 +184,5,80,0 +184,6,50,0 +185,1,70,0 +185,2,100,0 +185,3,115,2 +185,4,30,0 +185,5,65,0 +185,6,30,0 +186,1,90,0 +186,2,75,0 +186,3,75,0 +186,4,90,0 +186,5,100,3 +186,6,70,0 +187,1,35,0 +187,2,35,0 +187,3,40,0 +187,4,35,0 +187,5,55,1 +187,6,50,0 +188,1,55,0 +188,2,45,0 +188,3,50,0 +188,4,45,0 +188,5,65,0 +188,6,80,2 +189,1,75,0 +189,2,55,0 +189,3,70,0 +189,4,55,0 +189,5,95,0 +189,6,110,3 +190,1,55,0 +190,2,70,0 +190,3,55,0 +190,4,40,0 +190,5,55,0 +190,6,85,1 +191,1,30,0 +191,2,30,0 +191,3,30,0 +191,4,30,1 +191,5,30,0 +191,6,30,0 +192,1,75,0 +192,2,75,0 +192,3,55,0 +192,4,105,2 +192,5,85,0 +192,6,30,0 +193,1,65,0 +193,2,65,0 +193,3,45,0 +193,4,75,0 +193,5,45,0 +193,6,95,1 +194,1,55,1 +194,2,45,0 +194,3,45,0 +194,4,25,0 +194,5,25,0 +194,6,15,0 +195,1,95,2 +195,2,85,0 +195,3,85,0 +195,4,65,0 +195,5,65,0 +195,6,35,0 +196,1,65,0 +196,2,65,0 +196,3,60,0 +196,4,130,2 +196,5,95,0 +196,6,110,0 +197,1,95,0 +197,2,65,0 +197,3,110,0 +197,4,60,0 +197,5,130,2 +197,6,65,0 +198,1,60,0 +198,2,85,0 +198,3,42,0 +198,4,85,0 +198,5,42,0 +198,6,91,1 +199,1,95,0 +199,2,75,0 +199,3,80,0 +199,4,100,0 +199,5,110,3 +199,6,30,0 +200,1,60,0 +200,2,60,0 +200,3,60,0 +200,4,85,0 +200,5,85,1 +200,6,85,0 +201,1,48,0 +201,2,72,1 +201,3,48,0 +201,4,72,1 +201,5,48,0 +201,6,48,0 +202,1,190,2 +202,2,33,0 +202,3,58,0 +202,4,33,0 +202,5,58,0 +202,6,33,0 +203,1,70,0 +203,2,80,0 +203,3,65,0 +203,4,90,2 +203,5,65,0 +203,6,85,0 +204,1,50,0 +204,2,65,0 +204,3,90,1 +204,4,35,0 +204,5,35,0 +204,6,15,0 +205,1,75,0 +205,2,90,0 +205,3,140,2 +205,4,60,0 +205,5,60,0 +205,6,40,0 +206,1,100,1 +206,2,70,0 +206,3,70,0 +206,4,65,0 +206,5,65,0 +206,6,45,0 +207,1,65,0 +207,2,75,0 +207,3,105,1 +207,4,35,0 +207,5,65,0 +207,6,85,0 +208,1,75,0 +208,2,85,0 +208,3,200,2 +208,4,55,0 +208,5,65,0 +208,6,30,0 +209,1,60,0 +209,2,80,1 +209,3,50,0 +209,4,40,0 +209,5,40,0 +209,6,30,0 +210,1,90,0 +210,2,120,2 +210,3,75,0 +210,4,60,0 +210,5,60,0 +210,6,45,0 +211,1,65,0 +211,2,95,1 +211,3,85,0 +211,4,55,0 +211,5,55,0 +211,6,85,0 +212,1,70,0 +212,2,130,2 +212,3,100,0 +212,4,55,0 +212,5,80,0 +212,6,65,0 +213,1,20,0 +213,2,10,0 +213,3,230,1 +213,4,10,0 +213,5,230,1 +213,6,5,0 +214,1,80,0 +214,2,125,2 +214,3,75,0 +214,4,40,0 +214,5,95,0 +214,6,85,0 +215,1,55,0 +215,2,95,0 +215,3,55,0 +215,4,35,0 +215,5,75,0 +215,6,115,1 +216,1,60,0 +216,2,80,1 +216,3,50,0 +216,4,50,0 +216,5,50,0 +216,6,40,0 +217,1,90,0 +217,2,130,2 +217,3,75,0 +217,4,75,0 +217,5,75,0 +217,6,55,0 +218,1,40,0 +218,2,40,0 +218,3,40,0 +218,4,70,1 +218,5,40,0 +218,6,20,0 +219,1,60,0 +219,2,50,0 +219,3,120,2 +219,4,90,0 +219,5,80,0 +219,6,30,0 +220,1,50,0 +220,2,50,1 +220,3,40,0 +220,4,30,0 +220,5,30,0 +220,6,50,0 +221,1,100,1 +221,2,100,1 +221,3,80,0 +221,4,60,0 +221,5,60,0 +221,6,50,0 +222,1,65,0 +222,2,55,0 +222,3,95,1 +222,4,65,0 +222,5,95,1 +222,6,35,0 +223,1,35,0 +223,2,65,0 +223,3,35,0 +223,4,65,1 +223,5,35,0 +223,6,65,0 +224,1,75,0 +224,2,105,1 +224,3,75,0 +224,4,105,1 +224,5,75,0 +224,6,45,0 +225,1,45,0 +225,2,55,0 +225,3,45,0 +225,4,65,0 +225,5,45,0 +225,6,75,1 +226,1,85,0 +226,2,40,0 +226,3,70,0 +226,4,80,0 +226,5,140,2 +226,6,70,0 +227,1,65,0 +227,2,80,0 +227,3,140,2 +227,4,40,0 +227,5,70,0 +227,6,70,0 +228,1,45,0 +228,2,60,0 +228,3,30,0 +228,4,80,1 +228,5,50,0 +228,6,65,0 +229,1,75,0 +229,2,90,0 +229,3,50,0 +229,4,110,2 +229,5,80,0 +229,6,95,0 +230,1,75,0 +230,2,95,1 +230,3,95,0 +230,4,95,1 +230,5,95,1 +230,6,85,0 +231,1,90,1 +231,2,60,0 +231,3,60,0 +231,4,40,0 +231,5,40,0 +231,6,40,0 +232,1,90,0 +232,2,120,1 +232,3,120,1 +232,4,60,0 +232,5,60,0 +232,6,50,0 +233,1,85,0 +233,2,80,0 +233,3,90,0 +233,4,105,2 +233,5,95,0 +233,6,60,0 +234,1,73,0 +234,2,95,1 +234,3,62,0 +234,4,85,0 +234,5,65,0 +234,6,85,0 +235,1,55,0 +235,2,20,0 +235,3,35,0 +235,4,20,0 +235,5,45,0 +235,6,75,1 +236,1,35,0 +236,2,35,1 +236,3,35,0 +236,4,35,0 +236,5,35,0 +236,6,35,0 +237,1,50,0 +237,2,95,0 +237,3,95,0 +237,4,35,0 +237,5,110,2 +237,6,70,0 +238,1,45,0 +238,2,30,0 +238,3,15,0 +238,4,85,1 +238,5,65,0 +238,6,65,0 +239,1,45,0 +239,2,63,0 +239,3,37,0 +239,4,65,0 +239,5,55,0 +239,6,95,1 +240,1,45,0 +240,2,75,0 +240,3,37,0 +240,4,70,0 +240,5,55,0 +240,6,83,1 +241,1,95,0 +241,2,80,0 +241,3,105,2 +241,4,40,0 +241,5,70,0 +241,6,100,0 +242,1,255,3 +242,2,10,0 +242,3,10,0 +242,4,75,0 +242,5,135,0 +242,6,55,0 +243,1,90,0 +243,2,85,0 +243,3,75,0 +243,4,115,1 +243,5,100,0 +243,6,115,2 +244,1,115,1 +244,2,115,2 +244,3,85,0 +244,4,90,0 +244,5,75,0 +244,6,100,0 +245,1,100,0 +245,2,75,0 +245,3,115,1 +245,4,90,0 +245,5,115,2 +245,6,85,0 +246,1,50,0 +246,2,64,1 +246,3,50,0 +246,4,45,0 +246,5,50,0 +246,6,41,0 +247,1,70,0 +247,2,84,2 +247,3,70,0 +247,4,65,0 +247,5,70,0 +247,6,51,0 +248,1,100,0 +248,2,134,3 +248,3,110,0 +248,4,95,0 +248,5,100,0 +248,6,61,0 +249,1,106,0 +249,2,90,0 +249,3,130,0 +249,4,90,0 +249,5,154,3 +249,6,110,0 +250,1,106,0 +250,2,130,0 +250,3,90,0 +250,4,110,0 +250,5,154,3 +250,6,90,0 +251,1,100,3 +251,2,100,0 +251,3,100,0 +251,4,100,0 +251,5,100,0 +251,6,100,0 +252,1,40,0 +252,2,45,0 +252,3,35,0 +252,4,65,0 +252,5,55,0 +252,6,70,1 +253,1,50,0 +253,2,65,0 +253,3,45,0 +253,4,85,0 +253,5,65,0 +253,6,95,2 +254,1,70,0 +254,2,85,0 +254,3,65,0 +254,4,105,0 +254,5,85,0 +254,6,120,3 +255,1,45,0 +255,2,60,0 +255,3,40,0 +255,4,70,1 +255,5,50,0 +255,6,45,0 +256,1,60,0 +256,2,85,1 +256,3,60,0 +256,4,85,1 +256,5,60,0 +256,6,55,0 +257,1,80,0 +257,2,120,3 +257,3,70,0 +257,4,110,0 +257,5,70,0 +257,6,80,0 +258,1,50,0 +258,2,70,1 +258,3,50,0 +258,4,50,0 +258,5,50,0 +258,6,40,0 +259,1,70,0 +259,2,85,2 +259,3,70,0 +259,4,60,0 +259,5,70,0 +259,6,50,0 +260,1,100,0 +260,2,110,3 +260,3,90,0 +260,4,85,0 +260,5,90,0 +260,6,60,0 +261,1,35,0 +261,2,55,1 +261,3,35,0 +261,4,30,0 +261,5,30,0 +261,6,35,0 +262,1,70,0 +262,2,90,2 +262,3,70,0 +262,4,60,0 +262,5,60,0 +262,6,70,0 +263,1,38,0 +263,2,30,0 +263,3,41,0 +263,4,30,0 +263,5,41,0 +263,6,60,1 +264,1,78,0 +264,2,70,0 +264,3,61,0 +264,4,50,0 +264,5,61,0 +264,6,100,2 +265,1,45,1 +265,2,45,0 +265,3,35,0 +265,4,20,0 +265,5,30,0 +265,6,20,0 +266,1,50,0 +266,2,35,0 +266,3,55,2 +266,4,25,0 +266,5,25,0 +266,6,15,0 +267,1,60,0 +267,2,70,0 +267,3,50,0 +267,4,100,3 +267,5,50,0 +267,6,65,0 +268,1,50,0 +268,2,35,0 +268,3,55,2 +268,4,25,0 +268,5,25,0 +268,6,15,0 +269,1,60,0 +269,2,50,0 +269,3,70,0 +269,4,50,0 +269,5,90,3 +269,6,65,0 +270,1,40,0 +270,2,30,0 +270,3,30,0 +270,4,40,0 +270,5,50,1 +270,6,30,0 +271,1,60,0 +271,2,50,0 +271,3,50,0 +271,4,60,0 +271,5,70,2 +271,6,50,0 +272,1,80,0 +272,2,70,0 +272,3,70,0 +272,4,90,0 +272,5,100,3 +272,6,70,0 +273,1,40,0 +273,2,40,0 +273,3,50,1 +273,4,30,0 +273,5,30,0 +273,6,30,0 +274,1,70,0 +274,2,70,2 +274,3,40,0 +274,4,60,0 +274,5,40,0 +274,6,60,0 +275,1,90,0 +275,2,100,3 +275,3,60,0 +275,4,90,0 +275,5,60,0 +275,6,80,0 +276,1,40,0 +276,2,55,0 +276,3,30,0 +276,4,30,0 +276,5,30,0 +276,6,85,1 +277,1,60,0 +277,2,85,0 +277,3,60,0 +277,4,75,0 +277,5,50,0 +277,6,125,2 +278,1,40,0 +278,2,30,0 +278,3,30,0 +278,4,55,0 +278,5,30,0 +278,6,85,1 +279,1,60,0 +279,2,50,0 +279,3,100,2 +279,4,95,0 +279,5,70,0 +279,6,65,0 +280,1,28,0 +280,2,25,0 +280,3,25,0 +280,4,45,1 +280,5,35,0 +280,6,40,0 +281,1,38,0 +281,2,35,0 +281,3,35,0 +281,4,65,2 +281,5,55,0 +281,6,50,0 +282,1,68,0 +282,2,65,0 +282,3,65,0 +282,4,125,3 +282,5,115,0 +282,6,80,0 +283,1,40,0 +283,2,30,0 +283,3,32,0 +283,4,50,0 +283,5,52,0 +283,6,65,1 +284,1,70,0 +284,2,60,0 +284,3,62,0 +284,4,100,1 +284,5,82,1 +284,6,80,0 +285,1,60,1 +285,2,40,0 +285,3,60,0 +285,4,40,0 +285,5,60,0 +285,6,35,0 +286,1,60,0 +286,2,130,2 +286,3,80,0 +286,4,60,0 +286,5,60,0 +286,6,70,0 +287,1,60,1 +287,2,60,0 +287,3,60,0 +287,4,35,0 +287,5,35,0 +287,6,30,0 +288,1,80,0 +288,2,80,0 +288,3,80,0 +288,4,55,0 +288,5,55,0 +288,6,90,2 +289,1,150,3 +289,2,160,0 +289,3,100,0 +289,4,95,0 +289,5,65,0 +289,6,100,0 +290,1,31,0 +290,2,45,0 +290,3,90,1 +290,4,30,0 +290,5,30,0 +290,6,40,0 +291,1,61,0 +291,2,90,0 +291,3,45,0 +291,4,50,0 +291,5,50,0 +291,6,160,2 +292,1,1,2 +292,2,90,0 +292,3,45,0 +292,4,30,0 +292,5,30,0 +292,6,40,0 +293,1,64,1 +293,2,51,0 +293,3,23,0 +293,4,51,0 +293,5,23,0 +293,6,28,0 +294,1,84,2 +294,2,71,0 +294,3,43,0 +294,4,71,0 +294,5,43,0 +294,6,48,0 +295,1,104,3 +295,2,91,0 +295,3,63,0 +295,4,91,0 +295,5,73,0 +295,6,68,0 +296,1,72,1 +296,2,60,0 +296,3,30,0 +296,4,20,0 +296,5,30,0 +296,6,25,0 +297,1,144,2 +297,2,120,0 +297,3,60,0 +297,4,40,0 +297,5,60,0 +297,6,50,0 +298,1,50,1 +298,2,20,0 +298,3,40,0 +298,4,20,0 +298,5,40,0 +298,6,20,0 +299,1,30,0 +299,2,45,0 +299,3,135,1 +299,4,45,0 +299,5,90,0 +299,6,30,0 +300,1,50,0 +300,2,45,0 +300,3,45,0 +300,4,35,0 +300,5,35,0 +300,6,50,1 +301,1,70,1 +301,2,65,0 +301,3,65,0 +301,4,55,0 +301,5,55,0 +301,6,90,1 +302,1,50,0 +302,2,75,1 +302,3,75,1 +302,4,65,0 +302,5,65,0 +302,6,50,0 +303,1,50,0 +303,2,85,1 +303,3,85,1 +303,4,55,0 +303,5,55,0 +303,6,50,0 +304,1,50,0 +304,2,70,0 +304,3,100,1 +304,4,40,0 +304,5,40,0 +304,6,30,0 +305,1,60,0 +305,2,90,0 +305,3,140,2 +305,4,50,0 +305,5,50,0 +305,6,40,0 +306,1,70,0 +306,2,110,0 +306,3,180,3 +306,4,60,0 +306,5,60,0 +306,6,50,0 +307,1,30,0 +307,2,40,0 +307,3,55,0 +307,4,40,0 +307,5,55,0 +307,6,60,1 +308,1,60,0 +308,2,60,0 +308,3,75,0 +308,4,60,0 +308,5,75,0 +308,6,80,2 +309,1,40,0 +309,2,45,0 +309,3,40,0 +309,4,65,0 +309,5,40,0 +309,6,65,1 +310,1,70,0 +310,2,75,0 +310,3,60,0 +310,4,105,0 +310,5,60,0 +310,6,105,2 +311,1,60,0 +311,2,50,0 +311,3,40,0 +311,4,85,0 +311,5,75,0 +311,6,95,1 +312,1,60,0 +312,2,40,0 +312,3,50,0 +312,4,75,0 +312,5,85,0 +312,6,95,1 +313,1,65,0 +313,2,73,0 +313,3,75,0 +313,4,47,0 +313,5,85,0 +313,6,85,1 +314,1,65,0 +314,2,47,0 +314,3,75,0 +314,4,73,0 +314,5,85,0 +314,6,85,1 +315,1,50,0 +315,2,60,0 +315,3,45,0 +315,4,100,2 +315,5,80,0 +315,6,65,0 +316,1,70,1 +316,2,43,0 +316,3,53,0 +316,4,43,0 +316,5,53,0 +316,6,40,0 +317,1,100,2 +317,2,73,0 +317,3,83,0 +317,4,73,0 +317,5,83,0 +317,6,55,0 +318,1,45,0 +318,2,90,1 +318,3,20,0 +318,4,65,0 +318,5,20,0 +318,6,65,0 +319,1,70,0 +319,2,120,2 +319,3,40,0 +319,4,95,0 +319,5,40,0 +319,6,95,0 +320,1,130,1 +320,2,70,0 +320,3,35,0 +320,4,70,0 +320,5,35,0 +320,6,60,0 +321,1,170,2 +321,2,90,0 +321,3,45,0 +321,4,90,0 +321,5,45,0 +321,6,60,0 +322,1,60,0 +322,2,60,0 +322,3,40,0 +322,4,65,1 +322,5,45,0 +322,6,35,0 +323,1,70,0 +323,2,100,1 +323,3,70,0 +323,4,105,1 +323,5,75,0 +323,6,40,0 +324,1,70,0 +324,2,85,0 +324,3,140,2 +324,4,85,0 +324,5,70,0 +324,6,20,0 +325,1,60,0 +325,2,25,0 +325,3,35,0 +325,4,70,0 +325,5,80,1 +325,6,60,0 +326,1,80,0 +326,2,45,0 +326,3,65,0 +326,4,90,0 +326,5,110,2 +326,6,80,0 +327,1,60,0 +327,2,60,0 +327,3,60,0 +327,4,60,1 +327,5,60,0 +327,6,60,0 +328,1,45,0 +328,2,100,1 +328,3,45,0 +328,4,45,0 +328,5,45,0 +328,6,10,0 +329,1,50,0 +329,2,70,1 +329,3,50,0 +329,4,50,0 +329,5,50,0 +329,6,70,1 +330,1,80,0 +330,2,100,1 +330,3,80,0 +330,4,80,0 +330,5,80,0 +330,6,100,2 +331,1,50,0 +331,2,85,0 +331,3,40,0 +331,4,85,1 +331,5,40,0 +331,6,35,0 +332,1,70,0 +332,2,115,1 +332,3,60,0 +332,4,115,1 +332,5,60,0 +332,6,55,0 +333,1,45,0 +333,2,40,0 +333,3,60,0 +333,4,40,0 +333,5,75,1 +333,6,50,0 +334,1,75,0 +334,2,70,0 +334,3,90,0 +334,4,70,0 +334,5,105,2 +334,6,80,0 +335,1,73,0 +335,2,115,2 +335,3,60,0 +335,4,60,0 +335,5,60,0 +335,6,90,0 +336,1,73,0 +336,2,100,1 +336,3,60,0 +336,4,100,1 +336,5,60,0 +336,6,65,0 +337,1,90,0 +337,2,55,0 +337,3,65,0 +337,4,95,2 +337,5,85,0 +337,6,70,0 +338,1,90,0 +338,2,95,2 +338,3,85,0 +338,4,55,0 +338,5,65,0 +338,6,70,0 +339,1,50,1 +339,2,48,0 +339,3,43,0 +339,4,46,0 +339,5,41,0 +339,6,60,0 +340,1,110,2 +340,2,78,0 +340,3,73,0 +340,4,76,0 +340,5,71,0 +340,6,60,0 +341,1,43,0 +341,2,80,1 +341,3,65,0 +341,4,50,0 +341,5,35,0 +341,6,35,0 +342,1,63,0 +342,2,120,2 +342,3,85,0 +342,4,90,0 +342,5,55,0 +342,6,55,0 +343,1,40,0 +343,2,40,0 +343,3,55,0 +343,4,40,0 +343,5,70,1 +343,6,55,0 +344,1,60,0 +344,2,70,0 +344,3,105,0 +344,4,70,0 +344,5,120,2 +344,6,75,0 +345,1,66,0 +345,2,41,0 +345,3,77,0 +345,4,61,0 +345,5,87,1 +345,6,23,0 +346,1,86,0 +346,2,81,0 +346,3,97,0 +346,4,81,0 +346,5,107,2 +346,6,43,0 +347,1,45,0 +347,2,95,1 +347,3,50,0 +347,4,40,0 +347,5,50,0 +347,6,75,0 +348,1,75,0 +348,2,125,2 +348,3,100,0 +348,4,70,0 +348,5,80,0 +348,6,45,0 +349,1,20,0 +349,2,15,0 +349,3,20,0 +349,4,10,0 +349,5,55,0 +349,6,80,1 +350,1,95,0 +350,2,60,0 +350,3,79,0 +350,4,100,0 +350,5,125,2 +350,6,81,0 +351,1,70,1 +351,2,70,0 +351,3,70,0 +351,4,70,0 +351,5,70,0 +351,6,70,0 +352,1,60,0 +352,2,90,0 +352,3,70,0 +352,4,60,0 +352,5,120,1 +352,6,40,0 +353,1,44,0 +353,2,75,1 +353,3,35,0 +353,4,63,0 +353,5,33,0 +353,6,45,0 +354,1,64,0 +354,2,115,2 +354,3,65,0 +354,4,83,0 +354,5,63,0 +354,6,65,0 +355,1,20,0 +355,2,40,0 +355,3,90,0 +355,4,30,0 +355,5,90,1 +355,6,25,0 +356,1,40,0 +356,2,70,0 +356,3,130,1 +356,4,60,0 +356,5,130,1 +356,6,25,0 +357,1,99,2 +357,2,68,0 +357,3,83,0 +357,4,72,0 +357,5,87,0 +357,6,51,0 +358,1,75,0 +358,2,50,0 +358,3,80,0 +358,4,95,1 +358,5,90,1 +358,6,65,0 +359,1,65,0 +359,2,130,2 +359,3,60,0 +359,4,75,0 +359,5,60,0 +359,6,75,0 +360,1,95,1 +360,2,23,0 +360,3,48,0 +360,4,23,0 +360,5,48,0 +360,6,23,0 +361,1,50,1 +361,2,50,0 +361,3,50,0 +361,4,50,0 +361,5,50,0 +361,6,50,0 +362,1,80,2 +362,2,80,0 +362,3,80,0 +362,4,80,0 +362,5,80,0 +362,6,80,0 +363,1,70,1 +363,2,40,0 +363,3,50,0 +363,4,55,0 +363,5,50,0 +363,6,25,0 +364,1,90,2 +364,2,60,0 +364,3,70,0 +364,4,75,0 +364,5,70,0 +364,6,45,0 +365,1,110,3 +365,2,80,0 +365,3,90,0 +365,4,95,0 +365,5,90,0 +365,6,65,0 +366,1,35,0 +366,2,64,0 +366,3,85,1 +366,4,74,0 +366,5,55,0 +366,6,32,0 +367,1,55,0 +367,2,104,1 +367,3,105,1 +367,4,94,0 +367,5,75,0 +367,6,52,0 +368,1,55,0 +368,2,84,0 +368,3,105,0 +368,4,114,2 +368,5,75,0 +368,6,52,0 +369,1,100,1 +369,2,90,0 +369,3,130,1 +369,4,45,0 +369,5,65,0 +369,6,55,0 +370,1,43,0 +370,2,30,0 +370,3,55,0 +370,4,40,0 +370,5,65,0 +370,6,97,1 +371,1,45,0 +371,2,75,1 +371,3,60,0 +371,4,40,0 +371,5,30,0 +371,6,50,0 +372,1,65,0 +372,2,95,0 +372,3,100,2 +372,4,60,0 +372,5,50,0 +372,6,50,0 +373,1,95,0 +373,2,135,3 +373,3,80,0 +373,4,110,0 +373,5,80,0 +373,6,100,0 +374,1,40,0 +374,2,55,0 +374,3,80,1 +374,4,35,0 +374,5,60,0 +374,6,30,0 +375,1,60,0 +375,2,75,0 +375,3,100,2 +375,4,55,0 +375,5,80,0 +375,6,50,0 +376,1,80,0 +376,2,135,0 +376,3,130,3 +376,4,95,0 +376,5,90,0 +376,6,70,0 +377,1,80,0 +377,2,100,0 +377,3,200,3 +377,4,50,0 +377,5,100,0 +377,6,50,0 +378,1,80,0 +378,2,50,0 +378,3,100,0 +378,4,100,0 +378,5,200,3 +378,6,50,0 +379,1,80,0 +379,2,75,0 +379,3,150,2 +379,4,75,0 +379,5,150,1 +379,6,50,0 +380,1,80,0 +380,2,80,0 +380,3,90,0 +380,4,110,0 +380,5,130,3 +380,6,110,0 +381,1,80,0 +381,2,90,0 +381,3,80,0 +381,4,130,3 +381,5,110,0 +381,6,110,0 +382,1,100,0 +382,2,100,0 +382,3,90,0 +382,4,150,3 +382,5,140,0 +382,6,90,0 +383,1,100,0 +383,2,150,3 +383,3,140,0 +383,4,100,0 +383,5,90,0 +383,6,90,0 +384,1,105,0 +384,2,150,2 +384,3,90,0 +384,4,150,1 +384,5,90,0 +384,6,95,0 +385,1,100,3 +385,2,100,0 +385,3,100,0 +385,4,100,0 +385,5,100,0 +385,6,100,0 +386,1,50,0 +386,2,150,1 +386,3,50,0 +386,4,150,1 +386,5,50,0 +386,6,150,1 +387,1,55,0 +387,2,68,1 +387,3,64,0 +387,4,45,0 +387,5,55,0 +387,6,31,0 +388,1,75,0 +388,2,89,1 +388,3,85,1 +388,4,55,0 +388,5,65,0 +388,6,36,0 +389,1,95,0 +389,2,109,2 +389,3,105,1 +389,4,75,0 +389,5,85,0 +389,6,56,0 +390,1,44,0 +390,2,58,0 +390,3,44,0 +390,4,58,0 +390,5,44,0 +390,6,61,1 +391,1,64,0 +391,2,78,0 +391,3,52,0 +391,4,78,1 +391,5,52,0 +391,6,81,1 +392,1,76,0 +392,2,104,1 +392,3,71,0 +392,4,104,1 +392,5,71,0 +392,6,108,1 +393,1,53,0 +393,2,51,0 +393,3,53,0 +393,4,61,1 +393,5,56,0 +393,6,40,0 +394,1,64,0 +394,2,66,0 +394,3,68,0 +394,4,81,2 +394,5,76,0 +394,6,50,0 +395,1,84,0 +395,2,86,0 +395,3,88,0 +395,4,111,3 +395,5,101,0 +395,6,60,0 +396,1,40,0 +396,2,55,0 +396,3,30,0 +396,4,30,0 +396,5,30,0 +396,6,60,1 +397,1,55,0 +397,2,75,0 +397,3,50,0 +397,4,40,0 +397,5,40,0 +397,6,80,2 +398,1,85,0 +398,2,120,3 +398,3,70,0 +398,4,50,0 +398,5,60,0 +398,6,100,0 +399,1,59,1 +399,2,45,0 +399,3,40,0 +399,4,35,0 +399,5,40,0 +399,6,31,0 +400,1,79,0 +400,2,85,2 +400,3,60,0 +400,4,55,0 +400,5,60,0 +400,6,71,0 +401,1,37,0 +401,2,25,0 +401,3,41,1 +401,4,25,0 +401,5,41,0 +401,6,25,0 +402,1,77,0 +402,2,85,2 +402,3,51,0 +402,4,55,0 +402,5,51,0 +402,6,65,0 +403,1,45,0 +403,2,65,1 +403,3,34,0 +403,4,40,0 +403,5,34,0 +403,6,45,0 +404,1,60,0 +404,2,85,2 +404,3,49,0 +404,4,60,0 +404,5,49,0 +404,6,60,0 +405,1,80,0 +405,2,120,3 +405,3,79,0 +405,4,95,0 +405,5,79,0 +405,6,70,0 +406,1,40,0 +406,2,30,0 +406,3,35,0 +406,4,50,1 +406,5,70,0 +406,6,55,0 +407,1,60,0 +407,2,70,0 +407,3,65,0 +407,4,125,3 +407,5,105,0 +407,6,90,0 +408,1,67,0 +408,2,125,1 +408,3,40,0 +408,4,30,0 +408,5,30,0 +408,6,58,0 +409,1,97,0 +409,2,165,2 +409,3,60,0 +409,4,65,0 +409,5,50,0 +409,6,58,0 +410,1,30,0 +410,2,42,0 +410,3,118,1 +410,4,42,0 +410,5,88,0 +410,6,30,0 +411,1,60,0 +411,2,52,0 +411,3,168,2 +411,4,47,0 +411,5,138,0 +411,6,30,0 +412,1,40,0 +412,2,29,0 +412,3,45,0 +412,4,29,0 +412,5,45,1 +412,6,36,0 +413,1,60,0 +413,2,59,0 +413,3,85,0 +413,4,79,0 +413,5,105,2 +413,6,36,0 +414,1,70,0 +414,2,94,1 +414,3,50,0 +414,4,94,1 +414,5,50,0 +414,6,66,0 +415,1,30,0 +415,2,30,0 +415,3,42,0 +415,4,30,0 +415,5,42,0 +415,6,70,1 +416,1,70,0 +416,2,80,0 +416,3,102,1 +416,4,80,0 +416,5,102,1 +416,6,40,0 +417,1,60,0 +417,2,45,0 +417,3,70,0 +417,4,45,0 +417,5,90,0 +417,6,95,1 +418,1,55,0 +418,2,65,0 +418,3,35,0 +418,4,60,0 +418,5,30,0 +418,6,85,1 +419,1,85,0 +419,2,105,0 +419,3,55,0 +419,4,85,0 +419,5,50,0 +419,6,115,2 +420,1,45,0 +420,2,35,0 +420,3,45,0 +420,4,62,1 +420,5,53,0 +420,6,35,0 +421,1,70,0 +421,2,60,0 +421,3,70,0 +421,4,87,2 +421,5,78,0 +421,6,85,0 +422,1,76,1 +422,2,48,0 +422,3,48,0 +422,4,57,0 +422,5,62,0 +422,6,34,0 +423,1,111,2 +423,2,83,0 +423,3,68,0 +423,4,92,0 +423,5,82,0 +423,6,39,0 +424,1,75,0 +424,2,100,0 +424,3,66,0 +424,4,60,0 +424,5,66,0 +424,6,115,2 +425,1,90,1 +425,2,50,0 +425,3,34,0 +425,4,60,0 +425,5,44,0 +425,6,70,0 +426,1,150,2 +426,2,80,0 +426,3,44,0 +426,4,90,0 +426,5,54,0 +426,6,80,0 +427,1,55,0 +427,2,66,0 +427,3,44,0 +427,4,44,0 +427,5,56,0 +427,6,85,1 +428,1,65,0 +428,2,76,0 +428,3,84,0 +428,4,54,0 +428,5,96,0 +428,6,105,2 +429,1,60,0 +429,2,60,0 +429,3,60,0 +429,4,105,1 +429,5,105,1 +429,6,105,0 +430,1,100,0 +430,2,125,2 +430,3,52,0 +430,4,105,0 +430,5,52,0 +430,6,71,0 +431,1,49,0 +431,2,55,0 +431,3,42,0 +431,4,42,0 +431,5,37,0 +431,6,85,1 +432,1,71,0 +432,2,82,0 +432,3,64,0 +432,4,64,0 +432,5,59,0 +432,6,112,2 +433,1,45,0 +433,2,30,0 +433,3,50,0 +433,4,65,1 +433,5,50,0 +433,6,45,0 +434,1,63,0 +434,2,63,0 +434,3,47,0 +434,4,41,0 +434,5,41,0 +434,6,74,1 +435,1,103,2 +435,2,93,0 +435,3,67,0 +435,4,71,0 +435,5,61,0 +435,6,84,0 +436,1,57,0 +436,2,24,0 +436,3,86,1 +436,4,24,0 +436,5,86,0 +436,6,23,0 +437,1,67,0 +437,2,89,0 +437,3,116,1 +437,4,79,0 +437,5,116,1 +437,6,33,0 +438,1,50,0 +438,2,80,0 +438,3,95,1 +438,4,10,0 +438,5,45,0 +438,6,10,0 +439,1,20,0 +439,2,25,0 +439,3,45,0 +439,4,70,0 +439,5,90,1 +439,6,60,0 +440,1,100,1 +440,2,5,0 +440,3,5,0 +440,4,15,0 +440,5,65,0 +440,6,30,0 +441,1,76,0 +441,2,65,1 +441,3,45,0 +441,4,92,0 +441,5,42,0 +441,6,91,0 +442,1,50,0 +442,2,92,0 +442,3,108,1 +442,4,92,0 +442,5,108,1 +442,6,35,0 +443,1,58,0 +443,2,70,1 +443,3,45,0 +443,4,40,0 +443,5,45,0 +443,6,42,0 +444,1,68,0 +444,2,90,2 +444,3,65,0 +444,4,50,0 +444,5,55,0 +444,6,82,0 +445,1,108,0 +445,2,130,3 +445,3,95,0 +445,4,80,0 +445,5,85,0 +445,6,102,0 +446,1,135,1 +446,2,85,0 +446,3,40,0 +446,4,40,0 +446,5,85,0 +446,6,5,0 +447,1,40,0 +447,2,70,1 +447,3,40,0 +447,4,35,0 +447,5,40,0 +447,6,60,0 +448,1,70,0 +448,2,110,1 +448,3,70,0 +448,4,115,1 +448,5,70,0 +448,6,90,0 +449,1,68,0 +449,2,72,0 +449,3,78,1 +449,4,38,0 +449,5,42,0 +449,6,32,0 +450,1,108,0 +450,2,112,0 +450,3,118,2 +450,4,68,0 +450,5,72,0 +450,6,47,0 +451,1,40,0 +451,2,50,0 +451,3,90,1 +451,4,30,0 +451,5,55,0 +451,6,65,0 +452,1,70,0 +452,2,90,0 +452,3,110,2 +452,4,60,0 +452,5,75,0 +452,6,95,0 +453,1,48,0 +453,2,61,1 +453,3,40,0 +453,4,61,0 +453,5,40,0 +453,6,50,0 +454,1,83,0 +454,2,106,2 +454,3,65,0 +454,4,86,0 +454,5,65,0 +454,6,85,0 +455,1,74,0 +455,2,100,2 +455,3,72,0 +455,4,90,0 +455,5,72,0 +455,6,46,0 +456,1,49,0 +456,2,49,0 +456,3,56,0 +456,4,49,0 +456,5,61,0 +456,6,66,1 +457,1,69,0 +457,2,69,0 +457,3,76,0 +457,4,69,0 +457,5,86,0 +457,6,91,2 +458,1,45,0 +458,2,20,0 +458,3,50,0 +458,4,60,0 +458,5,120,1 +458,6,50,0 +459,1,60,0 +459,2,62,1 +459,3,50,0 +459,4,62,0 +459,5,60,0 +459,6,40,0 +460,1,90,0 +460,2,92,1 +460,3,75,0 +460,4,92,1 +460,5,85,0 +460,6,60,0 +461,1,70,0 +461,2,120,1 +461,3,65,0 +461,4,45,0 +461,5,85,0 +461,6,125,1 +462,1,70,0 +462,2,70,0 +462,3,115,0 +462,4,130,3 +462,5,90,0 +462,6,60,0 +463,1,110,3 +463,2,85,0 +463,3,95,0 +463,4,80,0 +463,5,95,0 +463,6,50,0 +464,1,115,0 +464,2,140,3 +464,3,130,0 +464,4,55,0 +464,5,55,0 +464,6,40,0 +465,1,100,0 +465,2,100,0 +465,3,125,2 +465,4,110,0 +465,5,50,0 +465,6,50,0 +466,1,75,0 +466,2,123,3 +466,3,67,0 +466,4,95,0 +466,5,85,0 +466,6,95,0 +467,1,75,0 +467,2,95,0 +467,3,67,0 +467,4,125,3 +467,5,95,0 +467,6,83,0 +468,1,85,0 +468,2,50,0 +468,3,95,0 +468,4,120,2 +468,5,115,1 +468,6,80,0 +469,1,86,0 +469,2,76,2 +469,3,86,0 +469,4,116,0 +469,5,56,0 +469,6,95,0 +470,1,65,0 +470,2,110,0 +470,3,130,2 +470,4,60,0 +470,5,65,0 +470,6,95,0 +471,1,65,0 +471,2,60,0 +471,3,110,0 +471,4,130,2 +471,5,95,0 +471,6,65,0 +472,1,75,0 +472,2,95,0 +472,3,125,2 +472,4,45,0 +472,5,75,0 +472,6,95,0 +473,1,110,0 +473,2,130,3 +473,3,80,0 +473,4,70,0 +473,5,60,0 +473,6,80,0 +474,1,85,0 +474,2,80,0 +474,3,70,0 +474,4,135,3 +474,5,75,0 +474,6,90,0 +475,1,68,0 +475,2,125,3 +475,3,65,0 +475,4,65,0 +475,5,115,0 +475,6,80,0 +476,1,60,0 +476,2,55,0 +476,3,145,1 +476,4,75,0 +476,5,150,2 +476,6,40,0 +477,1,45,0 +477,2,100,0 +477,3,135,1 +477,4,65,0 +477,5,135,2 +477,6,45,0 +478,1,70,0 +478,2,80,0 +478,3,70,0 +478,4,80,0 +478,5,70,0 +478,6,110,2 +479,1,50,0 +479,2,50,0 +479,3,77,0 +479,4,95,1 +479,5,77,0 +479,6,91,1 +480,1,75,0 +480,2,75,0 +480,3,130,2 +480,4,75,0 +480,5,130,1 +480,6,95,0 +481,1,80,0 +481,2,105,1 +481,3,105,0 +481,4,105,1 +481,5,105,1 +481,6,80,0 +482,1,75,0 +482,2,125,2 +482,3,70,0 +482,4,125,1 +482,5,70,0 +482,6,115,0 +483,1,100,0 +483,2,120,0 +483,3,120,0 +483,4,150,3 +483,5,100,0 +483,6,90,0 +484,1,90,0 +484,2,120,0 +484,3,100,0 +484,4,150,3 +484,5,120,0 +484,6,100,0 +485,1,91,0 +485,2,90,0 +485,3,106,0 +485,4,130,3 +485,5,106,0 +485,6,77,0 +486,1,110,0 +486,2,160,3 +486,3,110,0 +486,4,80,0 +486,5,110,0 +486,6,100,0 +487,1,150,3 +487,2,100,0 +487,3,120,0 +487,4,100,0 +487,5,120,0 +487,6,90,0 +488,1,120,0 +488,2,70,0 +488,3,120,0 +488,4,75,0 +488,5,130,3 +488,6,85,0 +489,1,80,1 +489,2,80,0 +489,3,80,0 +489,4,80,0 +489,5,80,0 +489,6,80,0 +490,1,100,3 +490,2,100,0 +490,3,100,0 +490,4,100,0 +490,5,100,0 +490,6,100,0 +491,1,70,0 +491,2,90,0 +491,3,90,0 +491,4,135,2 +491,5,90,0 +491,6,125,1 +492,1,100,3 +492,2,100,0 +492,3,100,0 +492,4,100,0 +492,5,100,0 +492,6,100,0 +493,1,120,3 +493,2,120,0 +493,3,120,0 +493,4,120,0 +493,5,120,0 +493,6,120,0 +494,1,100,3 +494,2,100,0 +494,3,100,0 +494,4,100,0 +494,5,100,0 +494,6,100,0 +495,1,45,0 +495,2,45,0 +495,3,55,0 +495,4,45,0 +495,5,55,0 +495,6,63,1 +496,1,60,0 +496,2,60,0 +496,3,75,0 +496,4,60,0 +496,5,75,0 +496,6,83,2 +497,1,75,0 +497,2,75,0 +497,3,95,0 +497,4,75,0 +497,5,95,0 +497,6,113,3 +498,1,65,1 +498,2,63,0 +498,3,45,0 +498,4,45,0 +498,5,45,0 +498,6,45,0 +499,1,90,0 +499,2,93,2 +499,3,55,0 +499,4,70,0 +499,5,55,0 +499,6,55,0 +500,1,110,0 +500,2,123,3 +500,3,65,0 +500,4,100,0 +500,5,65,0 +500,6,65,0 +501,1,55,0 +501,2,55,0 +501,3,45,0 +501,4,63,1 +501,5,45,0 +501,6,45,0 +502,1,75,0 +502,2,75,0 +502,3,60,0 +502,4,83,2 +502,5,60,0 +502,6,60,0 +503,1,95,0 +503,2,100,0 +503,3,85,0 +503,4,108,3 +503,5,70,0 +503,6,70,0 +504,1,45,0 +504,2,55,1 +504,3,39,0 +504,4,35,0 +504,5,39,0 +504,6,42,0 +505,1,60,0 +505,2,85,2 +505,3,69,0 +505,4,60,0 +505,5,69,0 +505,6,77,0 +506,1,45,0 +506,2,60,1 +506,3,45,0 +506,4,25,0 +506,5,45,0 +506,6,55,0 +507,1,65,0 +507,2,80,2 +507,3,65,0 +507,4,35,0 +507,5,65,0 +507,6,60,0 +508,1,85,0 +508,2,110,3 +508,3,90,0 +508,4,45,0 +508,5,90,0 +508,6,80,0 +509,1,41,0 +509,2,50,0 +509,3,37,0 +509,4,50,0 +509,5,37,0 +509,6,66,1 +510,1,64,0 +510,2,88,0 +510,3,50,0 +510,4,88,0 +510,5,50,0 +510,6,106,2 +511,1,50,0 +511,2,53,0 +511,3,48,0 +511,4,53,0 +511,5,48,0 +511,6,64,1 +512,1,75,0 +512,2,98,0 +512,3,63,0 +512,4,98,0 +512,5,63,0 +512,6,101,2 +513,1,50,0 +513,2,53,0 +513,3,48,0 +513,4,53,0 +513,5,48,0 +513,6,64,1 +514,1,75,0 +514,2,98,0 +514,3,63,0 +514,4,98,0 +514,5,63,0 +514,6,101,2 +515,1,50,0 +515,2,53,0 +515,3,48,0 +515,4,53,0 +515,5,48,0 +515,6,64,1 +516,1,75,0 +516,2,98,0 +516,3,63,0 +516,4,98,0 +516,5,63,0 +516,6,101,2 +517,1,76,1 +517,2,25,0 +517,3,45,0 +517,4,67,0 +517,5,55,0 +517,6,24,0 +518,1,116,2 +518,2,55,0 +518,3,85,0 +518,4,107,0 +518,5,95,0 +518,6,29,0 +519,1,50,0 +519,2,55,1 +519,3,50,0 +519,4,36,0 +519,5,30,0 +519,6,43,0 +520,1,62,0 +520,2,77,2 +520,3,62,0 +520,4,50,0 +520,5,42,0 +520,6,65,0 +521,1,80,0 +521,2,115,3 +521,3,80,0 +521,4,65,0 +521,5,55,0 +521,6,93,0 +522,1,45,0 +522,2,60,0 +522,3,32,0 +522,4,50,0 +522,5,32,0 +522,6,76,1 +523,1,75,0 +523,2,100,0 +523,3,63,0 +523,4,80,0 +523,5,63,0 +523,6,116,2 +524,1,55,0 +524,2,75,0 +524,3,85,1 +524,4,25,0 +524,5,25,0 +524,6,15,0 +525,1,70,0 +525,2,105,1 +525,3,105,1 +525,4,50,0 +525,5,40,0 +525,6,20,0 +526,1,85,0 +526,2,135,3 +526,3,130,0 +526,4,60,0 +526,5,80,0 +526,6,25,0 +527,1,65,0 +527,2,45,0 +527,3,43,0 +527,4,55,0 +527,5,43,0 +527,6,72,1 +528,1,67,0 +528,2,57,0 +528,3,55,0 +528,4,77,0 +528,5,55,0 +528,6,114,2 +529,1,60,0 +529,2,85,1 +529,3,40,0 +529,4,30,0 +529,5,45,0 +529,6,68,0 +530,1,110,0 +530,2,135,2 +530,3,60,0 +530,4,50,0 +530,5,65,0 +530,6,88,0 +531,1,103,2 +531,2,60,0 +531,3,86,0 +531,4,60,0 +531,5,86,0 +531,6,50,0 +532,1,75,0 +532,2,80,1 +532,3,55,0 +532,4,25,0 +532,5,35,0 +532,6,35,0 +533,1,85,0 +533,2,105,2 +533,3,85,0 +533,4,40,0 +533,5,50,0 +533,6,40,0 +534,1,105,0 +534,2,140,3 +534,3,95,0 +534,4,55,0 +534,5,65,0 +534,6,45,0 +535,1,50,0 +535,2,50,0 +535,3,40,0 +535,4,50,0 +535,5,40,0 +535,6,64,1 +536,1,75,2 +536,2,65,0 +536,3,55,0 +536,4,65,0 +536,5,55,0 +536,6,69,0 +537,1,105,3 +537,2,95,0 +537,3,75,0 +537,4,85,0 +537,5,75,0 +537,6,74,0 +538,1,120,2 +538,2,100,0 +538,3,85,0 +538,4,30,0 +538,5,85,0 +538,6,45,0 +539,1,75,0 +539,2,125,2 +539,3,75,0 +539,4,30,0 +539,5,75,0 +539,6,85,0 +540,1,45,0 +540,2,53,0 +540,3,70,1 +540,4,40,0 +540,5,60,0 +540,6,42,0 +541,1,55,0 +541,2,63,0 +541,3,90,2 +541,4,50,0 +541,5,80,0 +541,6,42,0 +542,1,75,0 +542,2,103,3 +542,3,80,0 +542,4,70,0 +542,5,80,0 +542,6,92,0 +543,1,30,0 +543,2,45,0 +543,3,59,1 +543,4,30,0 +543,5,39,0 +543,6,57,0 +544,1,40,0 +544,2,55,0 +544,3,99,2 +544,4,40,0 +544,5,79,0 +544,6,47,0 +545,1,60,0 +545,2,100,0 +545,3,89,0 +545,4,55,0 +545,5,69,0 +545,6,112,3 +546,1,40,0 +546,2,27,0 +546,3,60,0 +546,4,37,0 +546,5,50,0 +546,6,66,1 +547,1,60,0 +547,2,67,0 +547,3,85,0 +547,4,77,0 +547,5,75,0 +547,6,116,2 +548,1,45,0 +548,2,35,0 +548,3,50,0 +548,4,70,1 +548,5,50,0 +548,6,30,0 +549,1,70,0 +549,2,60,0 +549,3,75,0 +549,4,110,2 +549,5,75,0 +549,6,90,0 +550,1,70,0 +550,2,92,0 +550,3,65,0 +550,4,80,0 +550,5,55,0 +550,6,98,2 +551,1,50,0 +551,2,72,1 +551,3,35,0 +551,4,35,0 +551,5,35,0 +551,6,65,0 +552,1,60,0 +552,2,82,2 +552,3,45,0 +552,4,45,0 +552,5,45,0 +552,6,74,0 +553,1,95,0 +553,2,117,3 +553,3,80,0 +553,4,65,0 +553,5,70,0 +553,6,92,0 +554,1,70,0 +554,2,90,1 +554,3,45,0 +554,4,15,0 +554,5,45,0 +554,6,50,0 +555,1,105,0 +555,2,140,2 +555,3,55,0 +555,4,30,0 +555,5,55,0 +555,6,95,0 +556,1,75,0 +556,2,86,0 +556,3,67,0 +556,4,106,2 +556,5,67,0 +556,6,60,0 +557,1,50,0 +557,2,65,0 +557,3,85,1 +557,4,35,0 +557,5,35,0 +557,6,55,0 +558,1,70,0 +558,2,105,0 +558,3,125,2 +558,4,65,0 +558,5,75,0 +558,6,45,0 +559,1,50,0 +559,2,75,1 +559,3,70,0 +559,4,35,0 +559,5,70,0 +559,6,48,0 +560,1,65,0 +560,2,90,0 +560,3,115,1 +560,4,45,0 +560,5,115,1 +560,6,58,0 +561,1,72,0 +561,2,58,0 +561,3,80,0 +561,4,103,2 +561,5,80,0 +561,6,97,0 +562,1,38,0 +562,2,30,0 +562,3,85,1 +562,4,55,0 +562,5,65,0 +562,6,30,0 +563,1,58,0 +563,2,50,0 +563,3,145,2 +563,4,95,0 +563,5,105,0 +563,6,30,0 +564,1,54,0 +564,2,78,0 +564,3,103,1 +564,4,53,0 +564,5,45,0 +564,6,22,0 +565,1,74,0 +565,2,108,0 +565,3,133,2 +565,4,83,0 +565,5,65,0 +565,6,32,0 +566,1,55,0 +566,2,112,1 +566,3,45,0 +566,4,74,0 +566,5,45,0 +566,6,70,0 +567,1,75,0 +567,2,140,2 +567,3,65,0 +567,4,112,0 +567,5,65,0 +567,6,110,0 +568,1,50,0 +568,2,50,0 +568,3,62,0 +568,4,40,0 +568,5,62,0 +568,6,65,1 +569,1,80,0 +569,2,95,2 +569,3,82,0 +569,4,60,0 +569,5,82,0 +569,6,75,0 +570,1,40,0 +570,2,65,0 +570,3,40,0 +570,4,80,1 +570,5,40,0 +570,6,65,0 +571,1,60,0 +571,2,105,0 +571,3,60,0 +571,4,120,2 +571,5,60,0 +571,6,105,0 +572,1,55,0 +572,2,50,0 +572,3,40,0 +572,4,40,0 +572,5,40,0 +572,6,75,1 +573,1,75,0 +573,2,95,0 +573,3,60,0 +573,4,65,0 +573,5,60,0 +573,6,115,2 +574,1,45,0 +574,2,30,0 +574,3,50,0 +574,4,55,0 +574,5,65,1 +574,6,45,0 +575,1,60,0 +575,2,45,0 +575,3,70,0 +575,4,75,0 +575,5,85,2 +575,6,55,0 +576,1,70,0 +576,2,55,0 +576,3,95,0 +576,4,95,0 +576,5,110,3 +576,6,65,0 +577,1,45,0 +577,2,30,0 +577,3,40,0 +577,4,105,1 +577,5,50,0 +577,6,20,0 +578,1,65,0 +578,2,40,0 +578,3,50,0 +578,4,125,2 +578,5,60,0 +578,6,30,0 +579,1,110,0 +579,2,65,0 +579,3,75,0 +579,4,125,3 +579,5,85,0 +579,6,30,0 +580,1,62,1 +580,2,44,0 +580,3,50,0 +580,4,44,0 +580,5,50,0 +580,6,55,0 +581,1,75,0 +581,2,87,0 +581,3,63,0 +581,4,87,0 +581,5,63,0 +581,6,98,2 +582,1,36,0 +582,2,50,0 +582,3,50,0 +582,4,65,1 +582,5,60,0 +582,6,44,0 +583,1,51,0 +583,2,65,0 +583,3,65,0 +583,4,80,2 +583,5,75,0 +583,6,59,0 +584,1,71,0 +584,2,95,0 +584,3,85,0 +584,4,110,3 +584,5,95,0 +584,6,79,0 +585,1,60,0 +585,2,60,0 +585,3,50,0 +585,4,40,0 +585,5,50,0 +585,6,75,1 +586,1,80,0 +586,2,100,2 +586,3,70,0 +586,4,60,0 +586,5,70,0 +586,6,95,0 +587,1,55,0 +587,2,75,0 +587,3,60,0 +587,4,75,0 +587,5,60,0 +587,6,103,2 +588,1,50,0 +588,2,75,1 +588,3,45,0 +588,4,40,0 +588,5,45,0 +588,6,60,0 +589,1,70,0 +589,2,135,2 +589,3,105,0 +589,4,60,0 +589,5,105,0 +589,6,20,0 +590,1,69,1 +590,2,55,0 +590,3,45,0 +590,4,55,0 +590,5,55,0 +590,6,15,0 +591,1,114,2 +591,2,85,0 +591,3,70,0 +591,4,85,0 +591,5,80,0 +591,6,30,0 +592,1,55,0 +592,2,40,0 +592,3,50,0 +592,4,65,0 +592,5,85,1 +592,6,40,0 +593,1,100,0 +593,2,60,0 +593,3,70,0 +593,4,85,0 +593,5,105,2 +593,6,60,0 +594,1,165,2 +594,2,75,0 +594,3,80,0 +594,4,40,0 +594,5,45,0 +594,6,65,0 +595,1,50,0 +595,2,47,0 +595,3,50,0 +595,4,57,0 +595,5,50,0 +595,6,65,1 +596,1,70,0 +596,2,77,0 +596,3,60,0 +596,4,97,0 +596,5,60,0 +596,6,108,2 +597,1,44,0 +597,2,50,0 +597,3,91,1 +597,4,24,0 +597,5,86,0 +597,6,10,0 +598,1,74,0 +598,2,94,0 +598,3,131,2 +598,4,54,0 +598,5,116,0 +598,6,20,0 +599,1,40,0 +599,2,55,0 +599,3,70,1 +599,4,45,0 +599,5,60,0 +599,6,30,0 +600,1,60,0 +600,2,80,0 +600,3,95,2 +600,4,70,0 +600,5,85,0 +600,6,50,0 +601,1,60,0 +601,2,100,0 +601,3,115,3 +601,4,70,0 +601,5,85,0 +601,6,90,0 +602,1,35,0 +602,2,55,0 +602,3,40,0 +602,4,45,0 +602,5,40,0 +602,6,60,1 +603,1,65,0 +603,2,85,2 +603,3,70,0 +603,4,75,0 +603,5,70,0 +603,6,40,0 +604,1,85,0 +604,2,115,3 +604,3,80,0 +604,4,105,0 +604,5,80,0 +604,6,50,0 +605,1,55,0 +605,2,55,0 +605,3,55,0 +605,4,85,1 +605,5,55,0 +605,6,30,0 +606,1,75,0 +606,2,75,0 +606,3,75,0 +606,4,125,2 +606,5,95,0 +606,6,40,0 +607,1,50,0 +607,2,30,0 +607,3,55,0 +607,4,65,1 +607,5,55,0 +607,6,20,0 +608,1,60,0 +608,2,40,0 +608,3,60,0 +608,4,95,2 +608,5,60,0 +608,6,55,0 +609,1,60,0 +609,2,55,0 +609,3,90,0 +609,4,145,3 +609,5,90,0 +609,6,80,0 +610,1,46,0 +610,2,87,1 +610,3,60,0 +610,4,30,0 +610,5,40,0 +610,6,57,0 +611,1,66,0 +611,2,117,2 +611,3,70,0 +611,4,40,0 +611,5,50,0 +611,6,67,0 +612,1,76,0 +612,2,147,3 +612,3,90,0 +612,4,60,0 +612,5,70,0 +612,6,97,0 +613,1,55,0 +613,2,70,1 +613,3,40,0 +613,4,60,0 +613,5,40,0 +613,6,40,0 +614,1,95,0 +614,2,130,2 +614,3,80,0 +614,4,70,0 +614,5,80,0 +614,6,50,0 +615,1,80,0 +615,2,50,0 +615,3,50,0 +615,4,95,0 +615,5,135,2 +615,6,105,0 +616,1,50,0 +616,2,40,0 +616,3,85,1 +616,4,40,0 +616,5,65,0 +616,6,25,0 +617,1,80,0 +617,2,70,0 +617,3,40,0 +617,4,100,0 +617,5,60,0 +617,6,145,2 +618,1,109,2 +618,2,66,0 +618,3,84,0 +618,4,81,0 +618,5,99,0 +618,6,32,0 +619,1,45,0 +619,2,85,1 +619,3,50,0 +619,4,55,0 +619,5,50,0 +619,6,65,0 +620,1,65,0 +620,2,125,2 +620,3,60,0 +620,4,95,0 +620,5,60,0 +620,6,105,0 +621,1,77,0 +621,2,120,2 +621,3,90,0 +621,4,60,0 +621,5,90,0 +621,6,48,0 +622,1,59,0 +622,2,74,1 +622,3,50,0 +622,4,35,0 +622,5,50,0 +622,6,35,0 +623,1,89,0 +623,2,124,2 +623,3,80,0 +623,4,55,0 +623,5,80,0 +623,6,55,0 +624,1,45,0 +624,2,85,1 +624,3,70,0 +624,4,40,0 +624,5,40,0 +624,6,60,0 +625,1,65,0 +625,2,125,2 +625,3,100,0 +625,4,60,0 +625,5,70,0 +625,6,70,0 +626,1,95,0 +626,2,110,2 +626,3,95,0 +626,4,40,0 +626,5,95,0 +626,6,55,0 +627,1,70,0 +627,2,83,1 +627,3,50,0 +627,4,37,0 +627,5,50,0 +627,6,60,0 +628,1,100,0 +628,2,123,2 +628,3,75,0 +628,4,57,0 +628,5,75,0 +628,6,80,0 +629,1,70,0 +629,2,55,0 +629,3,75,1 +629,4,45,0 +629,5,65,0 +629,6,60,0 +630,1,110,0 +630,2,65,0 +630,3,105,0 +630,4,55,2 +630,5,95,0 +630,6,80,0 +631,1,85,0 +631,2,97,0 +631,3,66,0 +631,4,105,2 +631,5,66,0 +631,6,65,0 +632,1,58,0 +632,2,109,0 +632,3,112,2 +632,4,48,0 +632,5,48,0 +632,6,109,0 +633,1,52,0 +633,2,65,1 +633,3,50,0 +633,4,45,0 +633,5,50,0 +633,6,38,0 +634,1,72,0 +634,2,85,2 +634,3,70,0 +634,4,65,0 +634,5,70,0 +634,6,58,0 +635,1,92,0 +635,2,105,0 +635,3,90,0 +635,4,125,3 +635,5,90,0 +635,6,98,0 +636,1,55,0 +636,2,85,1 +636,3,55,0 +636,4,50,0 +636,5,55,0 +636,6,60,0 +637,1,85,0 +637,2,60,0 +637,3,65,0 +637,4,135,3 +637,5,105,0 +637,6,100,0 +638,1,91,0 +638,2,90,0 +638,3,129,3 +638,4,90,0 +638,5,72,0 +638,6,108,0 +639,1,91,0 +639,2,129,3 +639,3,90,0 +639,4,72,0 +639,5,90,0 +639,6,108,0 +640,1,91,0 +640,2,90,0 +640,3,72,0 +640,4,90,0 +640,5,129,3 +640,6,108,0 +641,1,79,0 +641,2,115,3 +641,3,70,0 +641,4,125,0 +641,5,80,0 +641,6,111,0 +642,1,79,0 +642,2,115,3 +642,3,70,0 +642,4,125,0 +642,5,80,0 +642,6,111,0 +643,1,100,0 +643,2,120,0 +643,3,100,0 +643,4,150,3 +643,5,120,0 +643,6,90,0 +644,1,100,0 +644,2,150,3 +644,3,120,0 +644,4,120,0 +644,5,100,0 +644,6,90,0 +645,1,89,0 +645,2,125,0 +645,3,90,0 +645,4,115,3 +645,5,80,0 +645,6,101,0 +646,1,125,1 +646,2,130,1 +646,3,90,0 +646,4,130,1 +646,5,90,0 +646,6,95,0 +647,1,91,0 +647,2,72,0 +647,3,90,0 +647,4,129,3 +647,5,90,0 +647,6,108,0 +648,1,100,0 +648,2,77,0 +648,3,77,0 +648,4,128,1 +648,5,128,1 +648,6,90,1 +649,1,71,0 +649,2,120,1 +649,3,95,0 +649,4,120,1 +649,5,95,0 +649,6,99,1 +650,1,56,0 +650,2,61,0 +650,3,65,1 +650,4,48,0 +650,5,45,0 +650,6,38,0 +651,1,61,0 +651,2,78,0 +651,3,95,2 +651,4,56,0 +651,5,58,0 +651,6,57,0 +652,1,88,0 +652,2,107,0 +652,3,122,3 +652,4,74,0 +652,5,75,0 +652,6,64,0 +653,1,40,0 +653,2,45,0 +653,3,40,0 +653,4,62,1 +653,5,60,0 +653,6,60,0 +654,1,59,0 +654,2,59,0 +654,3,58,0 +654,4,90,2 +654,5,70,0 +654,6,73,0 +655,1,75,0 +655,2,69,0 +655,3,72,0 +655,4,114,3 +655,5,100,0 +655,6,104,0 +656,1,41,0 +656,2,56,0 +656,3,40,0 +656,4,62,0 +656,5,44,0 +656,6,71,1 +657,1,54,0 +657,2,63,0 +657,3,52,0 +657,4,83,0 +657,5,56,0 +657,6,97,2 +658,1,72,0 +658,2,95,0 +658,3,67,0 +658,4,103,0 +658,5,71,0 +658,6,122,3 +659,1,38,0 +659,2,36,0 +659,3,38,0 +659,4,32,0 +659,5,36,0 +659,6,57,1 +660,1,85,2 +660,2,56,0 +660,3,77,0 +660,4,50,0 +660,5,77,0 +660,6,78,0 +661,1,45,0 +661,2,50,0 +661,3,43,0 +661,4,40,0 +661,5,38,0 +661,6,62,1 +662,1,62,0 +662,2,73,0 +662,3,55,0 +662,4,56,0 +662,5,52,0 +662,6,84,2 +663,1,78,0 +663,2,81,0 +663,3,71,0 +663,4,74,0 +663,5,69,0 +663,6,126,3 +664,1,38,0 +664,2,35,0 +664,3,40,1 +664,4,27,0 +664,5,25,0 +664,6,35,0 +665,1,45,0 +665,2,22,0 +665,3,60,2 +665,4,27,0 +665,5,30,0 +665,6,29,0 +666,1,80,1 +666,2,52,0 +666,3,50,0 +666,4,90,1 +666,5,50,0 +666,6,89,1 +667,1,62,0 +667,2,50,0 +667,3,58,0 +667,4,73,1 +667,5,54,0 +667,6,72,0 +668,1,86,0 +668,2,68,0 +668,3,72,0 +668,4,109,2 +668,5,66,0 +668,6,106,0 +669,1,44,0 +669,2,38,0 +669,3,39,0 +669,4,61,0 +669,5,79,1 +669,6,42,0 +670,1,54,0 +670,2,45,0 +670,3,47,0 +670,4,75,0 +670,5,98,2 +670,6,52,0 +671,1,78,0 +671,2,65,0 +671,3,68,0 +671,4,112,0 +671,5,154,3 +671,6,75,0 +672,1,66,1 +672,2,65,0 +672,3,48,0 +672,4,62,0 +672,5,57,0 +672,6,52,0 +673,1,123,2 +673,2,100,0 +673,3,62,0 +673,4,97,0 +673,5,81,0 +673,6,68,0 +674,1,67,0 +674,2,82,1 +674,3,62,0 +674,4,46,0 +674,5,48,0 +674,6,43,0 +675,1,95,0 +675,2,124,2 +675,3,78,0 +675,4,69,0 +675,5,71,0 +675,6,58,0 +676,1,75,0 +676,2,80,0 +676,3,60,0 +676,4,65,0 +676,5,90,0 +676,6,102,1 +677,1,62,0 +677,2,48,0 +677,3,54,0 +677,4,63,0 +677,5,60,0 +677,6,68,1 +678,1,74,0 +678,2,48,0 +678,3,76,0 +678,4,83,0 +678,5,81,0 +678,6,104,2 +679,1,45,0 +679,2,80,0 +679,3,100,1 +679,4,35,0 +679,5,37,0 +679,6,28,0 +680,1,59,0 +680,2,110,0 +680,3,150,2 +680,4,45,0 +680,5,49,0 +680,6,35,0 +681,1,60,0 +681,2,50,0 +681,3,150,2 +681,4,50,0 +681,5,150,1 +681,6,60,0 +682,1,78,1 +682,2,52,0 +682,3,60,0 +682,4,63,0 +682,5,65,0 +682,6,23,0 +683,1,101,2 +683,2,72,0 +683,3,72,0 +683,4,99,0 +683,5,89,0 +683,6,29,0 +684,1,62,0 +684,2,48,0 +684,3,66,1 +684,4,59,0 +684,5,57,0 +684,6,49,0 +685,1,82,0 +685,2,80,0 +685,3,86,2 +685,4,85,0 +685,5,75,0 +685,6,72,0 +686,1,53,0 +686,2,54,1 +686,3,53,0 +686,4,37,0 +686,5,46,0 +686,6,45,0 +687,1,86,0 +687,2,92,2 +687,3,88,0 +687,4,68,0 +687,5,75,0 +687,6,73,0 +688,1,42,0 +688,2,52,1 +688,3,67,0 +688,4,39,0 +688,5,56,0 +688,6,50,0 +689,1,72,0 +689,2,105,2 +689,3,115,0 +689,4,54,0 +689,5,86,0 +689,6,68,0 +690,1,50,0 +690,2,60,0 +690,3,60,0 +690,4,60,0 +690,5,60,1 +690,6,30,0 +691,1,65,0 +691,2,75,0 +691,3,90,0 +691,4,97,0 +691,5,123,2 +691,6,44,0 +692,1,50,0 +692,2,53,0 +692,3,62,0 +692,4,58,1 +692,5,63,0 +692,6,44,0 +693,1,71,0 +693,2,73,0 +693,3,88,0 +693,4,120,2 +693,5,89,0 +693,6,59,0 +694,1,44,0 +694,2,38,0 +694,3,33,0 +694,4,61,0 +694,5,43,0 +694,6,70,1 +695,1,62,0 +695,2,55,0 +695,3,52,0 +695,4,109,1 +695,5,94,0 +695,6,109,1 +696,1,58,0 +696,2,89,1 +696,3,77,0 +696,4,45,0 +696,5,45,0 +696,6,48,0 +697,1,82,0 +697,2,121,2 +697,3,119,0 +697,4,69,0 +697,5,59,0 +697,6,71,0 +698,1,77,1 +698,2,59,0 +698,3,50,0 +698,4,67,0 +698,5,63,0 +698,6,46,0 +699,1,123,2 +699,2,77,0 +699,3,72,0 +699,4,99,0 +699,5,92,0 +699,6,58,0 +700,1,95,0 +700,2,65,0 +700,3,65,0 +700,4,110,0 +700,5,130,2 +700,6,60,0 +701,1,78,0 +701,2,92,2 +701,3,75,0 +701,4,74,0 +701,5,63,0 +701,6,118,0 +702,1,67,0 +702,2,58,0 +702,3,57,0 +702,4,81,0 +702,5,67,0 +702,6,101,2 +703,1,50,0 +703,2,50,0 +703,3,150,1 +703,4,50,0 +703,5,150,1 +703,6,50,0 +704,1,45,0 +704,2,50,0 +704,3,35,0 +704,4,55,0 +704,5,75,1 +704,6,40,0 +705,1,68,0 +705,2,75,0 +705,3,53,0 +705,4,83,0 +705,5,113,2 +705,6,60,0 +706,1,90,0 +706,2,100,0 +706,3,70,0 +706,4,110,0 +706,5,150,3 +706,6,80,0 +707,1,57,0 +707,2,80,0 +707,3,91,1 +707,4,80,0 +707,5,87,0 +707,6,75,0 +708,1,43,0 +708,2,70,1 +708,3,48,0 +708,4,50,0 +708,5,60,0 +708,6,38,0 +709,1,85,0 +709,2,110,2 +709,3,76,0 +709,4,65,0 +709,5,82,0 +709,6,56,0 +710,1,49,0 +710,2,66,0 +710,3,70,1 +710,4,44,0 +710,5,55,0 +710,6,51,0 +711,1,65,0 +711,2,90,0 +711,3,122,2 +711,4,58,0 +711,5,75,0 +711,6,84,0 +712,1,55,0 +712,2,69,0 +712,3,85,1 +712,4,32,0 +712,5,35,0 +712,6,28,0 +713,1,95,0 +713,2,117,0 +713,3,184,2 +713,4,44,0 +713,5,46,0 +713,6,28,0 +714,1,40,0 +714,2,30,0 +714,3,35,0 +714,4,45,0 +714,5,40,0 +714,6,55,1 +715,1,85,0 +715,2,70,0 +715,3,80,0 +715,4,97,0 +715,5,80,0 +715,6,123,2 +716,1,126,3 +716,2,131,0 +716,3,95,0 +716,4,131,0 +716,5,98,0 +716,6,99,0 +717,1,126,3 +717,2,131,0 +717,3,95,0 +717,4,131,0 +717,5,98,0 +717,6,99,0 +718,1,108,3 +718,2,100,0 +718,3,121,0 +718,4,81,0 +718,5,95,0 +718,6,95,0 +719,1,50,0 +719,2,100,0 +719,3,150,1 +719,4,100,0 +719,5,150,2 +719,6,50,0 +720,1,80,0 +720,2,110,0 +720,3,60,0 +720,4,150,3 +720,5,130,0 +720,6,70,0 +721,1,80,0 +721,2,110,0 +721,3,120,0 +721,4,130,3 +721,5,90,0 +721,6,70,0 +722,1,68,1 +722,2,55,0 +722,3,55,0 +722,4,50,0 +722,5,50,0 +722,6,42,0 +723,1,78,2 +723,2,75,0 +723,3,75,0 +723,4,70,0 +723,5,70,0 +723,6,52,0 +724,1,78,0 +724,2,107,3 +724,3,75,0 +724,4,100,0 +724,5,100,0 +724,6,70,0 +725,1,45,0 +725,2,65,0 +725,3,40,0 +725,4,60,0 +725,5,40,0 +725,6,70,1 +726,1,65,0 +726,2,85,0 +726,3,50,0 +726,4,80,0 +726,5,50,0 +726,6,90,2 +727,1,95,0 +727,2,115,3 +727,3,90,0 +727,4,80,0 +727,5,90,0 +727,6,60,0 +728,1,50,0 +728,2,54,0 +728,3,54,0 +728,4,66,1 +728,5,56,0 +728,6,40,0 +729,1,60,0 +729,2,69,0 +729,3,69,0 +729,4,91,2 +729,5,81,0 +729,6,50,0 +730,1,80,0 +730,2,74,0 +730,3,74,0 +730,4,126,3 +730,5,116,0 +730,6,60,0 +731,1,35,0 +731,2,75,1 +731,3,30,0 +731,4,30,0 +731,5,30,0 +731,6,65,0 +732,1,55,0 +732,2,85,2 +732,3,50,0 +732,4,40,0 +732,5,50,0 +732,6,75,0 +733,1,80,0 +733,2,120,3 +733,3,75,0 +733,4,75,0 +733,5,75,0 +733,6,60,0 +734,1,48,0 +734,2,70,1 +734,3,30,0 +734,4,30,0 +734,5,30,0 +734,6,45,0 +735,1,88,0 +735,2,110,2 +735,3,60,0 +735,4,55,0 +735,5,60,0 +735,6,45,0 +736,1,47,0 +736,2,62,1 +736,3,45,0 +736,4,55,0 +736,5,45,0 +736,6,46,0 +737,1,57,0 +737,2,82,0 +737,3,95,2 +737,4,55,0 +737,5,75,0 +737,6,36,0 +738,1,77,0 +738,2,70,0 +738,3,90,0 +738,4,145,3 +738,5,75,0 +738,6,43,0 +739,1,47,0 +739,2,82,1 +739,3,57,0 +739,4,42,0 +739,5,47,0 +739,6,63,0 +740,1,97,0 +740,2,132,2 +740,3,77,0 +740,4,62,0 +740,5,67,0 +740,6,43,0 +741,1,75,0 +741,2,70,0 +741,3,70,0 +741,4,98,2 +741,5,70,0 +741,6,93,0 +742,1,40,0 +742,2,45,0 +742,3,40,0 +742,4,55,0 +742,5,40,0 +742,6,84,1 +743,1,60,0 +743,2,55,0 +743,3,60,0 +743,4,95,0 +743,5,70,0 +743,6,124,2 +744,1,45,0 +744,2,65,1 +744,3,40,0 +744,4,30,0 +744,5,40,0 +744,6,60,0 +745,1,75,0 +745,2,115,2 +745,3,65,0 +745,4,55,0 +745,5,65,0 +745,6,112,0 +746,1,45,1 +746,2,20,0 +746,3,20,0 +746,4,25,0 +746,5,25,0 +746,6,40,0 +747,1,50,0 +747,2,53,0 +747,3,62,1 +747,4,43,0 +747,5,52,0 +747,6,45,0 +748,1,50,0 +748,2,63,0 +748,3,152,2 +748,4,53,0 +748,5,142,0 +748,6,35,0 +749,1,70,0 +749,2,100,1 +749,3,70,0 +749,4,45,0 +749,5,55,0 +749,6,45,0 +750,1,100,0 +750,2,125,2 +750,3,100,0 +750,4,55,0 +750,5,85,0 +750,6,35,0 +751,1,38,0 +751,2,40,0 +751,3,52,0 +751,4,40,0 +751,5,72,1 +751,6,27,0 +752,1,68,0 +752,2,70,0 +752,3,92,0 +752,4,50,0 +752,5,132,2 +752,6,42,0 +753,1,40,0 +753,2,55,1 +753,3,35,0 +753,4,50,0 +753,5,35,0 +753,6,35,0 +754,1,70,0 +754,2,105,2 +754,3,90,0 +754,4,80,0 +754,5,90,0 +754,6,45,0 +755,1,40,0 +755,2,35,0 +755,3,55,0 +755,4,65,0 +755,5,75,1 +755,6,15,0 +756,1,60,0 +756,2,45,0 +756,3,80,0 +756,4,90,0 +756,5,100,2 +756,6,30,0 +757,1,48,0 +757,2,44,0 +757,3,40,0 +757,4,71,0 +757,5,40,0 +757,6,77,1 +758,1,68,0 +758,2,64,0 +758,3,60,0 +758,4,111,0 +758,5,60,0 +758,6,117,2 +759,1,70,0 +759,2,75,1 +759,3,50,0 +759,4,45,0 +759,5,50,0 +759,6,50,0 +760,1,120,0 +760,2,125,2 +760,3,80,0 +760,4,55,0 +760,5,60,0 +760,6,60,0 +761,1,42,1 +761,2,30,0 +761,3,38,0 +761,4,30,0 +761,5,38,0 +761,6,32,0 +762,1,52,0 +762,2,40,0 +762,3,48,0 +762,4,40,0 +762,5,48,0 +762,6,62,2 +763,1,72,0 +763,2,120,3 +763,3,98,0 +763,4,50,0 +763,5,98,0 +763,6,72,0 +764,1,51,0 +764,2,52,0 +764,3,90,0 +764,4,82,0 +764,5,110,2 +764,6,100,0 +765,1,90,0 +765,2,60,0 +765,3,80,0 +765,4,90,0 +765,5,110,2 +765,6,60,0 +766,1,100,0 +766,2,120,2 +766,3,90,0 +766,4,40,0 +766,5,60,0 +766,6,80,0 +767,1,25,0 +767,2,35,0 +767,3,40,0 +767,4,20,0 +767,5,30,0 +767,6,80,1 +768,1,75,0 +768,2,125,0 +768,3,140,2 +768,4,60,0 +768,5,90,0 +768,6,40,0 +769,1,55,0 +769,2,55,0 +769,3,80,1 +769,4,70,0 +769,5,45,0 +769,6,15,0 +770,1,85,0 +770,2,75,0 +770,3,110,2 +770,4,100,0 +770,5,75,0 +770,6,35,0 +771,1,55,0 +771,2,60,0 +771,3,130,0 +771,4,30,0 +771,5,130,2 +771,6,5,0 +772,1,95,2 +772,2,95,0 +772,3,95,0 +772,4,95,0 +772,5,95,0 +772,6,59,0 +773,1,95,3 +773,2,95,0 +773,3,95,0 +773,4,95,0 +773,5,95,0 +773,6,95,0 +774,1,60,0 +774,2,60,0 +774,3,100,1 +774,4,60,0 +774,5,100,1 +774,6,60,0 +775,1,65,0 +775,2,115,2 +775,3,65,0 +775,4,75,0 +775,5,95,0 +775,6,65,0 +776,1,60,0 +776,2,78,0 +776,3,135,2 +776,4,91,0 +776,5,85,0 +776,6,36,0 +777,1,65,0 +777,2,98,2 +777,3,63,0 +777,4,40,0 +777,5,73,0 +777,6,96,0 +778,1,55,0 +778,2,90,0 +778,3,80,0 +778,4,50,0 +778,5,105,2 +778,6,96,0 +779,1,68,0 +779,2,105,2 +779,3,70,0 +779,4,70,0 +779,5,70,0 +779,6,92,0 +780,1,78,0 +780,2,60,0 +780,3,85,0 +780,4,135,2 +780,5,91,0 +780,6,36,0 +781,1,70,0 +781,2,131,2 +781,3,100,0 +781,4,86,0 +781,5,90,0 +781,6,40,0 +782,1,45,0 +782,2,55,0 +782,3,65,1 +782,4,45,0 +782,5,45,0 +782,6,45,0 +783,1,55,0 +783,2,75,0 +783,3,90,2 +783,4,65,0 +783,5,70,0 +783,6,65,0 +784,1,75,0 +784,2,110,0 +784,3,125,3 +784,4,100,0 +784,5,105,0 +784,6,85,0 +785,1,70,0 +785,2,115,0 +785,3,85,0 +785,4,95,0 +785,5,75,0 +785,6,130,3 +786,1,70,0 +786,2,85,0 +786,3,75,0 +786,4,130,3 +786,5,115,0 +786,6,95,0 +787,1,70,0 +787,2,130,3 +787,3,115,0 +787,4,85,0 +787,5,95,0 +787,6,75,0 +788,1,70,0 +788,2,75,0 +788,3,115,0 +788,4,95,0 +788,5,130,3 +788,6,85,0 +789,1,43,1 +789,2,29,0 +789,3,31,0 +789,4,29,0 +789,5,31,0 +789,6,37,0 +790,1,43,0 +790,2,29,0 +790,3,131,1 +790,4,29,0 +790,5,131,1 +790,6,37,0 +791,1,137,0 +791,2,137,3 +791,3,107,0 +791,4,113,0 +791,5,89,0 +791,6,97,0 +792,1,137,0 +792,2,113,0 +792,3,89,0 +792,4,137,3 +792,5,107,0 +792,6,97,0 +793,1,109,0 +793,2,53,0 +793,3,47,0 +793,4,127,0 +793,5,131,3 +793,6,103,0 +794,1,107,0 +794,2,139,1 +794,3,139,2 +794,4,53,0 +794,5,53,0 +794,6,79,0 +795,1,71,0 +795,2,137,0 +795,3,37,0 +795,4,137,0 +795,5,37,0 +795,6,151,3 +796,1,83,0 +796,2,89,0 +796,3,71,0 +796,4,173,3 +796,5,71,0 +796,6,83,0 +797,1,97,0 +797,2,101,1 +797,3,103,1 +797,4,107,1 +797,5,101,0 +797,6,61,0 +798,1,59,0 +798,2,181,3 +798,3,131,0 +798,4,59,0 +798,5,31,0 +798,6,109,0 +799,1,223,3 +799,2,101,0 +799,3,53,0 +799,4,97,0 +799,5,53,0 +799,6,43,0 +800,1,97,0 +800,2,107,1 +800,3,101,0 +800,4,127,2 +800,5,89,0 +800,6,79,0 +801,1,80,0 +801,2,95,0 +801,3,115,0 +801,4,130,3 +801,5,115,0 +801,6,65,0 +802,1,90,0 +802,2,125,2 +802,3,80,0 +802,4,90,0 +802,5,90,0 +802,6,125,1 +803,1,67,0 +803,2,73,0 +803,3,67,0 +803,4,73,0 +803,5,67,0 +803,6,73,1 +804,1,73,0 +804,2,73,0 +804,3,73,0 +804,4,127,3 +804,5,73,0 +804,6,121,0 +805,1,61,0 +805,2,131,0 +805,3,211,3 +805,4,53,0 +805,5,101,0 +805,6,13,0 +806,1,53,0 +806,2,127,0 +806,3,53,0 +806,4,151,3 +806,5,79,0 +806,6,107,0 +807,1,88,0 +807,2,112,0 +807,3,75,0 +807,4,102,0 +807,5,80,0 +807,6,143,3 +10001,1,50,0 +10001,2,180,2 +10001,3,20,0 +10001,4,180,1 +10001,5,20,0 +10001,6,150,0 +10002,1,50,0 +10002,2,70,0 +10002,3,160,2 +10002,4,70,0 +10002,5,160,1 +10002,6,90,0 +10003,1,50,0 +10003,2,95,0 +10003,3,90,0 +10003,4,95,0 +10003,5,90,0 +10003,6,180,3 +10004,1,60,0 +10004,2,79,0 +10004,3,105,2 +10004,4,59,0 +10004,5,85,0 +10004,6,36,0 +10005,1,60,0 +10005,2,69,0 +10005,3,95,1 +10005,4,69,0 +10005,5,95,1 +10005,6,36,0 +10006,1,100,0 +10006,2,103,0 +10006,3,75,0 +10006,4,120,0 +10006,5,75,0 +10006,6,127,3 +10007,1,150,3 +10007,2,120,0 +10007,3,100,0 +10007,4,120,0 +10007,5,100,0 +10007,6,90,0 +10008,1,50,0 +10008,2,65,0 +10008,3,107,0 +10008,4,105,1 +10008,5,107,0 +10008,6,86,1 +10009,1,50,0 +10009,2,65,0 +10009,3,107,0 +10009,4,105,1 +10009,5,107,0 +10009,6,86,1 +10010,1,50,0 +10010,2,65,0 +10010,3,107,0 +10010,4,105,1 +10010,5,107,0 +10010,6,86,1 +10011,1,50,0 +10011,2,65,0 +10011,3,107,0 +10011,4,105,1 +10011,5,107,0 +10011,6,86,1 +10012,1,50,0 +10012,2,65,0 +10012,3,107,0 +10012,4,105,1 +10012,5,107,0 +10012,6,86,1 +10013,1,70,1 +10013,2,70,0 +10013,3,70,0 +10013,4,70,0 +10013,5,70,0 +10013,6,70,0 +10014,1,70,1 +10014,2,70,0 +10014,3,70,0 +10014,4,70,0 +10014,5,70,0 +10014,6,70,0 +10015,1,70,1 +10015,2,70,0 +10015,3,70,0 +10015,4,70,0 +10015,5,70,0 +10015,6,70,0 +10016,1,70,0 +10016,2,92,0 +10016,3,65,0 +10016,4,80,0 +10016,5,55,0 +10016,6,98,2 +10017,1,105,0 +10017,2,30,0 +10017,3,105,0 +10017,4,140,2 +10017,5,105,0 +10017,6,55,0 +10018,1,100,0 +10018,2,128,1 +10018,3,90,1 +10018,4,77,0 +10018,5,77,0 +10018,6,128,1 +10019,1,79,0 +10019,2,100,0 +10019,3,80,0 +10019,4,110,0 +10019,5,90,0 +10019,6,121,3 +10020,1,79,0 +10020,2,105,0 +10020,3,70,0 +10020,4,145,3 +10020,5,80,0 +10020,6,101,0 +10021,1,89,0 +10021,2,145,3 +10021,3,90,0 +10021,4,105,0 +10021,5,80,0 +10021,6,91,0 +10022,1,125,0 +10022,2,170,3 +10022,3,100,0 +10022,4,120,0 +10022,5,90,0 +10022,6,95,0 +10023,1,125,0 +10023,2,120,0 +10023,3,90,0 +10023,4,170,3 +10023,5,100,0 +10023,6,95,0 +10024,1,91,0 +10024,2,72,0 +10024,3,90,0 +10024,4,129,3 +10024,5,90,0 +10024,6,108,0 +10025,1,74,0 +10025,2,48,0 +10025,3,76,0 +10025,4,83,0 +10025,5,81,0 +10025,6,104,2 +10026,1,60,0 +10026,2,150,2 +10026,3,50,0 +10026,4,150,1 +10026,5,50,0 +10026,6,60,0 +10027,1,44,0 +10027,2,66,0 +10027,3,70,1 +10027,4,44,0 +10027,5,55,0 +10027,6,56,0 +10028,1,54,0 +10028,2,66,0 +10028,3,70,1 +10028,4,44,0 +10028,5,55,0 +10028,6,46,0 +10029,1,59,0 +10029,2,66,0 +10029,3,70,1 +10029,4,44,0 +10029,5,55,0 +10029,6,41,0 +10030,1,55,0 +10030,2,85,0 +10030,3,122,2 +10030,4,58,0 +10030,5,75,0 +10030,6,99,0 +10031,1,75,0 +10031,2,95,0 +10031,3,122,2 +10031,4,58,0 +10031,5,75,0 +10031,6,69,0 +10032,1,85,0 +10032,2,100,0 +10032,3,122,2 +10032,4,58,0 +10032,5,75,0 +10032,6,54,0 +10033,1,80,0 +10033,2,100,0 +10033,3,123,0 +10033,4,122,2 +10033,5,120,1 +10033,6,80,0 +10034,1,78,0 +10034,2,130,0 +10034,3,111,0 +10034,4,130,3 +10034,5,85,0 +10034,6,100,0 +10035,1,78,0 +10035,2,104,0 +10035,3,78,0 +10035,4,159,3 +10035,5,115,0 +10035,6,100,0 +10036,1,79,0 +10036,2,103,0 +10036,3,120,0 +10036,4,135,0 +10036,5,115,3 +10036,6,78,0 +10037,1,55,0 +10037,2,50,0 +10037,3,65,0 +10037,4,175,3 +10037,5,105,0 +10037,6,150,0 +10038,1,60,0 +10038,2,65,0 +10038,3,80,0 +10038,4,170,3 +10038,5,95,0 +10038,6,130,0 +10039,1,105,2 +10039,2,125,0 +10039,3,100,0 +10039,4,60,0 +10039,5,100,0 +10039,6,100,0 +10040,1,65,0 +10040,2,155,2 +10040,3,120,0 +10040,4,65,0 +10040,5,90,0 +10040,6,105,0 +10041,1,95,0 +10041,2,155,2 +10041,3,109,0 +10041,4,70,0 +10041,5,130,0 +10041,6,81,0 +10042,1,80,0 +10042,2,135,0 +10042,3,85,0 +10042,4,70,0 +10042,5,95,0 +10042,6,150,2 +10043,1,106,0 +10043,2,190,0 +10043,3,100,0 +10043,4,154,3 +10043,5,100,0 +10043,6,130,0 +10044,1,106,0 +10044,2,150,0 +10044,3,70,0 +10044,4,194,3 +10044,5,120,0 +10044,6,140,0 +10045,1,90,0 +10045,2,95,0 +10045,3,105,0 +10045,4,165,3 +10045,5,110,0 +10045,6,45,0 +10046,1,70,0 +10046,2,150,2 +10046,3,140,0 +10046,4,65,0 +10046,5,100,0 +10046,6,75,0 +10047,1,80,0 +10047,2,185,2 +10047,3,115,0 +10047,4,40,0 +10047,5,105,0 +10047,6,75,0 +10048,1,75,0 +10048,2,90,0 +10048,3,90,0 +10048,4,140,2 +10048,5,90,0 +10048,6,115,0 +10049,1,100,0 +10049,2,164,3 +10049,3,150,0 +10049,4,95,0 +10049,5,120,0 +10049,6,71,0 +10050,1,80,0 +10050,2,160,3 +10050,3,80,0 +10050,4,130,0 +10050,5,80,0 +10050,6,100,0 +10051,1,68,0 +10051,2,85,0 +10051,3,65,0 +10051,4,165,3 +10051,5,135,0 +10051,6,100,0 +10052,1,50,0 +10052,2,105,1 +10052,3,125,1 +10052,4,55,0 +10052,5,95,0 +10052,6,50,0 +10053,1,70,0 +10053,2,140,0 +10053,3,230,3 +10053,4,60,0 +10053,5,80,0 +10053,6,50,0 +10054,1,60,0 +10054,2,100,0 +10054,3,85,0 +10054,4,80,0 +10054,5,85,0 +10054,6,100,2 +10055,1,70,0 +10055,2,75,0 +10055,3,80,0 +10055,4,135,0 +10055,5,80,0 +10055,6,135,2 +10056,1,64,0 +10056,2,165,2 +10056,3,75,0 +10056,4,93,0 +10056,5,83,0 +10056,6,75,0 +10057,1,65,0 +10057,2,150,2 +10057,3,60,0 +10057,4,115,0 +10057,5,60,0 +10057,6,115,0 +10058,1,108,0 +10058,2,170,3 +10058,3,115,0 +10058,4,120,0 +10058,5,95,0 +10058,6,92,0 +10059,1,70,0 +10059,2,145,1 +10059,3,88,0 +10059,4,140,1 +10059,5,70,0 +10059,6,112,0 +10060,1,90,0 +10060,2,132,1 +10060,3,105,0 +10060,4,132,1 +10060,5,105,0 +10060,6,30,0 +10061,1,74,0 +10061,2,65,0 +10061,3,67,0 +10061,4,125,0 +10061,5,128,2 +10061,6,92,0 +10062,1,80,0 +10062,2,100,0 +10062,3,120,0 +10062,4,140,0 +10062,5,150,3 +10062,6,110,0 +10063,1,80,0 +10063,2,130,0 +10063,3,100,0 +10063,4,160,3 +10063,5,120,0 +10063,6,110,0 +10064,1,100,0 +10064,2,150,3 +10064,3,110,0 +10064,4,95,0 +10064,5,110,0 +10064,6,70,0 +10065,1,70,0 +10065,2,110,0 +10065,3,75,0 +10065,4,145,0 +10065,5,85,0 +10065,6,145,3 +10066,1,50,0 +10066,2,85,1 +10066,3,125,1 +10066,4,85,0 +10066,5,115,0 +10066,6,20,0 +10067,1,75,0 +10067,2,110,0 +10067,3,110,0 +10067,4,110,0 +10067,5,105,2 +10067,6,80,0 +10068,1,68,0 +10068,2,165,3 +10068,3,95,0 +10068,4,65,0 +10068,5,115,0 +10068,6,110,0 +10069,1,103,2 +10069,2,60,0 +10069,3,126,0 +10069,4,80,0 +10069,5,126,0 +10069,6,50,0 +10070,1,70,0 +10070,2,140,2 +10070,3,70,0 +10070,4,110,0 +10070,5,65,0 +10070,6,105,0 +10071,1,95,0 +10071,2,75,0 +10071,3,180,2 +10071,4,130,0 +10071,5,80,0 +10071,6,30,0 +10072,1,75,0 +10072,2,125,0 +10072,3,230,2 +10072,4,55,0 +10072,5,95,0 +10072,6,30,0 +10073,1,83,0 +10073,2,80,0 +10073,3,80,0 +10073,4,135,0 +10073,5,80,0 +10073,6,121,3 +10074,1,80,2 +10074,2,120,0 +10074,3,80,0 +10074,4,120,0 +10074,5,80,0 +10074,6,100,0 +10075,1,50,0 +10075,2,160,0 +10075,3,110,1 +10075,4,160,0 +10075,5,110,2 +10075,6,110,0 +10076,1,80,0 +10076,2,145,0 +10076,3,150,3 +10076,4,105,0 +10076,5,110,0 +10076,6,110,0 +10077,1,100,0 +10077,2,150,0 +10077,3,90,0 +10077,4,180,3 +10077,5,160,0 +10077,6,90,0 +10078,1,100,0 +10078,2,180,3 +10078,3,160,0 +10078,4,150,0 +10078,5,90,0 +10078,6,90,0 +10079,1,105,0 +10079,2,180,2 +10079,3,100,0 +10079,4,180,1 +10079,5,100,0 +10079,6,115,0 +10080,1,35,0 +10080,2,55,0 +10080,3,40,0 +10080,4,50,0 +10080,5,50,0 +10080,6,90,2 +10081,1,35,0 +10081,2,55,0 +10081,3,40,0 +10081,4,50,0 +10081,5,50,0 +10081,6,90,2 +10082,1,35,0 +10082,2,55,0 +10082,3,40,0 +10082,4,50,0 +10082,5,50,0 +10082,6,90,2 +10083,1,35,0 +10083,2,55,0 +10083,3,40,0 +10083,4,50,0 +10083,5,50,0 +10083,6,90,2 +10084,1,35,0 +10084,2,55,0 +10084,3,40,0 +10084,4,50,0 +10084,5,50,0 +10084,6,90,2 +10085,1,35,0 +10085,2,55,0 +10085,3,40,0 +10085,4,50,0 +10085,5,50,0 +10085,6,90,2 +10086,1,80,0 +10086,2,160,0 +10086,3,60,0 +10086,4,170,3 +10086,5,130,0 +10086,6,80,0 +10087,1,70,0 +10087,2,120,1 +10087,3,100,0 +10087,4,145,1 +10087,5,105,0 +10087,6,20,0 +10088,1,65,0 +10088,2,136,0 +10088,3,94,0 +10088,4,54,0 +10088,5,96,0 +10088,6,135,2 +10089,1,95,0 +10089,2,145,3 +10089,3,130,0 +10089,4,120,0 +10089,5,90,0 +10089,6,120,0 +10090,1,65,0 +10090,2,150,2 +10090,3,40,0 +10090,4,15,0 +10090,5,80,1 +10090,6,145,0 +10091,1,30,0 +10091,2,56,0 +10091,3,35,0 +10091,4,25,0 +10091,5,35,0 +10091,6,72,1 +10092,1,75,0 +10092,2,71,0 +10092,3,70,0 +10092,4,40,0 +10092,5,80,0 +10092,6,77,2 +10093,1,75,0 +10093,2,71,0 +10093,3,70,0 +10093,4,40,0 +10093,5,80,0 +10093,6,77,2 +10094,1,35,0 +10094,2,55,0 +10094,3,40,0 +10094,4,50,0 +10094,5,50,0 +10094,6,90,2 +10095,1,35,0 +10095,2,55,0 +10095,3,40,0 +10095,4,50,0 +10095,5,50,0 +10095,6,90,2 +10096,1,35,0 +10096,2,55,0 +10096,3,40,0 +10096,4,50,0 +10096,5,50,0 +10096,6,90,2 +10097,1,35,0 +10097,2,55,0 +10097,3,40,0 +10097,4,50,0 +10097,5,50,0 +10097,6,90,2 +10098,1,35,0 +10098,2,55,0 +10098,3,40,0 +10098,4,50,0 +10098,5,50,0 +10098,6,90,2 +10099,1,35,0 +10099,2,55,0 +10099,3,40,0 +10099,4,50,0 +10099,5,50,0 +10099,6,90,2 +10100,1,60,0 +10100,2,85,0 +10100,3,50,0 +10100,4,95,0 +10100,5,85,0 +10100,6,110,3 +10101,1,50,0 +10101,2,75,0 +10101,3,90,1 +10101,4,10,0 +10101,5,35,0 +10101,6,40,0 +10102,1,75,0 +10102,2,100,0 +10102,3,120,2 +10102,4,25,0 +10102,5,65,0 +10102,6,65,0 +10103,1,38,0 +10103,2,41,0 +10103,3,40,0 +10103,4,50,0 +10103,5,65,0 +10103,6,65,1 +10104,1,73,0 +10104,2,67,0 +10104,3,75,0 +10104,4,81,0 +10104,5,100,0 +10104,6,109,2 +10105,1,10,0 +10105,2,55,0 +10105,3,30,0 +10105,4,35,0 +10105,5,45,0 +10105,6,90,1 +10106,1,35,0 +10106,2,100,2 +10106,3,60,0 +10106,4,50,0 +10106,5,70,0 +10106,6,110,0 +10107,1,40,0 +10107,2,35,0 +10107,3,35,0 +10107,4,50,0 +10107,5,40,0 +10107,6,90,1 +10108,1,65,0 +10108,2,60,0 +10108,3,60,0 +10108,4,75,0 +10108,5,65,0 +10108,6,115,2 +10109,1,40,0 +10109,2,80,0 +10109,3,100,1 +10109,4,30,0 +10109,5,30,0 +10109,6,20,0 +10110,1,55,0 +10110,2,95,0 +10110,3,115,2 +10110,4,45,0 +10110,5,45,0 +10110,6,35,0 +10111,1,80,0 +10111,2,120,0 +10111,3,130,3 +10111,4,55,0 +10111,5,65,0 +10111,6,45,0 +10112,1,80,1 +10112,2,80,0 +10112,3,50,0 +10112,4,40,0 +10112,5,50,0 +10112,6,25,0 +10113,1,105,1 +10113,2,105,1 +10113,3,75,0 +10113,4,65,0 +10113,5,100,0 +10113,6,50,0 +10114,1,95,0 +10114,2,105,0 +10114,3,85,0 +10114,4,125,2 +10114,5,75,0 +10114,6,45,0 +10115,1,60,0 +10115,2,80,0 +10115,3,110,2 +10115,4,50,0 +10115,5,80,0 +10115,6,45,0 +10116,1,72,0 +10116,2,95,0 +10116,3,67,0 +10116,4,103,0 +10116,5,71,0 +10116,6,122,3 +10117,1,72,0 +10117,2,145,0 +10117,3,67,0 +10117,4,153,0 +10117,5,71,0 +10117,6,132,3 +10118,1,54,3 +10118,2,100,0 +10118,3,71,0 +10118,4,61,0 +10118,5,85,0 +10118,6,115,0 +10119,1,108,3 +10119,2,100,0 +10119,3,121,0 +10119,4,81,0 +10119,5,95,0 +10119,6,95,0 +10120,1,216,3 +10120,2,100,0 +10120,3,121,0 +10120,4,91,0 +10120,5,95,0 +10120,6,85,0 +10121,1,88,0 +10121,2,110,2 +10121,3,60,0 +10121,4,55,0 +10121,5,60,0 +10121,6,45,0 +10122,1,77,0 +10122,2,70,0 +10122,3,90,0 +10122,4,145,3 +10122,5,75,0 +10122,6,43,0 +10123,1,75,0 +10123,2,70,0 +10123,3,70,0 +10123,4,98,2 +10123,5,70,0 +10123,6,93,0 +10124,1,75,0 +10124,2,70,0 +10124,3,70,0 +10124,4,98,2 +10124,5,70,0 +10124,6,93,0 +10125,1,75,0 +10125,2,70,0 +10125,3,70,0 +10125,4,98,2 +10125,5,70,0 +10125,6,93,0 +10126,1,85,0 +10126,2,115,2 +10126,3,75,0 +10126,4,55,0 +10126,5,75,0 +10126,6,82,0 +10127,1,45,1 +10127,2,140,0 +10127,3,130,0 +10127,4,140,0 +10127,5,135,0 +10127,6,30,0 +10128,1,70,0 +10128,2,105,2 +10128,3,90,0 +10128,4,80,0 +10128,5,90,0 +10128,6,45,0 +10129,1,68,0 +10129,2,64,0 +10129,3,60,0 +10129,4,111,0 +10129,5,60,0 +10129,6,117,2 +10130,1,60,0 +10130,2,60,0 +10130,3,100,1 +10130,4,60,0 +10130,5,100,1 +10130,6,60,0 +10131,1,60,0 +10131,2,60,0 +10131,3,100,1 +10131,4,60,0 +10131,5,100,1 +10131,6,60,0 +10132,1,60,0 +10132,2,60,0 +10132,3,100,1 +10132,4,60,0 +10132,5,100,1 +10132,6,60,0 +10133,1,60,0 +10133,2,60,0 +10133,3,100,1 +10133,4,60,0 +10133,5,100,1 +10133,6,60,0 +10134,1,60,0 +10134,2,60,0 +10134,3,100,1 +10134,4,60,0 +10134,5,100,1 +10134,6,60,0 +10135,1,60,0 +10135,2,60,0 +10135,3,100,1 +10135,4,60,0 +10135,5,100,1 +10135,6,60,0 +10136,1,60,0 +10136,2,100,1 +10136,3,60,0 +10136,4,100,1 +10136,5,60,0 +10136,6,120,0 +10137,1,60,0 +10137,2,100,1 +10137,3,60,0 +10137,4,100,1 +10137,5,60,0 +10137,6,120,0 +10138,1,60,0 +10138,2,100,1 +10138,3,60,0 +10138,4,100,1 +10138,5,60,0 +10138,6,120,0 +10139,1,60,0 +10139,2,100,1 +10139,3,60,0 +10139,4,100,1 +10139,5,60,0 +10139,6,120,0 +10140,1,60,0 +10140,2,100,1 +10140,3,60,0 +10140,4,100,1 +10140,5,60,0 +10140,6,120,0 +10141,1,60,0 +10141,2,100,1 +10141,3,60,0 +10141,4,100,1 +10141,5,60,0 +10141,6,120,0 +10142,1,60,0 +10142,2,100,1 +10142,3,60,0 +10142,4,100,1 +10142,5,60,0 +10142,6,120,0 +10143,1,55,0 +10143,2,90,0 +10143,3,80,0 +10143,4,50,0 +10143,5,105,2 +10143,6,96,0 +10144,1,55,0 +10144,2,90,0 +10144,3,80,0 +10144,4,50,0 +10144,5,105,2 +10144,6,96,0 +10145,1,55,0 +10145,2,90,0 +10145,3,80,0 +10145,4,50,0 +10145,5,105,2 +10145,6,96,0 +10146,1,75,0 +10146,2,110,0 +10146,3,125,3 +10146,4,100,0 +10146,5,105,0 +10146,6,85,0 +10147,1,80,0 +10147,2,95,0 +10147,3,115,0 +10147,4,130,3 +10147,5,115,0 +10147,6,65,0 +10148,1,35,0 +10148,2,55,0 +10148,3,40,0 +10148,4,50,0 +10148,5,50,0 +10148,6,90,2 +10149,1,60,0 +10149,2,80,0 +10149,3,110,2 +10149,4,50,0 +10149,5,80,0 +10149,6,45,0 +10150,1,60,0 +10150,2,55,0 +10150,3,60,0 +10150,4,95,0 +10150,5,70,0 +10150,6,124,2 +10151,1,45,0 +10151,2,65,1 +10151,3,40,0 +10151,4,30,0 +10151,5,40,0 +10151,6,60,0 +10152,1,75,0 +10152,2,117,2 +10152,3,65,0 +10152,4,55,0 +10152,5,65,0 +10152,6,110,0 +10153,1,68,0 +10153,2,70,0 +10153,3,92,0 +10153,4,50,0 +10153,5,132,2 +10153,6,42,0 +10154,1,65,0 +10154,2,98,2 +10154,3,63,0 +10154,4,40,0 +10154,5,73,0 +10154,6,96,0 +10155,1,97,0 +10155,2,157,3 +10155,3,127,0 +10155,4,113,0 +10155,5,109,0 +10155,6,77,0 +10156,1,97,0 +10156,2,113,0 +10156,3,109,0 +10156,4,157,3 +10156,5,127,0 +10156,6,77,0 +10157,1,97,0 +10157,2,167,1 +10157,3,97,0 +10157,4,167,1 +10157,5,97,0 +10157,6,129,1 diff --git a/Resources/scripts/data/scraper_node/stats.js b/Resources/scripts/data/scraper_node/stats.js new file mode 100644 index 00000000..480b1071 --- /dev/null +++ b/Resources/scripts/data/scraper_node/stats.js @@ -0,0 +1,87 @@ +const got = require('got') +const { new_pokemons } = require('./new_pokemons.js') + +class Pokemon { + stats = { + hp: { + base: 0, + ev: 0, + index: 1 + }, + at: { + base: 0, + ev: 0, + index: 2 + }, + de: { + base: 0, + ev: 0, + index: 3 + }, + sa: { + base: 0, + ev: 0, + index: 4 + }, + sd: { + base: 0, + ev: 0, + index: 5 + }, + sp: { + base: 0, + ev: 0, + index: 6 + } + } + id = "" +} + +async function scrapePokemons(params) { + try { + const pokemons = [] + for (const new_pokemon of new_pokemons) { + try { + let pokemonToScrapeName = new_pokemon + console.log(`Scraping ${pokemonToScrapeName}`) + const response = await got(`https://bulbapedia.bulbagarden.net/w/api.php?action=parse&page=${pokemonToScrapeName}+(Pok%C3%A9mon)&prop=wikitext&format=json`).json() + const wiki = response.parse.wikitext['*'] + const pokemon = new Pokemon + pokemon.id = wiki.match(/ndex=(\d{3})/)[1] + pokemon.stats.hp.base = wiki.match(/\|HP=(\d{1,3})/)[1] + pokemon.stats.at.base = wiki.match(/\|Attack=(\d{1,3})/)[1] + pokemon.stats.de.base = wiki.match(/\|Defense=(\d{1,3})/)[1] + pokemon.stats.sa.base = wiki.match(/\|SpAtk=(\d{1,3})/)[1] + pokemon.stats.sd.base = wiki.match(/\|SpDef=(\d{1,3})/)[1] + pokemon.stats.sp.base = wiki.match(/\|Speed=(\d{1,3})/)[1] + const evMatches = [...wiki.matchAll(/\|ev(\w{2})=(\d{1})/g)] + evMatches.forEach(match => { + pokemon.stats[match[1]].ev = match[2] + }) + pokemons.push(pokemon) + } catch (error) { + console.log(error) + } + } + return pokemons + } catch (error) { + throw error + } +} + +function sortPokemon(a, b) { + return a.id - b.id; +} + +(async () => { + try { + const pokemons = await scrapePokemons() + pokemons.sort(sortPokemon).forEach(pokemon => { + Object.entries(pokemon.stats).forEach(([key, value]) => { + console.log(`${pokemon.id},${value.index},${value.base},${value.ev}`) + }) + }) + } catch (error) { + console.log(error) + } +})()