diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..19cf0d6
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,5 @@
+.git
+.idea
+*.sqlite
+*.log
+site-packages
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index db0d25d..9e60e1d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,6 +14,9 @@ pip-selfcheck.json
 !/bin/edit-csv-as-yaml
 !/bin/poupdate
 !/bin/reset-postgresql-sequences
+!/bin/docker-pokedex
 /local
 /lib
 /include
+
+.idea
diff --git a/.travis.yml b/.travis.yml
index 9a159b5..24202af 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,8 @@ python:
     - "2.7"
     - "3.4"
     - "3.5"
+    - "3.6"
+    - "3.7"
     - "pypy"
     - "pypy3"
 
diff --git a/Dockerfile b/Dockerfile
index 7d01801..80755d5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,23 +1,13 @@
-FROM python:2.7-slim
+ARG PYTHON_VERSION=${PYTHON_VERSION:-"3.7-slim"}
+FROM python:${PYTHON_VERSION}
 
-RUN echo "Upgrading distro..." && \
-    apt-get update > /dev/null && \
-    apt-get upgrade -y > /dev/null && \
-    echo "Installing dependencies..." && \
-    apt-get install -y git python-distribute > /dev/null && \
-    pip install --no-cache-dir virtualenv psycopg2 pymysql > /dev/null && \
-    echo "Optimizing space..." && \
-    apt-get remove --purge -y software-properties-common > /dev/null && \
-    apt-get autoremove -y > /dev/null && \
-    apt-get clean > /dev/null && \
-    apt-get autoclean > /dev/null && \
-    echo -n > /var/lib/apt/extended_states && \
-    rm -rf /var/lib/apt/lists/* && \
-    rm -rf /usr/share/man/?? && \
-    rm -rf /usr/share/man/??_*
+ADD ./ /app/
 
-COPY ./docker-entrypoint.sh /docker-entrypoint
-RUN chmod +x /docker-entrypoint
+WORKDIR /app
 
-ENTRYPOINT ["/docker-entrypoint"]
+RUN echo "Setting up project..." && \
+    pip install -e . && \
+    echo "DONE"
+
+ENTRYPOINT ["pokedex"]
 CMD ["status"]
\ No newline at end of file
diff --git a/README.md b/README.md
index 7e31ea4..42eb3b5 100644
--- a/README.md
+++ b/README.md
@@ -1,31 +1,101 @@
 # pokedex
 
-This is a Python library slash pile of data containing a whole lot of data scraped from Pokémon games.  It's the primary guts of [veekun](https://veekun.com/).
+This is a Python library slash pile of data containing a whole lot of data scraped from Pokémon games.
+It's the primary guts of [veekun](https://veekun.com/).
 
 ## Current status
 
-The project is not _dead_, but it is _languishing_.  It's currently being maintained by only a single person ([eevee](https://eev.ee/)), who is also preoccupied with a lot of other things.  It needs a lot of TLC to modernize it and fix a lot of rough edges.
+The project is not _dead_, but it is _languishing_.
+It's currently being maintained by only its creator ([eevee](https://eev.ee/)) and a couple of other contributors,
+who are also occupied with a lot of other things.
 
-I started on an experiment with switching to YAML for data storage some time ago, for a variety of reasons.  It's finally starting to show some promise — all of gen 7 was dumped to a YAML format, then loaded into the database from there — but it'll take a lot more work to get this usable.  The intended _upsides_ are:
+The project needs to be modernized and to have a lot of rough edges fixed that would also make it easier
+to maintain for the games and generations to come.
 
-- The data will include everything from older games, so you don't have to guess!  Also, the site will handle older games correctly, probably!
-- Many more filtering and searching tools on veekun, since I won't have to fight SQL to write them!
-- More interesting data we've never had before, like trainer teams and overworld items!  And models?  Maps, even?  Who knows, but working on this stuff should be easier with all this existing code in place!
+### Status of the YAML migration
+
+**Update from 2017-06-18**
+
+@eevee started on an experiment with switching to YAML for data storage some time ago, for a variety of reasons.
+It's finally starting to show some promise — all of gen 7 was dumped to a YAML format, then loaded into the database
+from there — but it'll take a lot more work to get this usable. The intended _upsides_ are:
+
+- The data will include everything from older games, so you don't have to guess! 
+Also, the veekun site will handle older games correctly, probably!
+- Many more filtering and searching tools on veekun, since we won't have to fight SQL to write them!
+- More interesting data we've never had before, like trainer teams and overworld items!
+And models? Maps, even? Who knows, but working on this stuff should be easier with all this existing code in place!
 - A project that's actually documented and not confusing as hell to use!
 - A useful command line interface that doesn't require weird setup steps!
 
-If you're interested in this work, hearing about that would be some great motivation!  In the meantime, veekun will look a bit stagnant.  I can't dedicate huge amounts of time to it, either, so this may take a while, if it ever gets done at all.  Sorry.
+If you're interested in this work, hearing about that would be some great motivation! 
+In the meantime, veekun will look a bit stagnant. 
+We can't dedicate huge amounts of time to it, either, so this may take a while, if it ever gets done at all.
+Sorry.
 
 
-### How can I help?
+## How can I help?
 
-I don't know!  Not many people have the right combination of skills and interests to work on this.  I guess you could pledge to my [Patreon](https://www.patreon.com/eevee) as some gentle encouragement.  :)
+I don't know! Not many people have the right combination of skills and interests to work on this. 
+I guess you could pledge to my [Patreon](https://www.patreon.com/eevee) as some gentle encouragement. :)
 
+If you are a developer, you can of course also contribute to the development of this project via Pull Requests.
 
-## Copyright and whatnot
+### About editing CSV files
 
-The software is licensed under the MIT license.  See the `LICENSE` file for full copyright and license text.  The short version is that you can do what you like with the code, as long as you say where you got it.
+Fixing CSV data inconsistency or errors and putting that into a Pull Request it's also appreciated.
 
-This repository includes data extracted from the Pokémon series of video games.  All of it is the intellectual property of Nintendo, Creatures, inc., and GAME FREAK, inc. and is protected by various copyrights and trademarks.  The author believes that the use of this intellectual property for a fan reference is covered by fair use — the use is inherently educational, and the software would be severely impaired without the copyrighted material.
+Even though, whilst for every new game that we integrate here the initial big dump of data comes directly from
+the disassembled game files and scripts that parse their data, there is still some data that needs to be fixed or
+introduced manually.
+
+Pull Requests with manually-written modifications to the CSV files introducing data of new games without a trustful
+data source will be discarded.
+
+As mentioned, for new games we always try to automate this process with scripts that parse the disassembled game's data
+data into CSV, excepting whenever we have to fix some data inconsistency or error.
+
+Raw data can also sometimes come from external data miners, which have disassembled the game content and dumped all the
+information into human-readable text files.
+
+## Using the pokedex CLI
+
+A guide is available under the project's [Wiki](https://github.com/veekun/pokedex/wiki).
+
+### Docker support
+
+If you want to use the CLI but you don't want to install all python requirements yourself locally in your
+computer, you can use [Docker](https://www.docker.com/) and the provided Dockerfile will do everything for you.
+
+You only need to clone this project, and under the project directory, use the docker helper script to run
+any pokedex CLI command:
+
+**Examples**:
+
+Generating the SQLite database from the CSV files:
+```bash
+bin/docker-pokedex setup -v
+```
+
+Dumping the SQLite database back into the CSV files:
+```bash
+bin/docker-pokedex dump -l all
+```
+
+You also have a special command to re-build the docker image (e.g. after editing files):
+```bash
+bin/docker-pokedex rebuild
+```
+
+## License and Copyright
+
+The software is licensed under the MIT license. See the [`LICENSE`](LICENSE) file for full copyright and license text. 
+The short version is that you can do what you like with the code, as long as you say where you got it.
+
+This repository includes data extracted from the Pokémon series of video games.
+All of it is the intellectual property of Nintendo, Creatures, inc., and GAME FREAK, inc. and is protected by various 
+copyrights and trademarks. The author believes that the use of this intellectual property for a fan reference is 
+covered by fair use — the use is inherently educational, and the software would be severely impaired without the 
+copyrighted material.
 
 That said, any use of this library and its included data is **at your own legal risk**.
diff --git a/bin/docker-pokedex b/bin/docker-pokedex
new file mode 100755
index 0000000..76db50a
--- /dev/null
+++ b/bin/docker-pokedex
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+curr_dir="$(pwd)"
+log_file="${curr_dir}/bin/docker-pokedex.log"
+
+if [[ "${1}" = "rebuild" ]] || [[ ! -f "${log_file}" ]]; then
+    docker build --rm -t veekun/pokedex ${curr_dir}
+    echo "$(date)" >> "${log_file}"
+
+    if [[ "${1}" = "rebuild" ]]; then
+        echo "Docker container rebuilt"
+        exit
+    fi;
+fi
+
+docker run -it --rm \
+    -e TERM=xterm-256color \
+    --name "pokedex-$(date +%Y%m%d-%H%M%S)" \
+    --mount type=bind,source="${curr_dir}/pokedex/data",target=/app/pokedex/data \
+    veekun/pokedex "${@}"
\ No newline at end of file
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index dbe6a8e..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-version: '3'
-services:
-  pokedex:
-    build: ./
-    volumes:
-      - ./:/project
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
deleted file mode 100755
index bd3b694..0000000
--- a/docker-entrypoint.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env bash
-set -e
-
-POKEDEX_DIR=${POKEDEX_DIR:-"/project"}
-
-cd ${POKEDEX_DIR}
-
-if [ ! -f "${POKEDEX_DIR}/bin/python" ] || [ ! -f "${POKEDEX_DIR}/bin/pokedex" ] ; then
-    echo "Building the bin/pokedex executable ..."
-    virtualenv $POKEDEX_DIR --python=python2
-    bin/python setup.py develop
-fi
-
-case "$1" in
-   "") bin/pokedex help
-   ;;
-   "exec") exec ${@:2}
-   ;;
-   *) bin/pokedex $@
-   ;;
-esac
diff --git a/docker-pokedex b/docker-pokedex
deleted file mode 100755
index 439be09..0000000
--- a/docker-pokedex
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env bash
-
-docker-compose run --rm pokedex "$@"
\ No newline at end of file
diff --git a/item-questions b/item-questions
deleted file mode 100644
index 95e01ee..0000000
--- a/item-questions
+++ /dev/null
@@ -1,18 +0,0 @@
-QUESTIONS ABOUT ITEMS
-- I think: key items are uncountable.  everything else is countable.  an item can be held iff it is countable.
-- how long do
-- check bp for ultimate held item ref or something
-- I need a better way to represent NPC interactions in different games
-- how much does growth mulch accelerate soil drying?  how much does damp mulch slow it?
-- does lum berry cure confusion?
-- how does sweet heart work?  it seems a guy in mistralton will trade some for heart scales?
-- kind of guessing about the * urge items
-
-CHANGES SINCE R/S
-- 4 shoal salt + 4 shoal shells, traded to a guy in Shoal Cave, make a Shell Bell
-- white flute increased encounter rate by 50%, not 100%
-- shards can be traded for the respective stones
-
-
-
-UP TO 67
diff --git a/pokedex/data/csv/ability_changelog_prose.csv b/pokedex/data/csv/ability_changelog_prose.csv
index b7bffcc..88b50cc 100644
--- a/pokedex/data/csv/ability_changelog_prose.csv
+++ b/pokedex/data/csv/ability_changelog_prose.csv
@@ -1,53 +1,105 @@
 ability_changelog_id,local_language_id,effect
+1,6,Hat im Kampf keinen Effekt.
 1,9,Has no effect in battle.
+2,6,Verhindert keine regulären K.O. bei vollen []{mechanic:hp}.
 2,9,Does not prevent regular KOs from full [HP]{mechanic:hp}.
+3,6,Hat außerhalb vom Kampf keinen Effekt.
 3,9,Has no overworld effect.
+4,6,"[]{type:electric}-Attacken die keinen Schaden anrichten, wie []{move:thunder-wave}, werden nicht absorbiert."
 4,9,"Does not absorb non-damaging []{type:electric} moves, i.e. []{move:thunder-wave}."
+5,6,Löst bei Attacken die mehrmals Treffen bei jedem Treffer aus.
 5,9,Triggers on every hit of multiple-hit moves.
+6,6,[]{move:will-o-wisp} triggert die Fähigkeit nicht bei Pokémon die immun gegen []{mechanic:burn} sind.
 6,9,[]{move:will-o-wisp} does not trigger this ability for Pokémon immune to [burns]{mechanic:burn}.
+7,6,Hat außerhalb vom Kampf keinen Effekt.
 7,9,Has no overworld effect.
+8,6,Hat außerhalb vom Kampf keinen Effekt.
 8,9,Has no overworld effect.
+9,6,"Hat keinen Effekt, wenn die Fähigkeit nach Kampfbeginn erlangt wurde."
 9,9,Does not take effect if acquired after entering battle.
+10,6,Betrifft andere Pokémon mit dieser Fähigkeit.
 10,9,Affects other Pokémon with this ability.
+11,6,Verursacht nur 1/16 der maximalen []{mechanic:hp} des Angreifers Schaden.
 11,9,Inflicts only 1/16 of the attacker's maximum [HP]{mechanic:hp} in damage.
+12,6,"[]{move:fire-fang} und Attacken die [typenlosen Schaden]{mechanic:typeless-damage} verursachen, ignorieren diese Fähigkeit unabhängig von ihrem Typ."
 12,9,[]{move:fire-fang} and moves that inflict [typeless damage]{mechanic:typeless-damage} ignore this ability regardless of type.
+13,6,Hat außerhalb vom Kampf keinen Effekt.
 13,9,Has no overworld effect.
+14,6,Kann das Wesen von Pokémon mit denen in der Spielwelt interagiert wird nicht verändern.
 14,9,Cannot influence the natures of Pokémon encountered by interacting with them on the overworld.
+15,6,Gibt schwere []{mechanic:poison} als normale []{mechanic:poison} zurück.
 15,9,Passes back bad [poison]{mechanic:poison} as regular poison.
+16,6,Hat außerhalb vom Kampf keinen Effekt.
 16,9,Has no overworld effect.
+17,6,"Betrifft keine []{type:electric}-Attacken die keinen Schaden anrichten, wie []{move:thunder-wave}. Erhöht die Anzahl an Trainer-Anrufen wenn irgendein Pokémon im Team diese Fähigkeit hat."
 17,9,"Does not affect non-damaging []{type:electric} moves, i.e. []{move:thunder-wave}.  Increases the frequency of Match Call calls on the overworld if any party Pokémon has this ability."
+18,6,"Leitet []{type:electric}-Attacken um, ohne ihre Effekte zu deaktivieren oder einen []{mechanic:special-attack} Bonus zu gewähren. Leitet []{move:hidden-power} nicht um."
 18,9,Redirects []{type:electric} moves without negating them or granting any [Special Attack]{mechanic:special-attack} boost.  Does not redirect []{move:hidden-power}.
+19,6,Hat außerhalb vom Kampf keinen Effekt.
 19,9,Has no overworld effect.
+20,6,Hat außerhalb vom Kampf keinen Effekt.
 20,9,Has no overworld effect.
+21,6,"Hindert []{move:heal-bell} daran, das Pokémon zu heilen, auch außerhalb vom Kampf."
 21,9,"Prevents []{move:heal-bell} from curing the Pokémon, whether or not it is in battle."
+22,6,Hat außerhalb vom Kampf keinen Effekt.
 22,9,Has no overworld effect.
+23,6,Betrifft keine Attacken von Teammitgliedern die alle anderen Pokémon als Ziel haben. Diese Fähigkeit wird im Kampf nicht angekündigt.
 23,9,Does not affect friendly Pokémon's moves that target all other Pokémon.  This ability's presence is not announced upon entering battle.
+24,6,Hat außerhalb vom Kampf keinen Effekt.
 24,9,Has no overworld effect.
+25,6,Hat außerhalb vom Kampf keinen Effekt.
 25,9,Has no overworld effect.
+26,6,Hat außerhalb vom Kampf keinen Effekt.
 26,9,Has no overworld effect.
+27,6,"Verdoppelt den Radius in dem []{move:cut} Gras entfernt, wenn irgendein Pokémon im Team diese Fähigkeit hat."
 27,9,Doubles []{move:cut}'s grass-cutting radius on the overworld if any party Pokémon has this ability.
+28,6,Hat im Kampf keinen Effekt.
 28,9,Has no effect in battle.
+29,6,Hat außerhalb vom Kampf keinen Effekt.
 29,9,Has no overworld effect.
+30,6,Hat außerhalb vom Kampf keinen Effekt.
 30,9,Has no overworld effect.
+31,6,Hat außerhalb vom Kampf keinen Effekt.
 31,9,Has no overworld effect.
+32,6,Hat keinen Effekt während das Pokémon [schläft]{mechanic:sleep}.
 32,9,Does not take effect during [sleep]{mechanic:sleep}.
+33,6,Hat außerhalb vom Kampf keinen Effekt.
 33,9,Has no overworld effect.
+34,6,"Erhöht die Anzahl an Rufen die man außerhalb vom Kampf hört, wenn irgendein Pokémon im Team diese Fähigkeit hat."
 34,9,Increases the frequency of cries heard on the overworld if any party Pokémon has this ability.
+35,6,Hat außerhalb vom Kampf keinen Effekt.
 35,9,Has no overworld effect.
+36,6,Hat außerhalb vom Kampf keinen Effekt.
 36,9,Has no overworld effect.
+37,6,Hat außerhalb vom Kampf keinen Effekt.
 37,9,Has no overworld effect.
+38,6,[]{mechanic:poison} schadet dem Pokémon außerhalb vom Kampf.
 38,9,[Poison]{mechanic:poison} still damages the Pokémon outside of battle.
+39,6,"[]{mechanic:paralysis} hindert das Pokémon nicht daran sich zu bewegen, aber der []{mechanic:speed} Malus bleibt. []{mechanic:poison} schadet dem Pokémon außerhalb vom Kampf."
 39,9,"[Paralysis]{mechanic:paralysis} cannot prevent the Pokémon from moving, though the [Speed]{mechanic:speed} cut is unaffected.  [Poison]{mechanic:poison} still damages the Pokémon outside of battle."
+40,6,Wegen eines Glitches haben Attacken die von dieser Fähigkeit beeinflusst sind eine (100 - Genauigkeit)% Chance durch den []{move:detect} oder []{move:protect} zu treffen.
 40,9,"Due to a glitch, moves affected by this ability have a (100 - accuracy)% chance to hit through []{move:detect} or []{move:protect}."
+41,6,[]{move:rest} funktioniert normal bei [starkem Sonnenlicht]{mechanic:strong-sunlight}.
 41,9,[]{move:rest} works as usual during [strong sunlight]{mechanic:strong-sunlight}.
+42,6,[]{move:fling} kann normal benutzt werden.
 42,9,[]{move:fling} can be used as usual.
+43,6,Leitet []{type:water}-Attacken um ohne den []{mechanic:special-attack} Bonus zu gewähren. Leitet []{move:hidden-power} nicht um.
 43,9,Redirects []{type:water} moves without negating them or granting any [Special Attack]{mechanic:special-attack} boost.  Does not redirect []{move:hidden-power}.
+44,6,Kann []{ability:flower-gift} und []{ability:wonder-guard} kopieren.
 44,9,Can copy []{ability:flower-gift} and []{ability:wonder-guard}.
+45,6,Kann []{ability:forecast} und []{ability:trace} kopieren.
 45,9,Can copy []{ability:forecast} and []{ability:trace}.
+46,6,Funktioniert nur wenn es mit []{ability:minus} kombiniert wird.
 46,9,Powers up only when paired with []{ability:minus}.
+47,6,Funktioniert nur wenn es mit []{ability:plus} kombiniert wird.
 47,9,Powers up only when paired with []{ability:plus}.
+48,6,"Die Chance, dass der Effekt eintritt, beträgt 30%."
 48,9,Chance of taking effect is 30%.
+49,6,[]{move:triple-kick} wird nicht beeinflusst.
 49,9,[]{move:triple-kick} is unaffected.
+50,6,[]{move:struggle} wird nicht beeinflusst. []{move:helping-hand} und []{move:defense-curl} werden nicht beachtet.
 50,9,[]{move:struggle} is unaffected.  []{move:helping-hand} and []{move:defense-curl} are not taken into account.
+51,6,Hat außerhalb vom Kampf keinen Effekt.
 51,9,Has no overworld effect.
+52,6,"Die Chance, dass der Effekt eintritt, beträgt 33%."
 52,9,Chance of taking effect is 33%.
diff --git a/pokedex/data/csv/ability_prose.csv b/pokedex/data/csv/ability_prose.csv
index c53f16f..764df2a 100644
--- a/pokedex/data/csv/ability_prose.csv
+++ b/pokedex/data/csv/ability_prose.csv
@@ -1,57 +1,117 @@
 ability_id,local_language_id,short_effect,effect
+1,6,Mit jedem Treffer besteht eine 10% Chance das Ziel [zurückschrecken]{mechanic:flinch} zu lassen.,"Attacken die Schaden verursachen haben mit jedem Treffer eine 10% Chance das Ziel [zurückschrecken]{mechanic:flinch} zu lassen, wenn die Attacke dies nicht bereits als Nebeneffekt hat.
+
+Der Effekt stapelt nicht mit dem von getragenen Items.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen wilde Pokémon nur halb so oft auf."
 1,9,Has a 10% chance of making target Pokémon [flinch]{mechanic:flinch} with each hit.,"This Pokémon's damaging moves have a 10% chance to make the target [flinch]{mechanic:flinch} with each hit if they do not already cause flinching as a secondary effect.
 
 This ability does not stack with a held item.
 
 Overworld: The wild encounter rate is halved while this Pokémon is first in the party."
+2,6,Ändert beim Betreten des Kampfes das []{mechanic:weather} in []{mechanic:rain}.,"Das []{mechanic:weather} ändert sich zu []{mechanic:rain} wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt. Dieser Effekt ist dauerhaft bis das []{mechanic:weather} geändert wird.
+
+Wenn mehrere Pokémon mit dieser Fähigkeit, []{ability:drought}, []{ability:sand-stream} oder []{ability:snow-warning} zur selben Zeit den Kampf betreten, werden die Fähigkeiten nach Reihenfolge der []{mechanic:speed} der Pokémon ausgelöst, unter Berücksichtigung von []{move:trick-room}."
 2,9,Summons [rain]{mechanic:rain} that lasts indefinitely upon entering battle.,"The [weather]{mechanic:weather} changes to [rain]{mechanic:rain} when this Pokémon enters battle and does not end unless replaced by another weather condition.
 
 If multiple Pokémon with this ability, []{ability:drought}, []{ability:sand-stream}, or []{ability:snow-warning} are sent out at the same time, the abilities will activate in order of [Speed]{mechanic:speed}, respecting []{move:trick-room}.  Each ability's weather will cancel the previous weather, and only the weather summoned by the slowest of the Pokémon will stay."
+3,6,Steigert die []{mechanic:speed} um 1 [Stufe]{mechanic:stat-modifier} nach jeder Runde.,Die []{mechanic:speed} des Pokémon erhöht sich jede Runde um 1 [Stufe]{mechanic:stat-modifier}.
 3,9,Raises [Speed]{mechanic:speed} one [stage]{mechanic:stat-modifier} after each turn.,This Pokémon's [Speed]{mechanic:speed} rises one [stage]{mechanic:stat-modifier} after each turn.
+4,6,Schützt vor [kritischen Treffern]{mechanic:critical-hit}.,"Attacken können keinen [kritischen Treffer]{mechanic:critical-hit} landen.
+
+Diese Fähigkeit ist identisch mit []{ability:shell-armor}."
 4,9,Protects against [critical hits]{mechanic:critical-hit}.,"Moves cannot score [critical hits]{mechanic:critical-hit} against this Pokémon.
 
 This ability functions identically to []{ability:shell-armor}."
+5,6,"Verhindert K.O.-Treffer bei vollen []{mechanic:hp}, das Pokémon behält 1 []{mechanic:hp}. Schützt gegen K.O.-Attacken.","Wenn das Pokémon volle []{mechanic:hp} hat, lässt jeder Treffer der das Pokémon besiegt hätte ein []{mechanic:hp} übrig. Das Pokémon ist immun gegen die K.O.-Attacken []{move:fissure}, []{move:guillotine}, []{move:horn-drill} und []{move:sheer-cold}.
+
+Hält das Pokémon ein []{item:focus-sash}, hat die Fähigkeit Vorrang und das Item wird nicht verbraucht."
 5,9,"Prevents being KOed from full [HP]{mechanic:hp}, leaving 1 HP instead.  Protects against the one-hit KO moves regardless of HP.","When this Pokémon is at full [HP]{mechanic:hp}, any hit that would knock it out will instead leave it with 1 HP.  Regardless of its current HP, it is also immune to the one-hit KO moves: []{move:fissure}, []{move:guillotine}, []{move:horn-drill}, and []{move:sheer-cold}.
 
 If this Pokémon is holding a []{item:focus-sash}, this ability takes precedence and the item will not be consumed."
+6,6,"Verhindert []{move:self-destruct}, []{move:explosion} und []{ability:aftermath}.","Wenn sich ein Pokémon mit dieser Fähigkeit im Kampf befindet, schlagen die Attacken []{move:self-destruct} und []{move:explosion} fehl und []{ability:aftermath} hat keinen Effekt."
 6,9,"Prevents []{move:self-destruct}, []{move:explosion}, and []{ability:aftermath} from working while the Pokémon is in battle.","While this Pokémon is in battle, []{move:self-destruct} and []{move:explosion} will fail and []{ability:aftermath} will not take effect."
+7,6,Verhindert []{mechanic:paralysis}.,"Ein Pokémon mit dieser Fähigkeit kann nicht [paralysiert]{mechanic:paralysis} werden.
+
+Wenn ein [paralysiertes]{mechanic:paralysis} Pokémon diese Fähigkeit erhält, wird es von der []{mechanic:paralysis} geheilt. Das bezieht das Wiedererlangen dieser Fähigkeit nach dem Kampf mit ein."
 7,9,Prevents [paralysis]{mechanic:paralysis}.,"This Pokémon cannot be [paralyzed]{mechanic:paralysis}.
 
 If a Pokémon is paralyzed and acquires this ability, its paralysis is healed; this includes when regaining a lost ability upon leaving battle."
+8,6,Erhöht den []{mechanic:evasion} um 25% während eines [Sandsturms]{mechanic:sandstorm}. Kein Schaden durch [Sandstürme]{mechanic:sandstorm}.,"Während eines [Sandsturms]{mechanic:sandstorm} hat ein Pokémon mit dieser Fähigkeit einen um 25% erhöhten []{mechanic:evasion} und es nimmt keinen Schaden durch [Sandstürme]{mechanic:sandstorm}.
+
+Der Bonus zählt nicht als [Statuswerte Änderung]{mechanic:stat-modifier}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen im Sandsturm nur halb so viele Pokémon auf."
 8,9,Increases [evasion]{mechanic:evasion} to 1.25× during a [sandstorm]{mechanic:sandstorm}.  Protects against sandstorm damage.,"During a [sandstorm]{mechanic:sandstorm}, this Pokémon has 1.25× its [evasion]{mechanic:evasion}, and it does not take sandstorm damage regardless of type.
 
 The evasion bonus does not count as a [stat modifier]{mechanic:stat-modifier}.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is halved in a sandstorm."
+9,6,30% Chance das angreifende Pokémon bei Kontakt zu [paralysieren]{mechanic:paralysis}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke mit Kontakt getroffen wird, besteht eine 30% Chance, dass der Angreifer [paralysiert]{mechanic:paralysis} wird.
+
+Pokémon die immun gegen []{type:electric} Attacken sind können trotzdem von dieser Fähigkeit [paralysiert]{mechanic:paralysis} werden.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, besteht eine 50% Chance einem []{type:electric} Pokémon zu begegnen, falls es welche gibt."
 9,9,Has a 30% chance of [paralyzing]{mechanic:paralysis} attacking Pokémon on contact.,"Whenever a move makes contact with this Pokémon, the move's user has a 30% chance of being [paralyzed]{mechanic:paralysis}.
 
 Pokémon that are immune to []{type:electric}-type moves can still be paralyzed by this ability.
 
 Overworld: If the lead Pokémon has this ability, there is a 50% chance that encounters will be with an []{type:electric} Pokémon, if applicable."
+10,6,Absorbiert []{type:electric} Attacken und heilt 1/4 der max []{mechanic:hp}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer []{type:electric} Attacke getroffen wird, wird es um 1/4 seiner maximalen []{mechanic:hp} geheilt. Jeder andere Effekt der Attacke wird ignoriert.
+
+Die Fähigkeit wirkt nicht, wenn das Pokémon vom Typ []{type:ground} ist. []{type:electric} Attacken ignorieren den []{move:substitute} dieses Pokémons.
+
+Der Effekt gilt auch für Attacken die keinen Schaden verursachen, wie z.B. []{move:thunder-wave}."
 10,9,"Absorbs []{type:electric} moves, healing for 1/4 max [HP]{mechanic:hp}.","Whenever an []{type:electric}-type move hits this Pokémon, it heals for 1/4 of its maximum [HP]{mechanic:hp}, negating any other effect on it.
 
 This ability will not take effect if this Pokémon is []{type:ground}-type and thus immune to Electric moves.  Electric moves will ignore this Pokémon's []{move:substitute}.
 
 This effect includes non-damaging moves, i.e. []{move:thunder-wave}."
+11,6,Absorbiert []{type:water} Attacken und heilt 1/4 der maximalen []{mechanic:hp}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer []{type:water} Attacke getroffen wird, wird es um 1/4 seiner maximalen []{mechanic:hp} geheilt. Jeder andere Effekt der Attacke wird ignoriert.
+
+[]{type:water} Attacken ignorieren den []{move:substitute} dieses Pokémons."
 11,9,"Absorbs []{type:water} moves, healing for 1/4 max [HP]{mechanic:hp}.","Whenever a []{type:water}-type move hits this Pokémon, it heals for 1/4 of its maximum [HP]{mechanic:hp}, negating any other effect on it.
 
 Water moves will ignore this Pokémon's []{move:substitute}."
+12,6,Verhindert []{mechanic:infatuation} und schützt gegen []{move:captivate}.,"Dieses Pokémon kann sich nicht [verlieben]{mechanic:infatuation} und ist immun gegen []{move:captivate}.
+
+Wenn ein Pokémon [verliebt]{mechanic:infatuation} ist und diese Fähigkeit erhält, wird es von der []{mechanic:infatuation} geheilt."
 12,9,Prevents [infatuation]{mechanic:infatuation} and protects against []{move:captivate}.,"This Pokémon cannot be [infatuated]{mechanic:infatuation} and is immune to []{move:captivate}.
 
 If a Pokémon is infatuated and acquires this ability, its infatuation is cleared."
+13,6,Entfernt alle [Wettereffekte]{mechanic:weather} aber ändert nicht das []{mechanic:weather} selbst.,"Während ein Pokémon mit dieser Fähigkeit im Kampf ist, kann das []{mechanic:weather} zwar geändert werden, hat aber keinen Effekt.
+
+Diese Fähigkeit ist identisch mit []{ability:air-lock}."
 13,9,"Negates all effects of [weather]{mechanic:weather}, but does not prevent the weather itself.","While this Pokémon is in battle, [weather]{mechanic:weather} can still be in play, but will not have any of its effects.
 
 This ability functions identically to []{ability:air-lock}."
+14,6,Erhöht die []{mechanic:accuracy} von Attacken um 30%.,"Die Attacken eines Pokémon mit dieser Fähigkeit haben eine um 30% erhöhte []{mechanic:accuracy}.
+
+Diese Fähigkeit hat keinen Einfluss auf K.O.-Attacken ([]{move:fissure}, []{move:guillotine}, []{move:horn-drill} und []{move:sheer-cold}).
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, erhöht sich die Chance, dass ein wildes Pokémon ein Item trägt von 50%, 5% oder 1% auf 60%, 20% oder 5%, respektive."
 14,9,Increases moves' [accuracy]{mechanic:accuracy} to 1.3×.,"This Pokémon's moves have 1.3× their [accuracy]{mechanic:accuracy}.
 
 This ability has no effect on the one-hit KO moves ([]{move:fissure}, []{move:guillotine}, []{move:horn-drill}, and []{move:sheer-cold}).
 
 Overworld: If the first Pokémon in the party has this ability, the chance of a wild Pokémon holding a particular item is raised from 50%, 5%, or 1% to 60%, 20%, or 5%, respectively."
+15,6,Verhindert []{mechanic:sleep}.,"Ein Pokémon mit dieser Fähigkeit kann nicht [einschlafen]{mechanic:sleep}.
+
+[]{move:rest} schlägt fehl. Wenn ein Pokémon [schläft]{mechanic:sleep} und diese Fähigkeit erhält, wacht es sofort auf. Das bezieht das Wiedererlangen dieser Fähigkeit nach dem Kampf mit ein.
+
+Diese Fähigkeit ist identisch mit []{ability:vital-spirit}."
 15,9,Prevents [sleep]{mechanic:sleep}.,"This Pokémon cannot be [asleep]{mechanic:sleep}.
 
 This causes []{move:rest} to fail altogether.  If a Pokémon is asleep and acquires this ability, it will immediately wake up; this includes when regaining a lost ability upon leaving battle.
 
 This ability functions identically to []{ability:vital-spirit} in battle."
+16,6,Ändert den Typ des Pokémons in den der Attacke von der es getroffen wird.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke getroffen wird die Schaden verursacht, ändert sich der Typ des Pokémons in den der Attacke.
+
+Wenn das Pokémon 2 Typen hat, werden beide überschrieben. Das Pokémon muss direkten Schaden erleiden, Attacken die vom []{move:substitute} geblockt werden, lösen den Effekt nicht aus, ebenso wie Attacken mit indirektem Schaden wie []{move:spikes}.
+
+Bei Attacken mit mehreren Treffern löst nur der Letzte den Effekt aus.
+
+Diese Fähigkeit hat keinen Einfluss auf []{type:shadow} Attacken in Pokémon Colosseum und XD: Der dunkle Sturm."
 16,9,Changes type to match when hit by a damaging move.,"Whenever this Pokémon takes damage from a move, the Pokémon's type changes to match the move.
 
 If the Pokémon has two types, both are overridden.  The Pokémon must directly take damage; for example, moves blocked by a []{move:substitute} will not trigger this ability, nor will moves that deal damage indirectly, such as []{move:spikes}.
@@ -59,23 +119,47 @@ If the Pokémon has two types, both are overridden.  The Pokémon must directly
 This ability takes effect on only the last hit of a multiple-hit attack.
 
 In Pokémon Colosseum and XD: Gale of Darkness, this ability does not take effect on Shadow-type moves."
+17,6,Verhindert []{mechanic:poison}.,"Ein Pokémon mit dieser Fähigkeit kann nicht [vergiftet]{mechanic:poison} werden. Das schließt schwere []{mechanic:poison} mit ein.
+
+Wenn ein [vergiftetes]{mechanic:poison} Pokémon diese Fähigkeit erhält, wird es von der []{mechanic:poison} geheilt. Das bezieht das Wiedererlangen dieser Fähigkeit nach dem Kampf mit ein."
 17,9,Prevents [poison]{mechanic:poison}.,"This Pokémon cannot be [poisoned]{mechanic:poison}.  This includes bad poison.
 
 If a Pokémon is poisoned and acquires this ability, its poison is healed; this includes when regaining a lost ability upon leaving battle."
+18,6,"Schützt vor []{type:fire} Attacken. Sobald eine []{type:fire} Attacke blockiert wurde, erhöht sich der Schaden der eigenen []{type:fire} Attacken um 50%.","Ein Pokémon mit dieser Fähigkeit ist immun gegen []{type:fire} Attacken. Sobald es von einer []{type:fire} Attacke getroffen wurde, erhöht sich der Schaden der eigenen []{type:fire} Attacken um 50% bis es den Kampf verlässt.
+
+Die Fähigkeit hat keinen Effekt, wenn das Pokémon [eingefroren]{mechanic:freezing} ist. Der Bonus bleibt erhalten wenn das Pokémon [eingefroren]{mechanic:freezing} ist und wieder auftaut oder wenn es die Fähigkeit wechselt bzw. diese deaktiviert wird. []{type:fire} Attacken ignorieren den []{move:substitute}. Der Effekt wirkt auch bei []{type:fire} Attacken die keinen Schaden verursachen, wie z.B. []{move:will-o-wisp}."
 18,9,"Protects against []{type:fire} moves.  Once one has been blocked, the Pokémon's own Fire moves inflict 1.5× damage until it leaves battle.","This Pokémon is immune to []{type:fire}-type moves.  Once this Pokémon has been hit by a Fire move, its own Fire moves will inflict 1.5× as much damage until it leaves battle.
 
 This ability has no effect while the Pokémon is [frozen]{mechanic:freezing}.  The Fire damage bonus is retained even if the Pokémon is frozen and thawed or the ability is lost or disabled.  Fire moves will ignore this Pokémon's []{move:substitute}.  This ability takes effect even on non-damaging moves, i.e. []{move:will-o-wisp}."
+19,6,Schützt vor Zusatzeffekten von Attacken.,"Ein Pokémon mit dieser Fähigkeit ist immun gegen Zusatzeffekt von Attacken.
+
+Ein Zusatzeffekt ist die Chance einer Attacke, als ""Effektchance"" bezeichnet, eine []{mechanic:status-ailment} oder eine []{mechanic:stat-modifier} hervorzurufen oder das Ziel [zurückschrecken]{mechanic:flinching} zu lassen, zusätzlich zum Haupteffekt einer Attacke. Zum Beispiel ist die []{mechanic:paralysis} die []{move:thunder-shock} verursachen kann ein Zusatzeffekt, im Gegensatz zu []{move:thunder-wave}, genauso wie das Entfernen des Items durch []{move:knock-off} und die erhöhte [kritische Trefferchance]{mechanic:critial-hit} durch []{move:air-cutter}."
 19,9,Protects against incoming moves' extra effects.,"This Pokémon is immune to the extra effects of moves used against it.
 
 An extra effect is a move's chance, listed as an ""effect chance"", to inflict a [status ailment]{mechanic:status-ailment}, cause a [stat change]{mechanic:stat-modifier}, or make the target [flinch]{mechanic:flinching} in addition to the move's main effect.  For example, []{move:thunder-shock}'s [paralysis]{mechanic:paralysis} is an extra effect, but []{move:thunder-wave}'s is not, nor are []{move:knock-off}'s item removal and []{move:air-cutter}'s increased [critical hit]{mechanic:critial-hit} rate."
+20,6,Verhindert []{mechanic:confusion}.,"Ein Pokémon mit dieser Fähigkeit kann nicht [verwirrt]{mechanic:confusion} werden.
+
+Wenn ein Pokémon verwirrt ist und diese Fähigkeit erhält, wird es von der []{mechanic:confusion} geheilt."
 20,9,Prevents [confusion]{mechanic:confusion}.,"This Pokémon cannot be [confused]{mechanic:confusion}.
 
 If a Pokémon is confused and acquires this ability, its confusion will immediately be healed."
+21,6,Verhindert den Austausch von Pokémon durch Attacken.,"Ein Pokémon mit dieser Fähigkeit kann nicht mit Attacken wie []{move:whirlwind} ausgetauscht werden.
+
+[]{move:dragon-tail} und []{move:circle-throw} verursachen trotzdem Schaden.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, erhöht sich die Erfolgsrate beim Angeln."
 21,9,Prevents being forced out of battle by other Pokémon's moves.,"This Pokémon cannot be forced out of battle by moves such as []{move:whirlwind}.
 
 []{move:dragon-tail} and []{move:circle-throw} still inflict damage against this Pokémon.
 
 Overworld: If the lead Pokémon has this ability, the success rate while fishing is increased."
+22,6,Senkt den []{mechanic:attack} des Gegners um 1 [Stufe]{mechanic:stat-modifier} beim Betreten des Kampfes.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, wird der []{mechanic:attack} des Gegners um 1 [Stufe]{mechanic:stat-modifier} gesenkt. Im Mehrfachkämpfen werden alle Gegner beeinflusst.
+
+Diese Fähigkeit löst auch aus, wenn sie im Kampf erlangt wurde, aber nicht, wenn sie verloren und zurückerlangt wurde.
+
+Die Fähigkeit hat keinen Einfluss auf Gegner mit einem []{move:substitute}.
+
+Außerhalb vom Kampf: Wenn das erste Pokémon im Team diese Fähigkeit hat, dann hat jede Begegnung mit einem Pokémon das 5 oder mehr Level niedriger ist, eine Chance von 50% übersprungen zu werden."
 22,9,Lowers opponents' [Attack]{mechanic:attack} one [stage]{mechanic:stat-modifier} upon entering battle.,"When this Pokémon enters battle, the opponent's [Attack]{mechanic:attack} is lowered by one [stage]{mechanic:stat-modifier}.  In a double battle, both opponents are affected.
 
 This ability also takes effect when acquired during a battle, but will not take effect again if lost and reobtained without leaving battle.
@@ -83,12 +167,25 @@ This ability also takes effect when acquired during a battle, but will not take
 This ability has no effect on an opponent that has a []{move:substitute}.
 
 Overworld: If the first Pokémon in the party has this ability, any random encounter with a Pokémon five or more levels lower than it has a 50% chance of being skipped."
+23,6,"Verhindert, dass der Gegner flieht oder ausgetauscht wird.","Während ein Pokémon mit dieser Fähigkeit im Kampf ist, kann der Gegner nicht fliehen oder ausgetauscht werden.
+
+Andere Pokémon mit derselben Fähigkeit sind nicht betroffen. Pokémon mit []{ability:run-away} können trotzdem fliehen. Pokémon können mit bestimmten Items oder Attacken ausgetauscht werden."
 23,9,Prevents opponents from fleeing or switching out.,"While this Pokémon is in battle, opposing Pokémon cannot flee or switch out.
 
 Other Pokémon with this ability are unaffected.  Pokémon with []{ability:run-away} can still flee.  Pokémon can still switch out with the use of a move or item."
+24,6,Angreifende Pokémon erhalten 1/8 ihrer maximalen []{mechanic:hp} Schaden bei Kontakt.,"Wenn eine gegnerische Attacke Kontakt mit einem Pokémon mit dieser Fähigkeit hat, erleidet der Angreifer 1/8 seiner maximalen []{mechanic:hp} Schaden.
+
+Diese Fähigkeit ist identisch mit []{ability:iron-barbs}."
 24,9,Damages attacking Pokémon for 1/8 their max [HP]{mechanic:hp} on contact.,"Whenever a move makes contact with this Pokémon, the move's user takes 1/8 of its maximum [HP]{mechanic:hp} in damage.
 
 This ability functions identically to []{ability:iron-barbs}."
+25,6,Schützt gegen Schaden verursachende Attacken die nicht [sehr effektiv]{mechanic:super-effective} sind.,"Ein Pokémon mit dieser Fähigkeit ist immun gegen alle Schaden verursachenden Attacken die nicht [sehr effektiv]{mechanic:super-effective} sind.
+
+Attacken die festen Schaden verursachen, wie []{move:night-shade} oder []{move:seismic-toss} werden mitgezählt. Schaden der nicht direkt durch die Attacke verursacht wird, wie der vom []{mechanic:weather}, einer []{mechanic:status-ailment} oder []{move:spikes} wird nicht verhindert.
+
+Diese Fähigkeit kann nicht mit []{move:role-play} kopiert oder mit []{move:skill-swap} getauscht werden, kann aber mit []{ability:trace} kopiert, mit []{move:gastro-acid} deaktiviert oder mit []{move:worry-seed} geändert werden. Das Pokémon kann seine Fähigkeit trotzdem mit []{move:role-play} selbst tauschen.
+
+Wenn das Pokémon einen []{move:substitute} hat, werden Attacken zuerst durch die Fähigkeit verhindert, erst Attacken die trotzdem treffen würden, würden durch den []{move:substitute} verhindert."
 25,9,Protects against damaging moves that are not [super effective]{mechanic:super-effective}.,"This Pokémon is immune to damaging moves that are not [super effective]{mechanic:super-effective} against it.
 
 Moves that inflict fixed damage, such as []{move:night-shade} or []{move:seismic-toss}, are considered super effective if their types are.  Damage not directly dealt by moves, such as damage from [weather]{mechanic:weather}, a [status ailment]{mechanic:status-ailment}, or []{move:spikes}, is not prevented.
@@ -96,78 +193,157 @@ Moves that inflict fixed damage, such as []{move:night-shade} or []{move:seismic
 This ability cannot be copied with []{move:role-play} or traded away with []{move:skill-swap}, but it can be copied with []{ability:trace}, disabled with []{move:gastro-acid}, or changed with []{move:worry-seed}.  This Pokémon can still use Role Play itself to lose this ability, but not Skill Swap.
 
 If this Pokémon has a []{move:substitute}, this ability will block moves as usual and any moves not blocked will react to the Substitute as usual."
+26,6,Verhindert []{type:ground} Attacken,"Ein Pokémon mit dieser Fähigkeit ist immun gegen []{type:ground} Attacken, []{move:spikes}, []{move:toxic-spikes} und []{ability:arena-trap}.
+
+Diese Fähigkeit wird mit []{move:gravity} oder []{move:ingrain} deaktiviert oder während eine []{item:iron-ball} getragen wird. []{move:roost} deaktiviert diese Fähigkeit nicht."
 26,9,Evades []{type:ground} moves.,"This Pokémon is immune to []{type:ground}-type moves, []{move:spikes}, []{move:toxic-spikes}, and []{ability:arena-trap}.
 
 This ability is disabled during []{move:gravity} or []{move:ingrain}, or while holding an []{item:iron-ball}.  This ability is not disabled during []{move:roost}."
+27,6,"Hat eine 30% Chance bei Kontakt entweder []{mechanic:paralysis}, []{mechanic:poison} oder []{mechanic:sleep} auszulösen.","Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke getroffen wird, die Kontakt herstellt, besteht eine 30% Chance, dass der Angreifer [paralysiert]{mechanic:paralysis} oder [vergiftet]{mechanic:poison} wird oder [einschläft]{mechanic:sleep}.
+
+Dabei wird nicht berücksichtigt ob der Angreifer immun gegen eine der [Statusänderungen]{mechanic:status-ailment} ist, es besteht nur eine geringere Chance."
 27,9,"Has a 30% chance of inflcting either [paralysis]{mechanic:paralysis}, [poison]{mechanic:poison}, or [sleep]{mechanic:sleep} on attacking Pokémon on contact.","Whenever a move makes contact with this Pokémon, the move's user has a 30% chance of being [paralyzed]{mechanic:paralysis}, [poisoned]{mechanic:poison}, or put to [sleep]{mechanic:sleep}, chosen at random.
 
 Nothing is done to compensate if the move's user is immune to one of these ailments; there is simply a lower chance that the move's user will be affected."
+28,6,"Kopiert []{mechanic:burn}, []{mechanic:paralysis} und []{mechanic:poison} auf den Verursacher.","Wenn ein Pokémon mit dieser Fähigkeit [verbrannt]{mechanic:burn}, [paralysiert]{mechanic:paralysis} oder [vergiftet]{mechanic:poison} wird, erhält das verantwortliche Pokémon die gleiche []{mechanic:status-ailment}.
+
+Diese Fähigkeit gibt schwere []{mechanic:poison} als schwere []{mechanic:poison} zurück. Die Fähigkeit funktioniert nicht bei [Statusänderungen]{mechanic:status-ailment} die nicht direkt von einem anderen Pokémon erhalten wurden, so wie []{mechanic:poison} von []{move:toxic-spikes} oder die []{mechanic:burn} durch []{item:flame-orb}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, haben wilde Pokémon eine Chance von 50% dasselbe Wesen wie das des Pokémons zu haben. Das gilt nicht für Pokémon die außerhalb von Kämpfen erhalten werden oder sich bewegende Legendäre Pokémon."
 28,9,"Copies [burns]{mechanic:burn}, [paralysis]{mechanic:paralysis}, and [poison]{mechanic:poison} received onto the Pokémon that inflicted them.","Whenever this Pokémon is [burned]{mechanic:burn}, [paralyzed]{mechanic:paralysis}, or [poisoned]{mechanic:poison}, the Pokémon who gave this Pokémon that ailment is also given the ailment.
 
 This ability passes back bad poison when this Pokémon is badly poisoned.  This ability cannot pass on a status ailment that the Pokémon did not directly receive from another Pokémon, such as the poison from []{move:toxic-spikes} or the burn from a []{item:flame-orb}.
 
 Overworld: If the lead Pokémon has this ability, wild Pokémon have a 50% chance of having the lead Pokémon's nature, and a 50% chance of being given a random nature as usual, including the lead Pokémon's nature.  This does not work on Pokémon received outside of battle or roaming legendaries."
+29,6,Verhindert negative []{mechanic:stat-modifier} von anderen Pokémon.,"Pokémon mit dieser Fähigkeit können keine negativen [Statuswerte Änderungen]{mechanic:stat-modifier} von anderen Pokémon zugefügt werden.
+
+Diese Fähigkeit verhindert keine []{mechanic:stat-modifier} die nicht direkt verursacht wurden, wie die verminderte []{mechanic:speed} durch []{mechanic:paralysis} oder selbstverursachte negative Statuswerteänderungen wie durch []{move:overheat}. Dem Pokémon können trotzdem negative Statuswerte mit []{move:guard-swap}, []{move:heart-swap} oder []{move:power-swap} übertragen werden.
+
+Diese Fähigkeit ist identisch mit []{ability:white-smoke} im Kampf."
 29,9,Prevents stats from being [lowered]{mechanic:stat-modifier} by other Pokémon.,"This Pokémon cannot have its stats [lowered]{mechanic:stat-modifier} by other Pokémon.
 
 This ability does not prevent any stat losses other than [stat modifiers]{mechanic:stat-modifiers}, such as the [Speed]{mechanic:speed} cut from [paralysis]{mechanic:paralysis}.  This Pokémon can still be passed negative stat modifiers through []{move:guard-swap}, []{move:heart-swap}, or []{move:power-swap}.
 
 This ability functions identically to []{ability:white-smoke} in battle."
+30,6,Heilt jede []{mechanic:major-status-ailment} beim Auswechseln,"Wenn ein Pokémon mit dieser Fähigkeit ausgewechselt wird, wird es von einer etwaigen []{mechanic:major-status-ailment} geheilt.
+
+Wenn diese Fähigkeit während des Kampfes erlangt wird, wird das Pokémon beim Auswechseln geheilt, bevor es die Fähigkeit wieder verliert."
 30,9,Cures any [major status ailment]{mechanic:major-status-ailment} upon switching out.,"This Pokémon is cured of any [major status ailment]{mechanic:major-status-ailment} when it is switched out for another Pokémon.
 
 If this ability is acquired during battle, the Pokémon is cured upon leaving battle before losing the temporary ability."
+31,6,Leitet []{type:electric} Attacken mit nur einem Ziel auf dieses Pokémon um. Absorbiert []{type:electric} Attacken und erhöht dabei den []{mechanic:special-attack} um 1 [Stufe]{mechanic:stat-modifier}.,"Wenn sich ein Pokémon mit dieser Fähigkeit im Kampf befindet, werden alle []{type:electric} Attacken die nur 1 Ziel haben auf dieses Pokémon umgeleitet, sofern es ein mögliches Ziel ist. Wird es von []{type:electric} Attacken getroffen, erhöht sich sein []{mechanic:special-attack} um 1 [Stufe]{mechanic:stat-modifier}, jeder andere Effekt der Attacke wird ignoriert.
+
+Wenn das eigentliche Ziel der Attacke ebenfalls diese Fähigkeit besitzt, wird sie nicht umgeleitet. Gibt es mehrere Pokémon mit dieser Fähigkeit, wird die Attacke zu dem mit der höchsten []{mechanic:speed} umgeleitet, oder, falls alle die gleiche haben, zu einem zufälligen Pokémon. []{move:follow-me} wirkt vor dieser Fähigkeit.
+
+Wenn das Pokémon mit dieser Fähigkeit vom Typ []{type:ground} ist, verhindert seine []{type:electric} Immunität das Ansteigen des [Spezialangriffs]{mechanic:special-attack}."
 31,9,"Redirects single-target []{type:electric} moves to this Pokémon where possible.  Absorbs Electric moves, raising [Special Attack]{mechanic:special-attack} one [stage]{mechanic:stat-modifier}.","All other Pokémon's single-target []{type:electric}-type moves are redirected to this Pokémon if it is an eligible target.  Other Pokémon's Electric moves raise this Pokémon's [Special Attack]{mechanic:special-attack} one [stage]{mechanic:stat-modifier}, negating any other effect on it, and cannot miss it.
 
 If the move's intended target also has this ability, the move is not redirected.  When multiple Pokémon with this ability are possible targets for redirection, the move is redirected to the one with the highest [Speed]{mechanic:speed} stat, or, in the case of a tie, to a random tied Pokémon.  []{move:follow-me} takes precedence over this ability.
 
 If the Pokémon is a []{type:ground}-type and thus immune to Electric moves, its immunity prevents the Special Attack boost."
+32,6,Verdoppelt die Chance das ein Zusatzeffekt beim Einsatz einer Attacke auftritt,"Attacken von Pokémon mit dieser Fähigkeit treten doppelt so häufig auf wie normal.
+
+Ein Zusatzeffekt ist die Chance einer Attacke, als ""Effectchance"" bezeichnet, eine []{mechanic:status-ailment} oder eine []{mechanic:stat-modifier} hervorzurufen oder das Ziel [zurückschrecken]{mechanic:flinching} zu lassen, zusätzlich zum Haupteffekt einer Attacke. Zum Beispiel ist die []{mechanic:paralysis} die []{move:thunder-shock} verursachen kann ein Zusatzeffekt, im Gegensatz zu []{move:thunder-wave}, genauso wie das Entfernen des Items durch []{move:knock-off} und das Erhöhen der [kritischen Trefferchance]{mechanic:critial-hit} durch []{move:air-cutter}.
+
+[]{move:secret-power} ist davon unberührt."
 32,9,Doubles the chance of moves' extra effects occurring.,"This Pokémon's moves have twice their usual effect chance.
 
 An effect chance is a move's chance to inflict a [status ailment]{mechanic:status-ailment}, cause a [stat change]{mechanic:stat-modifier}, or make the target [flinch]{mechanic:flinching} in addition to the move's main effect.  For example, []{move:flamethrower}'s chance of [burning]{mechanic:burn} the target is doubled, but []{move:protect}'s chance of success and []{move:air-cutter}'s increased [critical hit]{mechanic:critical-hit} rate are unaffected.
 
 []{move:secret-power} is unaffected."
+33,6,Verdoppelt die []{mechanic:speed} während es [regnet]{mechanic:rain}.,"Die []{mechanic:speed} eines Pokémon mit dieser Fähigkeit ist doppelt so hoch wie normal, solange es [regnet]{mechanic:rain}.
+
+Dieser Bonus zählt nicht als []{mechanic:stat-modifier}."
 33,9,Doubles [Speed]{mechanic:speed} during [rain]{mechanic:rain}.,"This Pokémon's [Speed]{mechanic:speed} is doubled during [rain]{mechanic:rain}.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}."
+34,6,Verdoppelt die []{mechanic:speed} während [starkem Sonnenlicht]{mechanic:strong-sunlight}.,"Während []{mechanic:strong-sunlight} ist die []{mechanic:speed} eines Pokémon mit dieser Fähigkeit doppelt so hoch wie normal.
+
+Dieser Bonus zählt nicht als []{mechanic:stat-modifier}."
 34,9,Doubles [Speed]{mechanic:speed} during [strong sunlight]{mechanic:strong-sunlight}.,"This Pokémon's [Speed]{mechanic:speed} is doubled during [strong sunlight]{mechanic:strong-sunlight}.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}."
+35,6,"Verdoppelt die Wahrscheinlichkeit, einem wilden Pokémon zu begegnen.","Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, ist die Wahrscheinlichkeit einem wilden Pokémon zu begegnen doppelt so hoch wie normal.
+
+Diese Fähigkeit hat im Kampf keinen Effekt."
 35,9,Doubles the wild encounter rate.,"Overworld: If the lead Pokémon has this ability, the wild encounter rate is doubled.
 
 This ability has no effect in battle."
+36,6,Kopiert die Fähigkeit des Gegners beim Betreten des Kampfes.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, kopiert es die Fähigkeit eines zufällig ausgewählten Gegners.
+
+[]{ability:flower-gift}, []{ability:forecast}, []{ability:illusion}, []{ability:imposter}, []{ability:multitype}, []{ability:trace}, []{ability:wonder-guard} und []{ability:zen-mode} können nicht kopiert werden."
 36,9,Copies an opponent's ability upon entering battle.,"When this Pokémon enters battle, it copies a random opponent's ability.
 
 This ability cannot copy []{ability:flower-gift}, []{ability:forecast}, []{ability:illusion}, []{ability:imposter}, []{ability:multitype}, []{ability:trace}, []{ability:wonder-guard}, or []{ability:zen-mode}."
+37,6,Verdoppelt den []{mechanic:attack} im Kampf.,"Solange sich ein Pokémon mit dieser Fähigkeit im Kampf befindet ist sein []{mechanic:attack} doppelt so hoch wie sonst.
+
+Dieser Bonus zählt nicht als []{mechanic:stat-modifier}.
+
+Diese Fähigkeit ist identisch mit []{ability:pure-power}."
 37,9,Doubles [Attack]{mechanic:attack} in battle.,"This Pokémon's [Attack]{mechanic:attack} is doubled while in battle.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}.
 
 This ability functions identically to []{ability:pure-power}."
+38,6,Hat eine 30% Chance den Gegner bei Kontakt zu [vergiften]{mechanic:poison}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke mit Kontakt getroffen wird, besteht eine 30% Chance den Angreifer zu [vergiften]{mechanic:poison}."
 38,9,Has a 30% chance of [poisoning]{mechanic:poison} attacking Pokémon on contact.,"Whenever a move makes contact with this Pokémon, the move's user has a 30% chance of being [poisoned]{mechanic:poison}."
+39,6,Verhindert [zurückschrecken]{mechanic:flinching}.,Ein Pokémon mit dieser Fähigkeit kann nicht [zurückschrecken]{mechanic:flinching}.
 39,9,Prevents [flinching]{mechanic:flinching}.,This Pokémon cannot [flinch]{mechanic:flinching}.
+40,6,Verhindert [einfrieren]{mechanic:freezing}.,"Ein Pokémon mit dieser Fähigkeit kann nicht [einfrieren]{mechanic:freezing}.
+
+Erhält ein [eingefrorenes]{mechanic:freezing} Pokémon diese Fähigkeit, taut es sofort auf. Das bezieht das Wiedererlangen dieser Fähigkeit nach dem Kampf mit ein.
+
+Außerhalb vom Kampf: Wenn ein Pokémon im Team diese Fähigkeit hat, wird der []{mechanic:hatch-counter} um 2 statt um 1 pro []{mechanic:step-cycle} reduziert, was dazu führt, dass Eier doppelt so schnell schlüpfen. Dieser Effekt stapelt sich nicht, wenn mehrere Pokémon diese Fähigkeit oder []{ability:flame-body} haben."
 40,9,Prevents [freezing]{mechanic:freezing}.,"This Pokémon cannot be [frozen]{mechanic:freezing}.
 
 If a Pokémon is frozen and acquires this ability, it will immediately thaw out; this includes when regaining a lost ability upon leaving battle.
 
 Overworld: If any Pokémon in the party has this ability, each egg in the party has its [hatch counter]{mechanic:hatch-counter} decreased by 2 (rather than 1) each [step cycle]{mechanic:step-cycle}, making eggs hatch roughly twice as quickly.  This effect does not stack if multiple Pokémon have this ability or []{ability:flame-body}."
+41,6,Verhindert []{mechanic:burn}.,"Ein Pokémon mit dieser Fähigkeit kann keine []{mechanic:burn} erleiden.
+
+Wenn ein Pokémon mit []{mechanic:burn} diese Fähigkeit erhält, wird es von der []{mechanic:burn} geheilt. Das bezieht das Wiedererlangen dieser Fähigkeit nach dem Kampf mit ein."
 41,9,Prevents [burns]{mechanic:burn}.,"This Pokémon cannot be [burned]{mechanic:burn}.
 
 If a Pokémon is burned and acquires this ability, its burn is healed; this includes when regaining a lost ability upon leaving battle."
+42,6,"Verhindert, dass []{type:steel} Pokémon fliehen oder ausgetauscht werden können.","Solange sich ein Pokémon mit dieser Fähigkeit im Kampf befindet, werden []{type:steel} Pokémon daran gehindert zu fliehen oder ausgetauscht zu werden.
+
+Pokémon mit der Fähigkeit []{ability:run-away} können trotzdem fliehen. Pokémon können trotzdem mit Hilfe von bestimmten Items oder Attacken ausgetauscht werden.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, erhöht sich die Chance wilden []{type:steel} Pokémon zu begegnen."
 42,9,Prevents []{type:steel} opponents from fleeing or switching out.,"While this Pokémon is in battle, opposing []{type:steel}-type Pokémon cannot flee or switch out.
 
 Pokémon with []{ability:run-away} can still flee.  Pokémon can still switch out with the use of a move or item.
 
 Overworld: If the lead Pokémon has this ability, Steel-type Pokémon have a higher encounter rate."
+43,6,Schütz vor Schall Attacken.,"Pokémon mit dieser Fähigkeit sind immun gegen Attacken die schallbasiert sind.
+
+[]{move:heal-bell} wird nicht verhindert. []{move:uproar} hindert die Pokémon trotzdem am [einschlafen]{mechanic:sleep}. Dieses Pokémon kann trotzdem einen []{move:perish-song} Zähler durch []{move:baton-pass} erhalten, und es wird einen Zähler behalten, wenn es die Fähigkeit nach Einsatz von []{move:perish-song} erhalten hat.
+
+[]{move:howl}, []{move:roar-of-time}, []{move:sonic-boom} und []{move:yawn} sind keine schallbasierten Attacken."
 43,9,Protects against sound-based moves.,"This Pokémon is immune to moves flagged as being sound-based.
 
 []{move:heal-bell} is unaffected.  []{move:uproar} still prevents this Pokémon from [sleeping]{mechanic:sleep}.  This Pokémon can still receive a Perish Song counter through []{move:baton-pass}, and will retain a Perish Song counter if it acquires this ability after Perish Song is used.
 
 []{move:howl}, []{move:roar-of-time}, []{move:sonic-boom}, and []{move:yawn} are not flagged as sound-based."
+44,6,Heilt jede Runde 1/16 der maximalen []{mechanic:hp} wenn es [regnet]{mechanic:rain}.,Pokémon mit dieser Fähigkeit heilen am Ende jeder Runde 1/16 ihrer maximalen []{mechanic:hp} wenn es [regnet]{mechanic:rain}.
 44,9,Heals for 1/16 max [HP]{mechanic:hp} after each turn during [rain]{mechanic:rain}.,This Pokémon heals for 1/16 of its maximum [HP]{mechanic:hp} after each turn during [rain]{mechanic:rain}.
+45,6,Beschwört beim Betreten des Kampfes einen []{mechanic:sandstorm} herauf der nicht endet.,"Das []{mechanic:weather} ändert sich zu []{mechanic:sandstorm} wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt und hört erst auf, wenn es von einem anderen []{mechanic:weather} abgelöst wird.
+
+Wenn mehrere Pokémon mit dieser Fähigkeit, []{ability:drizzle}, []{ability:drought} oder []{ability:snow-warning} zur selben Zeit den Kampf betreten, werden die Fähigkeiten nach Reihenfolge der []{mechanic:speed} der Pokémon ausgelöst, unter Berücksichtigung von []{move:trick-room}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen im Sandsturm nur halb so viele Pokémon auf."
 45,9,Summons a [sandstorm]{mechanic:sandstorm} that lasts indefinitely upon entering battle.,"The [weather]{mechanic:weather} changes to a [sandstorm]{mechanic:sandstorm} when this Pokémon enters battle and does not end unless cancelled by another weather condition.
 
 If multiple Pokémon with this ability, []{ability:drizzle}, []{ability:drought}, or []{ability:snow-warning} are sent out at the same time, the abilities will activate in order of [Speed]{mechanic:speed}, respecting []{move:trick-room}.  Each ability's weather will cancel the previous weather, and only the weather summoned by the slowest of the Pokémon will stay.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is halved in a sandstorm."
+46,6,Erhöht die []{mechanic:pp} Kosten des Gegners um 1.,"Attacken die ein Pokémon mit dieser Fähigkeit zum Ziel haben, kosten 1 []{mechanic:pp} mehr als sonst.
+
+Die Fähigkeit löst für jeden Treffer von Attacken die öfters treffen aus. Die Fähigkeit löst auch bei Attacken aus die fehlschlagen oder daneben gehen. Der Effekt zählt nicht für Attacken desselben Teams die das Ganze Feld oder nur die eigene Seite treffen, sowie die eigenen Attacken die sich selbst treffen. Der Effekt löst dafür bei Attacken von Teammitgliedern aus die nur das Pokémon mit dieser Fähigkeit zum Ziel haben, die alle anderen zum Ziel haben und Attacken von Gegnern die das ganze Feld treffen. Wenn diese Fähigkeit die Kosten auf einen Wert erhöht, der die verbleibenden []{mechanic:pp} übersteigt, wird es alle verbrauchen.
+
+Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, werden alle Trainer über diese Fähigkeit benachrichtigt.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen Pokémon mit einem höheren Level häufiger auf."
 46,9,Increases the [PP]{mechanic:pp} cost of moves targetting the Pokémon by one.,"Moves targetting this Pokémon use one extra [PP]{mechanic:pp}.
 
 This ability stacks if multiple targets have it.  This ability still affects moves that fail or miss.  This ability does not affect ally moves that target either the entire field or just its side, nor this Pokémon's self-targetted moves; it does, however, affect single-targetted ally moves aimed at this Pokémon, ally moves that target all other Pokémon, and opponents' moves that target the entire field.  If this ability raises a move's PP cost above its remaining PP, it will use all remaining PP.
@@ -175,27 +351,57 @@ This ability stacks if multiple targets have it.  This ability still affects mov
 When this Pokémon enters battle, all participating trainers are notified that it has this ability.
 
 Overworld: If the lead Pokémon has this ability, higher-levelled Pokémon have their encounter rate increased."
+47,6,Halbiert den Schaden von []{type:fire} und []{type:ice} Attacken.,Pokémon mit dieser Fähigkeit erhält von []{type:fire} und []{type:ice} Attacken nur halben Schaden.
 47,9,Halves damage from []{type:fire} and []{type:ice} moves.,This Pokémon takes half as much damage from []{type:fire}- and []{type:ice}-type moves.
+48,6,Pokémon [wachen]{mechanic:sleep} doppelt so schnell wieder auf.,"Bei Pokémon mit dieser Fähigkeit sinkt die Anzahl der Verbleibenden Runden im [Schlaf]{mechanic:sleep} pro Runde um 2 statt um 1.
+
+Wenn der Zähler bei 1 ist fällt er auf 0 und das Pokémon [wacht auf]{mechanic:sleep}."
 48,9,Makes [sleep]{mechanic:sleep} pass twice as quickly.,"This Pokémon's remaining sleep turn count falls by 2 rather than 1.
 
 If this Pokémon's sleep counter is at 1, it will fall to 0 and then the Pokémon will wake up."
+49,6,"Hat eine 30% Chance, bei Kontakt []{mechanic:burn} auszulösen.","Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke getroffen wird die Kontakt herstellt, besteht eine 30% Chance, den Gegner zu [verbrennen]{mechanic:burn}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon im Team diese Fähigkeit hat, wird der []{mechanic:hatch-counter} um 2 statt um 1 pro []{mechanic:step-cycle} reduziert, was dazu führt, dass Eier doppelt so schnell schlüpfen. Dieser Effekt stapelt sich nicht, wenn mehrere Pokémon diese Fähigkeit oder []{ability:magma-armor} haben."
 49,9,Has a 30% chance of [burning]{mechanic:burn} attacking Pokémon on contact.,"Whenever a move makes contact with this Pokémon, the move's user has a 30% chance of being [burned]{mechanic:burn}.
 
 Overworld: If any Pokémon in the party has this ability, each egg in the party has its [hatch counter]{mechanic:hatch-counter} decreased by 2 (rather than 1) each [step cycle]{mechanic:step-cycle}, making eggs hatch roughly twice as quickly.  This effect does not stack if multiple Pokémon have this ability or []{ability:magma-armor}."
+50,6,"Stellt sicher, dass die Flucht vor wilden Pokémon gelingt.","Pokémon mit dieser Fähigkeit können immer aus Kämpfen mit wilden Pokémon fliehen, selbst wenn es durch eine Attacke oder eine Fähigkeit [gefangen]{mechanic:trapped} ist."
 50,9,Ensures success fleeing from wild battles.,"This Pokémon is always successful fleeing from wild battles, even if [trapped]{mechanic:trapped} by a move or ability."
+51,6,Verhindert das [Absenken]{mechanic:stat-modifier} der []{mechanic:accuracy}.,"Pokémon mit dieser Fähigkeit kann die []{mechanic:accuracy} nicht [gesenkt]{mechanic:stat-modifier} werden.
+
+Die Fähigkeit verhindert nur direkte [Statuswertveränderungen]{mechanic:stat-modifier}, der [Genauigkeitsverlust]{mechanic:accuracy} durch []{mechanic:fog} wird nicht verhindert, auch nicht das Erhöhen des [Fluchtwerts]{mechanic:evasion} des Gegners. Pokémon mit dieser Fähigkeit kann trotzdem negative []{mechanic:accuracy} durch []{move:heart-swap} übertragen werden.
+
+Außerhalb vom Kampf: Wenn das erste Pokémon im Team diese Fähigkeit hat, dann hat jede Begegnung mit einem Pokémon das 5 oder mehr Level niedriger ist, eine Chance von 50% übersprungen zu werden."
 51,9,Prevents [accuracy]{mechanic:accuracy} from being [lowered]{mechanic:stat-modifier}.,"This Pokémon cannot have its [accuracy]{mechanic:accuracy} [lowered]{mechanic:stat-modifier}.
 
 This ability does not prevent any accuracy losses other than [stat modifiers]{mechanic:stat-modifiers}, such as the accuracy cut from [fog]{mechanic:fog}; nor does it prevent other Pokémon's [evasion]{mechanic:evasion} from making this Pokémon's moves less accurate.  This Pokémon can still be passed negative accuracy modifiers through []{move:heart-swap}.
 
 Overworld: If the first Pokémon in the party has this ability, any random encounter with a Pokémon five or more levels lower than it has a 50% chance of being skipped."
+52,6,Verhindert das [Absenken]{mechanic:stat-modifier} des [Angriffs]{mechanic:attack}.,"Pokémon mit dieser Fähigkeit kann der []{mechanic:attack} nicht [gesenkt]{mechanic:stat-modifier} werden.
+
+Die Fähigkeit verhindert nur [Statuswertveränderungen]{mechanic:stat-modifier}, der [verminderte]{mechanic:stat-modifier} []{mechanic:attack} durch []{mechanic:burn} wird nicht verhindert. Pokémon mit dieser Fähigkeit können trotzdem negative []{mechanic:accuracy} durch []{move:heart-swap} oder []{move:power-swap} übertragen werden."
 52,9,Prevents [Attack]{mechanic:attack} from being [lowered]{mechanic:stat-modifiers} by other Pokémon.,"This Pokémon's [Attack]{mechanic:attack} cannot be [lowered]{mechanic:stat-modifier} by other Pokémon.
 
 This ability does not prevent any Attack losses other than [stat modifiers]{mechanic:stat-modifiers}, such as the Attack cut from a [burn]{mechanic:burn}.  This Pokémon can still be passed negative Attack modifiers through []{move:heart-swap} or []{move:power-swap}."
+53,6,Hebt benutzte oder [weggeschleuderte]{move:fling} getragene Items von anderen Pokémon auf. Kann nach dem Kampf ein Item aufheben.,"Wenn ein Pokémon mit dieser Fähigkeit nicht bereits ein Item hält und ein anderes Pokémon ein getragenes Item verbraucht oder [wegschleudert]{move:fling}, hebt es das Item am Ende der Runde auf. Nach jedem Kampf besteht eine 10% Chance, dass das Pokémon ein Item aufhebt wenn es nicht bereits eines trägt.
+
+[]{item:air-balloon} und []{item:eject-button} können nicht aufgehoben werden.
+
+Die gefundenen Items variieren je nach Spiel und, seit Smaragd, dem Level des Pokémons mit dieser Fähigkeit. Die Fähigkeit wird überprüft wenn der Kampf endet und temporär erlangte Fähigkeiten wieder weg sind."
 53,9,Picks up other Pokémon's used and [Flung]{move:fling} held items.  May also pick up an item after battle.,"At the end of each turn, if another Pokémon consumed or [Flung]{move:fling} a held item that turn, this Pokémon picks up the item if it is not already holding one.  After each battle, this Pokémon has a 10% chance of picking up an item if it is not already holding one.
 
 The []{item:air-balloon} and []{item:eject-button} cannot be picked up.
 
 The items that may be found vary by game, and, since Pokémon Emerald, by the Pokémon's level.  This ability is checked after the battle ends, at which point any temporary ability changes have worn off."
+54,6,Überspringt jede zweite Runde.,"Pokémon mit dieser Fähigkeit überspringen jede zweite Runde statt eine Attacke einzusetzen (""faulenzen"").
+
+Faulenzen unterbricht Attacken die über mehrere Runden gehen genauso wie []{mechanic:paralysis}, [Zurückschrecken]{mechanic:flinching} usw. Die meisten dieser Attacken, wie []{move:bide} oder []{move:rollout}, werden einfach abgebrochen, wenn das Pokémon faulenzt. Attacken nach denen eine Runde aufgeladen werden muss, wie []{move:hyper-beam}, müssen nicht aufgeladen werden, Attacken mit Vorbereitungsrunde, wie []{move:fly}, werden nicht abgebrochen. Attacken die mehrere Runden dauern aber bei einem Fehlschlag nicht enden, wie []{move:outrage}, []{move:uproar}, oder jede von []{move:encore} erzwungene Attacke, enden nicht, wenn das Pokémon faulenzt.
+
+Wenn das Pokémon [verwirrt]{mechanic:confusion} ist, wird die []{mechanic:confusion} nicht beachtet beim Faulenzen, das Pokémon verletzt sich nicht selbst und die []{mechanic:confusion} endet nicht früher deswegen.
+
+Wenn das Pokémon versucht sich zu bewegen aber von []{mechanic:paralysis} oder []{move:gravity} daran gehindert wird, zählt das trotzdem als erfolgreich und es wird die nächste Runde faulenzen. Wenn es nicht versucht sich zu bewegen, weil es beispielsweise [schläft]{mechanic:sleep} oder [eingefroren]{mechanic:freezing} ist, wird das was es versucht hat verschoben bis zum nächsten Versuch, der eine Attacke oder faulenzen sein kann, abhängig davon, was es zuletzt tat.
+
+Diese Fähigkeit kann nicht mit []{move:worry-seed} ausgetauscht werden, aber mit []{move:gastro-acid} deaktiviert, mit []{move:role-play} geändert oder mit []{move:skill-swap} getauscht werden."
 54,9,Skips every second turn.,"Every second turn on which this Pokémon should attempt to use a move, it will instead do nothing (""loaf around"").
 
 Loafing around interrupts moves that take multiple turns the same way [paralysis]{mechanic:paralysis}, [flinching]{mechanic:flinching}, etc do.  Most such moves, for example []{move:bide} or []{move:rollout}, are simply cut off upon loafing around.  Attacks with a recharge turn, such as []{move:hyper-beam}, do not have to recharge; attacks with a preparation turn, such as []{move:fly}, do not end up being used.  Moves that are forced over multiple turns and keep going through failure, such as []{move:outrage}, []{move:uproar}, or any move forced by []{move:encore}, keep going as usual.
@@ -205,57 +411,115 @@ If this Pokémon is [confused]{mechanic:confusion}, its confusion is not checked
 If this Pokémon attempts to move but fails, e.g. because of [paralysis]{mechanic:paralysis} or []{move:gravity}, it still counts as having moved and will loaf around the next turn.  If it does not attempt to move, e.g. because it is [asleep]{mechanic:sleep} or [frozen]{mechanic:freezing}, whatever it would have done will be postponed until its next attempt; that is, it will either loaf around or move as usual, depending on what it last did.
 
 This ability cannot be changed with []{move:worry-seed}, but it can be disabled with []{move:gastro-acid}, changed with []{move:role-play}, or traded away with []{move:skill-swap}."
+55,6,"Erhöht den Schaden von physischen Attacken um 50%, aber senkt ihre []{mechanic:accuracy} auf 80% ihres sonstigen Werts.","Physische Attacken von Pokémon mit dieser Fähigkeit verursachen 1,5× so viel [Schaden]{mechanic:regular-damage} wie sonst, haben dafür aber nur 80% ihrer normalen []{mechanic:accuracy}.
+
+Spezialattacken werden nicht beeinflusst. Attacken die festen Schaden verursachen wie []{move:seismic-toss} haben ihren normalen Schaden aber die verringerte []{mechanic:accuracy}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen Pokémon mit einem höheren Level häufiger auf."
 55,9,"Strengthens physical moves to inflict 1.5× damage, but decreases their [accuracy]{mechanic:accuracy} to 0.8×.","This Pokémon's physical moves do 1.5× as much [regular damage]{mechanic:regular-damage}, but have 0.8× their usual [accuracy]{mechanic:accuracy}.
 
 Special moves are unaffected.  Moves that do set damage, such as []{move:seismic-toss}, have their accuracy affected, but not their damage.
 
 Overworld: If the lead Pokémon has this ability, higher-levelled Pokémon have their encounter rate increased."
+56,6,Bei Kontakt besteht eine 30% Chance beim Gegner [Anziehung]{mechanic:infatuation} auszulösen.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke mit Kontakt getroffen wird, besteht eine 30% Chance, dass beim Angreifer [Anziehung]{mechanic:infatuation} ausgelöst wird.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, besteht bei allen wilden Pokémon die beide Geschlechter haben können eine 2/3 Chance, vom anderen Geschlecht zu sein und eine 1/3 Chance ein zufälliges Geschlecht zu haben."
 56,9,Has a 30% chance of [infatuating]{mechanic:infatuation} attacking Pokémon on contact.,"Whenever a move makes contact with this Pokémon, the move's user has a 30% chance of being [infatuated]{mechanic:infatuation}.
 
 Overworld: If the first Pokémon in the party has this ability, any wild Pokémon whose species can be either gender has a 2/3 chance of being set to the opposite gender, and a 1/3 chance of having a random gender as usual."
+57,6,Erhöht den []{mechanic:special-attack} um 50% wenn ein Team-Pokémon []{ability:plus} oder []{ability:minus} hat.,"Pokémon mit dieser Fähigkeit haben einen 1,5× so hohen []{mechanic:special-attack} wenn ein Team-Pokémon die Fähigkeit []{ability:plus} oder []{ability:minus} hat.
+
+Der Bonus zählt nicht als []{mechanic:stat-modifier}. Wenn eine der Fähigkeiten deaktiviert wird, z.B. von []{move:gastro-acid}, verlieren beide ihren Effekt."
 57,9,Increases [Special Attack]{mechanic:special-attack} to 1.5× when a friendly Pokémon has []{ability:plus} or []{ability:minus}.,"This Pokémon has 1.5× its [Special Attack]{mechanic:special-attack} if any friendly Pokémon has []{ability:plus} or []{ability:minus}.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}.  If either ability is disabled by []{move:gastro-acid}, both lose their effect."
+58,6,Erhöht den []{mechanic:special-attack} um 50% wenn ein Team-Pokémon []{ability:plus} oder []{ability:minus} hat.,"Pokémon mit dieser Fähigkeit haben einen 1,5× so hohen []{mechanic:special-attack} wenn ein Team-Pokémon die Fähigkeit []{ability:plus} oder []{ability:minus} hat.
+
+Der Bonus zählt nicht als []{mechanic:stat-modifier}. Wenn eine der Fähigkeiten deaktiviert wird, z.B. von []{move:gastro-acid}, verlieren beide ihren Effekt."
 58,9,Increases [Special Attack]{mechanic:special-attack} to 1.5× when a friendly Pokémon has []{ability:plus} or []{ability:minus}.,"This Pokémon has 1.5× its [Special Attack]{mechanic:special-attack} if any friendly Pokémon has []{ability:plus} or []{ability:minus}.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}.  If either ability is disabled by []{move:gastro-acid}, both lose their effect."
+59,6,Ändert den Typ von []{pokemon:castform} zu dem des [Wetters]{mechanic:weather}.,"Während es [regnet]{mechanic:rain}, [hagelt]{mechanic:hail} oder bei [starkem Sonnenlicht]{mechanic:strong-sunlight}, ändert sich der Typ des Pokémons zu []{type:water}, []{type:ice} oder []{type:fire}, respektive. Außerdem ändert sich seine Form entsprechend.
+
+Die Fähigkeit hat keinen Effekt für jedes andere Pokémon außer []{pokemon:castform}.
+
+Wenn das []{mechanic:weather} endet oder sich zu einem ändert welches diese Fähigkeit nicht beeinflusst, oder wenn ein Pokémon mit []{ability:air-lock} oder []{ability:cloud-nine} den Kampf betritt, werden Typ und Form auf den Normalwert zurückgesetzt. Wenn die Fähigkeit deaktiviert oder ausgetauscht wird, kann das Pokémon seine Form nicht ändern, bis es sie wiedererlangt."
 59,9,Changes []{pokemon:castform}'s type and form to match the [weather]{mechanic:weather}.,"During [rain]{mechanic:rain}, [strong sunlight]{mechanic:strong-sunlight}, or [hail]{mechanic:hail}, this Pokémon's type changes to []{type:water}, []{type:fire}, or []{type:ice}, respectively, and its form changes to match.
 
 This ability has no effect for any Pokémon other than []{pokemon:castform}.
 
 If the [weather]{mechanic:weather} ends or becomes anything that does not trigger this ability, or a Pokémon with []{ability:air-lock} or []{ability:cloud-nine} enters battle, this Pokémon's type and form revert to their default.  If this ability is lost or disabled, this Pokémon cannot change its current type and form until it regains its ability."
+60,6,"Verhindert, dass ein getragenes Item von einem anderen Pokémon gestohlen werden kann.","Einem Pokémon mit dieser Fähigkeit kann ein getragenes Item nicht gestohlen werden.
+
+Attacken die Schaden verursachen und Items entfernen verursachen immer noch Schaden, z.B. []{move:knock-off} oder []{move:pluck}. Das Pokémon kann trotzdem Attacken einsetzen die eigene Items entfernen, wie z.B. []{move:fling} oder []{move:trick}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, erhöht sich die Erfolgsrate beim Angeln."
 60,9,Prevents a held item from being removed by other Pokémon.,"This Pokémon's hold item cannot be removed by other Pokémon.
 
 Damaging moves that would remove this Pokémon's item can still inflict damage against this Pokémon, e.g. []{move:knock-off} or []{move:pluck}.  This Pokémon can still use moves that involve the loss of its own item, e.g. []{move:fling} or []{move:trick}.
 
 Overworld: If the lead Pokémon has this ability, the encounter rate while fishing is increased."
+61,6,Nach jeder Runde besteht eine 33% Chance von einer bestehenden [Statusänderung]{mechanic:major-status-ailment} geheilt zu werden.,Pokémon mit dieser Fähigkeit haben am Ende jeder Runde eine 33% Chance von einer bestehenden []{mechanic:major-status-ailment} geheilt zu werden.
 61,9,Has a 33% chance of curing any [major status ailment]{mechanic:major-status-ailment} after each turn.,"After each turn, this Pokémon has a 33% of being cured of any [major status ailment]{mechanic:major-status-ailment}."
+62,6,Erhöht den []{mechanic:attack} um 50% wenn das Pokémon unter einer []{mechanic:major-status-ailment} leidet.,"Wenn ein Pokémon mit dieser Fähigkeit [schläft]{mechanic:sleep}, [brennt]{mechanic:burn}, [paralysiert]{mechanic:paralysis} oder [vergiftet]{mechanic:poison} ist, ist sein []{mechanic:attack} 1,5× so hoch wie sonst. Bei Verbrennung gibt es keine Halbierung des [Angriffs]{mechanic:attack}.
+
+Der Bonus zählt nicht als [Statuswerte Änderung]{mechanic:stat-modifier}."
 62,9,Increases [Attack]{mechanic:attack} to 1.5× with a [major status ailment]{mechanic:major-status-ailment}.,"Whenever this Pokémon is [asleep]{mechanic:sleep}, [burned]{mechanic:burn}, [paralyzed]{mechanic:paralysis}, or [poisoned]{mechanic:poison}, it has 1.5× its [Attack]{mechanic:attack}.  This Pokémon is not affected by the usual Attack cut from a burn.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}."
+63,6,Erhöht die []{mechanic:defense} um 50% wenn das Pokémon unter einer []{mechanic:major-status-ailment} leidet.,"Wenn ein Pokémon mit dieser Fähigkeit unter einer []{mechanic:major-status-ailment} leidet, hat es eine 1,5× höhere []{mechanic:defense}.
+
+Der Bonus zählt nicht als [Statuswerte Änderung]{mechanic:stat-modifier}."
 63,9,Increases [Defense]{mechanic:defense} to 1.5× with a [major status ailment]{mechanic:major-status-ailment}.,"Whenever this Pokémon has a [major status ailment]{mechanic:major-status-ailment}, it has 1.5× its [Defense]{mechanic:defense}.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}."
+64,6,"Gegnern die absorbierende Attacken einsetzen, wird Schaden in der Höhe zugefügt, die die Attacke geheilt hätte.","Wenn ein Pokémon mit dieser Fähigkeit von einer absorbierenden Attacke wie []{move:absorb} getroffen wird, erleidet der Gegner so viele []{mechanic:hp} Schaden wie ihn die Attacke geheilt hätte.
+
+[]{move:dream-eater} ist davon nicht betroffen."
 64,9,Damages opponents using leeching moves for as much as they would heal.,"Whenever a Pokémon would heal after hitting this Pokémon with a leeching move like []{move:absorb}, it instead loses as many [HP]{mechanic:hp} as it would usually gain.
 
 []{move:dream-eater} is unaffected."
+65,6,Erhöht den Schaden von []{type:grass} Attacken um 50% wenn nur noch 1/3 der maximalen []{mechanic:hp} oder weniger übrig sind.,"Wenn ein Pokémon mit dieser Fähigkeit nur noch 1/3 seiner maximalen []{mechanic:hp} oder weniger hat, werden all seine []{type:grass} Attacken verstärkt, so dass sie 1,5× so viel []{mechanic:regular-damage} anrichten wie sonst."
 65,9,Strengthens []{type:grass} moves to inflict 1.5× damage at 1/3 max [HP]{mechanic:hp} or less.,"When this Pokémon has 1/3 or less of its [HP]{mechanic:hp} remaining, its []{type:grass}-type moves inflict 1.5× as much [regular damage]{mechanic:regular-damage}."
+66,6,Erhöht den Schaden von []{type:fire} Attacken um 50% wenn nur noch 1/3 der maximalen []{mechanic:hp} oder weniger übrig sind.,"Wenn ein Pokémon mit dieser Fähigkeit nur noch 1/3 seiner maximalen []{mechanic:hp} oder weniger hat, werden all seine []{type:fire} Attacken verstärkt, so dass sie 1,5× so viel []{mechanic:regular-damage} anrichten wie sonst."
 66,9,Strengthens []{type:fire} moves to inflict 1.5× damage at 1/3 max [HP]{mechanic:hp} or less.,"When this Pokémon has 1/3 or less of its [HP]{mechanic:hp} remaining, its []{type:fire}-type moves inflict 1.5× as much [regular damage]{mechanic:regular-damage}."
+67,6,Erhöht den Schaden von []{type:water} Attacken um 50% wenn nur noch 1/3 der maximalen []{mechanic:hp} oder weniger übrig sind.,"Wenn ein Pokémon mit dieser Fähigkeit nur noch 1/3 seiner maximalen []{mechanic:hp} oder weniger hat, werden all seine []{type:water} Attacken verstärkt, so dass sie 1,5× so viel []{mechanic:regular-damage} anrichten wie sonst."
 67,9,Strengthens []{type:water} moves to inflict 1.5× damage at 1/3 max [HP]{mechanic:hp} or less.,"When this Pokémon has 1/3 or less of its [HP]{mechanic:hp} remaining, its []{type:water}-type moves inflict 1.5× as much [regular damage]{mechanic:regular-damage}."
+68,6,Erhöht den Schaden von []{type:bug} Attacken um 50% wenn nur noch 1/3 der maximalen []{mechanic:hp} oder weniger übrig sind.,"Wenn ein Pokémon mit dieser Fähigkeit nur noch 1/3 seiner maximalen []{mechanic:hp} oder weniger hat, werden all seine []{type:bug} Attacken verstärkt, so dass sie 1,5× so viel []{mechanic:regular-damage} anrichten wie sonst.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, ist die Wahrscheinlichkeit einem wilden Pokémon zu begegnen doppelt so hoch wie normal."
 68,9,Strengthens []{type:bug} moves to inflict 1.5× damage at 1/3 max [HP]{mechanic:hp} or less.,"When this Pokémon has 1/3 or less of its [HP]{mechanic:hp} remaining, its []{type:bug}-type moves inflict 1.5× as much [regular damage]{mechanic:regular-damage}.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is increased."
+69,6,Schützt vor Rückstoßschaden.,"Pokémon mit dieser Fähigkeit erhalten keinen Schaden vom Rückstoß diverser Attacken.
+
+Der Rückstoß von []{move:struggle} wird nicht verhindert. Die Fähigkeit verhindert nicht den Schaden der vom Fehlschlag von []{move:jump-kick} oder []{move:high-jump-kick} verursacht wird."
 69,9,Protects against recoil damage.,"This Pokémon does not receive recoil damage from its recoil moves.
 
 []{move:struggle}'s recoil is unaffected.  This ability does not prevent crash damage from missing with []{move:jump-kick} or []{move:high-jump-kick}."
+70,6,Ändert beim Betreten des Kampfes das []{mechanic:weather} in [starkes Sonnenlicht]{mechanic:strong-sunlight}.,"Das []{mechanic:weather} ändert sich zu [starkem Sonnenlicht]{mechanic:strong-sunlight} wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt. Dieser Effekt ist dauerhaft bis das []{mechanic:weather} geändert wird.
+
+Wenn mehrere Pokémon mit dieser Fähigkeit, []{ability:drizzle}, []{ability:sand-stream} oder []{ability:snow-warning} zur selben Zeit den Kampf betreten, werden die Fähigkeiten nach Reihenfolge der []{mechanic:speed} der Pokémon ausgelöst, unter Berücksichtigung von []{move:trick-room}."
 70,9,Summons [strong sunlight]{mechanic:strong-sunlight} that lasts indefinitely upon entering battle.,"The [weather]{mechanic:weather} changes to [strong sunlight]{mechanic:strong-sunlight} when this Pokémon enters battle and does not end unless cancelled by another weather condition.
 
 If multiple Pokémon with this ability, []{ability:drizzle}, []{ability:sand-stream}, or []{ability:snow-warning} are sent out at the same time, the abilities will activate in order of [Speed]{mechanic:speed}, respecting []{move:trick-room}.  Each ability's weather will cancel the previous weather, and only the weather summoned by the slowest of the Pokémon will stay."
+71,6,"Verhindert, dass der Gegner flieht oder ausgetauscht wird wenn er nicht vom Typ []{type:flying} ist oder schwebt.","Wenn ein Pokémon mit dieser Fähigkeit im Kampf ist, kann der Gegner nicht fliehen oder ausgetauscht werden. []{type:flying} Pokémon und schwebende, z.B. durch []{ability:levitate} oder []{move:magnet-rise} sind nicht betroffen.
+
+Pokémon mit []{ability:run-away} können trotzdem fliehen. Pokémon können mit bestimmten Items oder Attacken ausgetauscht werden.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, ist die Wahrscheinlichkeit einem wilden Pokémon zu begegnen doppelt so hoch wie normal."
 71,9,Prevents opponents from fleeing or switching out.  Eluded by []{type:flying}-types and Pokémon in the air.,"While this Pokémon is in battle, opposing Pokémon cannot flee or switch out.  []{type:flying}-type Pokémon and Pokémon in the air, e.g. due to []{ability:levitate} or []{move:magnet-rise}, are unaffected.
 
 Pokémon with []{ability:run-away} can still flee.  Pokémon can still switch out with the use of a move or item.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is doubled."
+72,6,Verhindert []{mechanic:sleep}.,"Ein Pokémon mit dieser Fähigkeit kann nicht [einschlafen]{mechanic:sleep}.
+
+[]{move:rest} schlägt fehl. Wenn ein Pokémon [schläft]{mechanic:sleep} und diese Fähigkeit erhält, wacht es sofort auf. Das bezieht das Wiedererlangen dieser Fähigkeit nach dem Kampf mit ein.
+
+Diese Fähigkeit ist identisch mit []{ability:insomnia}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen Pokémon mit einem höheren Level häufiger auf."
 72,9,Prevents [sleep]{mechanic:sleep}.,"This Pokémon cannot be [asleep]{mechanic:sleep}.
 
 This causes []{move:rest} to fail altogether.  If a Pokémon is asleep and acquires this ability, it will immediately wake up; this includes when regaining a lost ability upon leaving battle.
@@ -263,6 +527,13 @@ This causes []{move:rest} to fail altogether.  If a Pokémon is asleep and acqui
 This ability functions identically to []{ability:insomnia} in battle.
 
 Overworld: If the lead Pokémon has this ability, higher-levelled Pokémon have their encounter rate increased."
+73,6,Verhindert negative []{mechanic:stat-modifier} von anderen Pokémon.,"Einem Pokémon mit dieser Fähigkeit können keine negativen [Statuswerte Änderungen]{mechanic:stat-modifier} von anderen Pokémon zugefügt werden.
+
+Diese Fähigkeit verhindert keine []{mechanic:stat-modifiers} die nicht direkt verursacht wurden, wie die verminderte []{mechanic:speed} durch []{mechanic:paralysis} oder selbstverursachte negative Statuswerteänderungen wie durch []{move:overheat}. Dem Pokémon können trotzdem negative Statuswerte mit []{move:guard-swap}, []{move:heart-swap} oder []{move:power-swap} übertragen werden.
+
+Diese Fähigkeit ist identisch mit []{ability:clear-body} im Kampf.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen wilde Pokémon nur halb so oft auf."
 73,9,Prevents stats from being [lowered]{mechanic:stat-modifier} by other Pokémon.,"This Pokémon cannot have its stats [lowered]{mechanic:stat-modifier} by other Pokémon.
 
 This ability does not prevent any stat losses other than [stat modifiers]{mechanic:stat-modifiers}, such as the [Speed]{mechanic:speed} cut from [paralysis]{mechanic:paralysis}; nor self-inflicted stat drops, such as the [Special Attack]{mechanic:special-attack} drop from []{move:overheat}; nor opponent-triggered stat boosts, such as the [Attack]{mechanic:attack} boost from []{move:swagger}.  This Pokémon can still be passed negative stat modifiers through []{move:guard-swap}, []{move:heart-swap}, or []{move:power-swap}.
@@ -270,64 +541,131 @@ This ability does not prevent any stat losses other than [stat modifiers]{mechan
 This ability functions identically to []{ability:clear-body} in battle.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is halved."
+74,6,Verdoppelt den []{mechanic:attack} im Kampf.,"Solange sich ein Pokémon mit dieser Fähigkeit im Kampf befindet ist sein []{mechanic:attack} doppelt so hoch wie sonst.
+
+Dieser Bonus zählt nicht als []{mechanic:stat-modifier}.
+
+Diese Fähigkeit ist identisch mit []{ability:huge-power}."
 74,9,Doubles [Attack]{mechanic:attack} in battle.,"This Pokémon's [Attack]{mechanic:attack} is doubled in battle.
 
 This bonus does not count as a [stat modifier]{mechanic:stat-modifier}.
 
 This ability functions identically to []{ability:huge-power}."
+75,6,Schützt vor [kritischen Treffern]{mechanic:critical-hit}.,"Attacken können keinen [kritischen Treffer]{mechanic:critical-hit} landen.
+
+Diese Fähigkeit ist identisch mit []{ability:battle-armor}."
 75,9,Protects against [critical hits]{mechanic:critical-hit}.,"Moves cannot score [critical hits]{mechanic:critical-hit} against this Pokémon.
 
 This ability functions identically to []{ability:battle-armor}."
+76,6,Entfernt alle [Wettereffekte]{mechanic:weather} aber ändert nicht das []{mechanic:weather} selbst.,"Während ein Pokémon mit dieser Fähigkeit im Kampf ist, kann das []{mechanic:weather} zwar geändert werden, hat aber keinen Effekt.
+
+Diese Fähigkeit ist identisch mit []{ability:cloud-nine}."
 76,9,"Negates all effects of [weather]{mechanic:weather}, but does not prevent the weather itself.","While this Pokémon is in battle, [weather]{mechanic:weather} can still be in play, but will not have any of its effects.
 
 This ability functions identically to []{ability:cloud-nine}."
+77,6,Verdoppelt den []{mechanic:evasion} bei []{mechanic:confusion}.,"Wenn ein Pokémon mit diese Fähigkeit [verwirrt]{mechanic:confusion} ist, ist sein []{mechanic:evasion} doppelt so hoch wie sonst."
 77,9,Doubles [evasion]{mechanic:evasion} when [confused]{mechanic:confusion}.,"When this Pokémon is [confused]{mechanic:confusion}, it has twice its [evasion]{mechanic:evasion}."
+78,6,Absorbiert []{type:electric} Attacken und erhöht dabei die []{mechanic:speed} um 1 [Stufe]{mechanic:stat-modifier}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer []{type:electric} Attacke getroffen wird, erhöht sich seine []{mechanic:speed} um 1 [Stufe]{mechanic:stat-modifier}, wobei andere Effekte der Attacke ignoriert werden.
+
+Die Fähigkeit wirkt nicht, wenn das Pokémon immun gegen []{type:electric} Attacken ist. []{type:electric} Attacken ignorieren den []{move:substitute} des Pokémons.
+
+Der Effekt wird auch bei Attacken ausgelöst die keinen Schaden verursachen, wie z.B. []{move:thunder-wave}."
 78,9,"Absorbs []{type:electric} moves, raising [Speed]{mechanic:speed} one [stage]{mechanic:stat-modifier}.","Whenever an []{type:electric}-type move hits this Pokémon, its [Speed]{mechanic:speed} rises one [stage]{mechanic:stat-modifier}, negating any other effect on it.
 
 This ability will not take effect if this Pokémon is immune to Electric moves.  Electric moves will ignore this Pokémon's []{move:substitute}.
 
 This effect includes non-damaging moves, i.e. []{move:thunder-wave}."
+79,6,Erhöht den verursachten Schaden gegen Pokémon vom gleichen Geschlecht um 25% aber senkt ihn auf 0.75% gegen das andere Geschlecht.,"Ein Pokémon mit dieser Fähigkeit verurascht gegen Gegner vom gleichen Geschlecht 25% mehr [Schaden]{mechanic:regular-damage} und gegen Pokémon vom anderen Geschlecht 25% weniger Schaden.
+
+Wenn eins der Pokémon geschlechtslos ist, wird der Schaden nicht beeinflusst."
 79,9,"Increases damage inflicted to 1.25× against Pokémon of the same gender, but decreases damage to 0.75× against the opposite gender.","This Pokémon inflicts 1.25× as much [regular damage]{mechanic:regular-damage} against Pokémon of the same gender and 0.75× as much regular damage against Pokémon of the opposite gender.
 
 If either Pokémon is genderless, damage is unaffected."
+80,6,Erhöht die []{mechanic:speed} um 1 [Stufe]{mechanic:stat-modifier} wenn das Pokémon [zurückschreckt]{mechanic:flinching}.,"Wenn ein Pokémon mit dieser Fähigkeit [zurückschreckt]{mechanic:flinching}, wird seine []{mechanic:speed} um 1 [Stufe]{mechanic:stat-modifier} erhöht."
 80,9,Raises [Speed]{mechanic:speed} one [stage]{mechanic:stat-modifier} upon [flinching]{mechanic:flinching}.,"Whenever this Pokémon [flinches]{mechanic:flinching}, its [Speed]{mechanic:speed} rises one [stage]{mechanic:stat-modifier}."
+81,6,Erhöht den []{mechanic:evasion} um 25% während es [hagelt]{mechanic:hail}. Kein Schaden durch []{mechanic:hail}.,"Während es [hagelt]{mechanic:hail} hat ein Pokémon mit dieser Fähigkeit einen um 25% erhöhten []{mechanic:evasion} und es nimmt keinen Schaden durch []{mechanic:hail}.
+
+Der Bonus zählt nicht als [Statuswerte Änderung]{mechanic:stat-modifier}.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen nur halb so viele wilde Pokémon auf wenn es schneit."
 81,9,Increases evasion to 1.25× during [hail]{mechanic:hail}.  Protects against hail damage.,"During [hail]{mechanic:hail}, this Pokémon has 1.25× its [evasion]{mechanic:evasion}, and it does not take hail damage regardless of type.
 
 The evasion bonus does not count as a [stat modifier]{mechanic:stat-modifier}.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is halved in snow."
+82,6,"Lässt das Pokémon eine getragene Beere essen, wenn es weniger als die Hälfte seiner maximalen []{mechanic:hp} hat.","Pokémon mit dieser Fähigkeit essen eine getragene Beere, wenn sie weniger als die Hälfte ihrer maximalen []{mechanic:hp} haben, unabhängig von der Auslöseschwelle der Beere."
 82,9,Makes the Pokémon eat any held Berry triggered by low [HP]{mechanic:hp} below 1/2 its max HP.,"This Pokémon eats any held Berry triggered by low [HP]{mechanic:hp} when it falls below 50% of its HP, regardless of the Berry's usual threshold."
+83,6,Erhöht den []{mechanic:attack} auf die höchste [Stufe]{mechanic:stat-modifier} (6) wenn es einen [kritischen Treffer]{mechanic:critical-hit} erleidet.,"Wenn ein Pokémon mit dieser Fähigkeit von einem [kritischen Treffer]{mechanic:critical-hit} getroffen wird, erhöht sich sein []{mechanic:attack} auf die höchste [Stufe]{mechanic:stat-modifier} von 6.
+
+Die Fähigkeit löst auch aus, wenn der [kritische Treffer]{mechanic:critical-hit} vom []{move:substitute} abgefangen wird."
 83,9,Raises [Attack]{mechanic:attack} to the maximum of six [stages]{mechanic:stat-modifier} upon receiving a [critical hit]{mechanic:critical-hit}.,"Whenever this Pokémon receives a [critical hit]{mechanic:critical-hit}, its [Attack]{mechanic:attack} rises to the maximum of 6 [stages]{mechanic:stat-modifier}.
 
 This ability will still take effect if the critical hit is received by a []{move:substitute}."
+84,6,Verdoppelt die []{mechanic:speed} wenn das Pokémon ein getragenes Item benutzt oder verliert.,"Wenn ein Pokémon mit dieser Fähigkeit ein getragenes Item benutzt oder verliert, wird seine []{mechanic:speed} verdoppelt. Wenn es ein neues Item erhält oder den Kampf verlässt, erlischt der Bonus.
+
+Das passiert auch, wenn das Item durch []{move:knock-off} fallengelassen wird. Der Bonus zählt nicht als [Statuswert-Änderung]{mechanic:stat-modifier}. Es gibt keine Benachrichtigung wenn der Effekt eintritt."
 84,9,Doubles [Speed]{mechanic:speed} upon using or losing a held item.,"When this Pokémon uses or loses its held item, its [Speed]{mechanic:speed} is doubled.  If it gains another item or leaves battle, this bonus is lost.
 
 This includes when the Pokémon drops its item because of []{move:knock-off}.  This bonus does not count as a [stat modifier]{mechanic:stat-modifier}.  There is no notification when this ability takes effect."
+85,6,Halbiert den Schaden von []{type:fire} Attacken und []{mechanic:burn}.,Pokémon mit dieser Fähigkeit erhalten nur halben Schaden von []{type:fire} Attacken und [Verbrennungen]{mechanic:burn}.
 85,9,Halves damage from []{type:fire} moves and [burns]{mechanic:burn}.,This Pokémon takes half as much damage from []{type:fire}-type moves and [burns]{mechanic:burn}.
+86,6,Verdoppelt die [Statuswerte-Änderungen]{mechanic:stat-modifier}. Die Änderungen gehen nicht über -6 oder 6 Stufen hinaus.,"Jede Stufe einer [Statuswerte-Änderung]{mechanic:stat-modifier} agiert als 2 Stufen. Diese Doppelstufen sind trotzdem limitiert auf ein Minimum von -6 und ein Maximum von 6.
+
+Pokémon mit dieser Fähigkeit können trotzdem weniger als -3 oder mehr als 3 Stufen erhalten, aber die zusätzlichen Stufen haben nach der Verdoppelung keinen Effekt."
 86,9,Doubles the Pokémon's [stat modifiers]{mechanic:stat-modifiers}.  These doubled modifiers are still capped at -6 or 6 stages.,"Each stage of this Pokémon's [stat modifiers]{mechanic:stat-modifiers} acts as two stages.  These doubled stages are still limited to a minimum of -6 and a maximum of 6.
 
 This Pokémon can still accumulate less than -3 or more than 3 stages of stat modifiers, even though the extra ones have no effect after doubling."
+87,6,"Erleidet 1/8 der max []{mechanic:hp} Schaden während [starkem Sonnenlicht]{mechanic:strong-sunlight}, aber heilt 1/8 der max []{mechanic:hp} während []{mechanic:rain}. Erhöht den erhaltenen Schaden durch []{type:fire} Attacken um 25%, aber absorbiert []{type:water} Attacken, und heilt dabei 1/4 der max []{mechanic:hp}.","Pokémon mit dieser Fähigkeit nehmen 1/8 ihrer maximalen []{mechanic:hp} Schaden nach jeder Runde mit [starkem Sonnenlicht]{mechanic:strong-sunlight}, aber sie heilen 1/8 ihrer maximalen []{mechanic:hp} nach jeder Runde in der es [regnet]{mechanic:rain}. Sie nehmen außerdem 1,25× so viel Schaden von []{type:fire} Attacken, absorbieren aber dafür []{type:water} Attacken und heilen dabei 1/4 ihrer maximalen []{mechanic:hp}."
 87,9,"Causes 1/8 max [HP]{mechanic:hp} in damage each turn during [strong sunlight]{mechanic:strong-sunlight}, but heals for 1/8 max HP during [rain]{mechanic:rain}.  Increases damage from []{type:fire} moves to 1.25×, but absorbs []{type:water} moves, healing for 1/4 max HP.","This Pokémon takes 1/8 of its maximum HP in damage after each turn during [strong sunlight]{mechanic:strong-sunlight}, but it heals for 1/8 of its HP each turn during [rain]{mechanic:rain}.  This Pokémon takes 1.25× as much damage from []{type:fire}-type moves, but whenever a []{type:water} move hits it, it heals for 1/4 its maximum HP instead."
+88,6,Erhöht den Angriffswert entsprechend des schwächeren Verteidigungswerts um 1 [Stufe]{mechanic:stat-modifier} beim Betreten des Kampfs.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, wird sein []{mechanic:attack} oder []{mechanic:special-attack} um 1 [Stufe]{mechanic:stat-modifier} erhöht, je nachdem, welcher Verteidigungswert des Gegners niedriger ist. Bei Gleichstand wird der []{mechanic:special-attack} erhöht.
+
+Die Fähigkeit löst auch aus, wenn sie während des Kampfes erlangt wird."
 88,9,Raises the attack stat corresponding to the opponents' weaker defense one [stage]{mechanic:stat-modifier} upon entering battle.,"When this Pokémon enters battle, its [Attack]{mechanic:attack} or [Special Attack]{mechanic:special-attack}, whichever corresponds to its opponents' weaker total defensive stat, rises one [stage]{mechanic:stat-modifier}.  In the event of a tie, Special Attack is raised.
 
 This ability also takes effect when acquired during a battle."
+89,6,Verstärkt schlagbasierte Attacken um 20%.,"Die schlagbasierten Attacken von Pokémon mit dieser Fähigkeit, haben 1,2× so viel Stärke.
+
+[]{move:sucker-punch} ist nicht schlagbasiert, der Japanische Name bedeutet ""Überaschungsangriff""."
 89,9,Strengthens punch-based moves to 1.2× their power.,"Moves flagged as being punch-based have 1.2× their base power for this Pokémon.
 
 []{move:sucker-punch} is not flagged as punch-based; its original, Japanese name only means ""surprise attack""."
+90,6,Heilt jede Runde 1/8 der max []{mechanic:hp} wenn [vergiftet]{mechanic:poison}.,"Wenn ein Pokémon mit dieser Fähigkeit [vergiftet]{mechanic:poison} ist, erhält es anstatt Schaden zu erleiden 1/8 seiner maximalen []{mechanic:hp} nach jeder Runde. Das gilt auch für schwere []{mechanic:poison}."
 90,9,Heals for 1/8 max [HP]{mechanic:hp} after each turn when [poisoned]{mechanic:poison} in place of damage.,"If this Pokémon is [poisoned]{mechanic:poison}, it will heal for 1/8 of its maximum [HP]{mechanic:hp} after each turn rather than taking damage.  This includes bad poison."
+91,6,"Erhöht den [STAB]{mechanic:same-type-attack-bonus} von 1,5× auf 2×.","Pokémon mit dieser Fähigkeit verursachen 2× so viel Schaden, wenn die Attacke dem Typ des Pokémon gleicht, anstatt dem üblichen [STAB]{mechanic:same-type-attack-bonus} von 1,5×."
 91,9,Increases the [same-type attack bonus]{mechanic:same-type-attack-bonus} from 1.5× to 2×.,"This Pokémon inflicts twice as much damage with moves whose types match its own, rather than the usual [same-type attack bonus]{mechanic:same-type-attack-bonus} of 1.5×."
+92,6,Erweitert mehrfach treffende Attacken wie []{move:triple-kick} zu ihrer vollen Länge.,Mehrfach treffende Attacken wie []{move:icicle-spear} von Pokémon mit dieser Fähigkeit treffen immer mit der höchsten Anzahl (meistens 5x mal). Außerdem wird die Genauigkeit von []{move:triple-kick} zweiten und dritten Treffer nicht überprüft.
 92,9,Extends two-to-five-hit moves and []{move:triple-kick} to their full length every time.,"This Pokémon always hits five times with two-to-five-hit moves, such as []{move:icicle-spear}.  It also bypasses the accuracy checks on []{move:triple-kick}'s second and third hits."
+93,6,Heilt jede Runde eine []{mechanic:major-status-ailment} wenn es [regnet]{mechanic:rain}.,Pokémon mit dieser Fähigkeit werden am Ende jeder Runde von []{mechanic:major-status-ailment} geheilt wenn es [regnet]{mechanic:rain}.
 93,9,Cures any [major status ailment]{mechanic:major-status-ailment} after each turn during [rain]{mechanic:rain}.,This Pokémon is cured of any [major status ailment]{mechanic:major-status-ailment} after each turn during [rain]{mechanic:rain}.
+94,6,Erhöht den []{mechanic:special-attack} um 50% aber zieht jede Runde 1/8 der max []{mechanic:hp} ab während [starkem Sonnenlicht]{mechanic:strong-sunlight}.,"Während [starkem Sonnenlicht]{mechanic:strong-sunlight}, wird der []{mechanic:special-attack} von Pokémon mit dieser Fähigkeit um 50% erhöht, dafür erleidet es 1/8 seiner maximalen []{mechanic:hp} Schaden am Ende der Runde."
 94,9,Increases [Special Attack]{mechanic:special-attack} to 1.5× but costs 1/8 max [HP]{mechanic:hp} after each turn during [strong sunlight]{mechanic:strong-sunlight}.,"During [strong sunlight]{mechanic:strong-sunlight}, this Pokémon has 1.5× its [Special Attack]{mechanic:special-attack} but takes 1/8 of its maximum [HP]{mechanic:hp} in damage after each turn."
+95,6,Erhöht die []{mechanic:speed} um 50% wenn das Pokémon an einer []{mechanic:major-status-ailment} leidet.,"Wenn ein Pokémon mit dieser Fähigkeit unter einer []{mechanic:major-status-ailment} leidet, hat es 1,5× so viel []{mechanic:speed} wie sonst. Die []{mechanic:speed} des Pokémon wird nicht halbiert, wenn es [paralysiert]{mechanic:paralysis} ist.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, tauchen wilde Pokémon nur halb so oft auf."
 95,9,Increases [Speed]{mechanic:speed} to 1.5× with a [major status ailment]{mechanic:major-status-ailment}.,"Whenever this Pokémon has a [major status ailment]{mechanic:major-status-ailment}, it has 1.5× its [Speed]{mechanic:speed}.  This Pokémon is not affected by the usual Speed cut from [paralysis]{mechanic:paralysis}.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is halved."
+96,6,Attacken des Pokémon werden alle zu []{type:normal} Attacken.,"Attacken von Pokémon mit dieser Fähigkeit agieren alle als []{type:normal} Attacken.
+
+Attacken die [typenlosen Schaden]{mechanic:typeless-damage} verursachen werden nicht beeinflusst. Attacken mit variablen Typ, so wie []{move:hidden-power}, werden beeinflusst. Sie funktionieren sonst wie üblich, aber z.B. []{move:weather-ball} wird immer vom Typ []{type:normal} sein, aber es sieht trotzdem anders aus und hat doppelte Stärke bei [Wettereffekten]{mechanic:weather}.
+
+So wie []{move:thunder-wave} durch Immunitäten verhindert wird, anders als die meisten Attacken ohne Schaden, werden []{type:ghost} Pokémon nicht beeinflusst vom Effekt dieser Fähigkeit."
 96,9,Makes the Pokémon's moves all act []{type:normal}-type.,"This Pokémon's moves all act as if they were []{type:normal}-type.
 
 Moves that inflict [typeless damage]{mechanic:typeless-damage} do so as usual.  Moves of variable type, such as []{move:hidden-power}, are affected.  They otherwise work as usual, however; []{move:weather-ball}, for example, is always forced to be Normal, but it still has doubled power and looks different during [weather]{mechanic:weather}.
 
 As []{move:thunder-wave} is prevented by immunities, unlike most non-damaging moves, it does not affect []{type:ghost}-type Pokémon under the effect of this ability."
+97,6,"Verstärkt [kritische Treffer]{mechanic:critical-hit}, so dass sie 3× so viel Schaden verursachen anstatt 2×.",Pokémon mit dieser Fähigkeit verursachen bei [kritischen Treffern]{mechanic:critical-hit} 3× so viel Schaden anstatt 2× wie sonst.
 97,9,Strengthens [critical hits]{mechanic:critical-hit} to inflict 3× damage rather than 2×.,"This Pokémon inflicts triple damage with [critical hits]{mechanic:critical-hit}, rather than the usual double damage."
+98,6,Schützt vor jeglichem Schaden der nicht direkt von Attacken verursacht wird.,"Pokémon mit dieser Fähigkeit sind immun gegen alle Schäden die nicht direkt von Attacken verursacht werden.
+
+Zum Beispiel nimmt ein Pokémon mit dieser Fähigkeit keinen Schaden durch [Wettereffekte]{mechanic:weather}, Rückstoß, []{mechanic:status-ailments} oder []{move:spikes}, aber es leidet trotzdem unter dem [Angriffsverlust]{mechanic:attack} durch []{mechanic:burn}. Ein []{item:life-orb} verstärkt die Attacken des Pokémons ohne ihm zu schaden. Alles was direkt von solchem Schaden abhängt hat ebenfalls keinen Effekt. []{move:leech-seed} z.B. wird weder das Pokémon mit dieser Fähigkeit verletzen, noch wird der Gegner geheilt und Gegner die eine []{item:jaboca-berry} oder eine []{item:rowap-berry} tragen werden diese nicht verbrauchen wenn sie von diesem Pokémon getroffen werden.
+
+Die folgenden Attacken sind nicht betroffen: []{move:struggle}, []{move:pain-split} (egal ob von dem oder gegen das Pokémon benutzt), []{move:belly-drum}, []{move:substitute}, []{move:curse}, Attacken die den Anwender ausknocken sowie Schaden durch []{mechanic:confusion}.
+
+Pokémon mit dieser Fähigkeit werden durhc weder []{mechanic:hp} verlieren noch dazugewinnen wenn sie []{mechanic:hp} von einem Pokémon mit []{ability:liquid-ooze} absaugen.
+
+Wenn das Pokémon schwer [vergiftet]{mechanic:poison} wurde, wird der Vergiftungstimer trotzdem jede Runde erhöht. Verliert das Pokémon die Fähigkeit wird es so viel Schaden verlieren wie es ohne die Fähigkeit verlieren würde."
 98,9,Protects against damage not directly caused by a move.,"This Pokémon is immune to damage not directly caused by a move.
 
 For example, this Pokémon takes no damage from from [weather]{mechanic:weather}, recoil, [status ailments]{mechanic:status-ailments}, or []{move:spikes}, but it still suffers from the [Attack]{mechanic:attack} cut when [burned]{mechanic:burn}, and a []{item:life-orb} will still power up this Pokémon's moves without damaging it.  Anything that directly depends on such damage will also not happen; for example, []{move:leech-seed} will neither hurt this Pokémon nor heal the opponent, and Pokémon with a []{item:jaboca-berry} or []{item:rowap-berry} will not consume the berry when hit by this Pokémon.
@@ -337,11 +675,23 @@ The following are unaffected: []{move:struggle}, []{move:pain-split} (whether us
 This Pokémon will neither lose nor regain [HP]{mechanic:hp} if it drains HP from a Pokémon with []{ability:liquid-ooze}.
 
 If this Pokémon is [badly poisoned]{mechanic:poison}, the poison counter is still increased each turn; if the Pokémon loses this ability, it will begin taking as much damage as it would be if it had been taking increasing damage each turn."
+99,6,Stellt sicher das Attacken die von dem oder gegen das Pokémon eingesetzt werden treffen.,"Attacken die gegen ein oder von einem Pokémon mit dieser Fähigkeit eingesetzt werden treffen immer.
+
+K.O.-Attacken sind davon nicht betroffen. Attacken die von der Fähigkeit beeinflusst werden können auch in Vorbereitungsrunden von []{move:dig} oder []{move:fly} treffen.
+
+Außerhalb vom Kampf: Wenn ein Pokémon mit dieser Fähigkeit an erster Stelle im Team steht, ist die Wahrscheinlichkeit einem wilden Pokémon zu begegnen doppelt so hoch wie normal."
 99,9,Ensures all moves used by and against the Pokémon hit.,"Moves used by or against this Pokémon never miss.
 
 One-hit KO moves are unaffected.  Moves affected by this ability can hit Pokémon during the preparation turn of moves like []{move:dig} or []{move:fly}.
 
 Overworld: If the lead Pokémon has this ability, the wild encounter rate is doubled."
+100,6,Lässt das Pokémon als letztes angreifen innerhalb des Prioritätsspielraums der Attacken,"Attacken dieses Pokémon kommen zu letzt ohne dabei die Prioritäten der Attacken zu umgehen.
+
+Mehrere Pokémon mit dieser Fähigkeit greifen in Reihenfolge ihrer []{mechanic:speed} an.
+
+[]{item:full-incense} und []{item:lagging-tail} erhalten den Vortritt zur Fähigkeit, was bedeutet, dass Pokémon mit diesen Items nach Pokémon mit dieser Fähigkeit agieren. Pokémon mit dieser Fähigkeit und eines der Items werden nur so viel verzögert, als hätten sie nur das Item.
+
+Diese Fähigkeit funktioniert normal während []{move:trick-room}, Pokémon mit dieser Fähigkeit greifen in umgekehrter Reihenfolge der []{mechanic:speed} nach den Pokémon ohne die Fähigkeit an."
 100,9,Makes the Pokémon move last within its move's priority bracket.,"This Pokémon moves last within its priority bracket.
 
 Multiple Pokémon with this ability move in order of [Speed]{mechanic:speed} amongst themselves.
@@ -349,17 +699,39 @@ Multiple Pokémon with this ability move in order of [Speed]{mechanic:speed} amo
 The []{item:full-incense} and []{item:lagging-tail} take precedence over this ability; that is, Pokémon with these items move after Pokémon with this ability.  Pokémon with both this ability and one of these items are delayed as much as if they had only the item.
 
 This ability works as usual during []{move:trick-room}: Pokémon with this ability will move in reverse order of Speed after Pokémon without it."
+101,6,Versärkt Attacken mit einer Basisstärke von 60 oder weniger um 50%.,"Attacken von Pokémon mit dieser Fähigkeit die eine Stärke von 60 oder weniger haben werden um 50% verstärkt.
+
+Das schließt Attacken mit variabler Stärke, wie []{move:hidden-power} oder []{move:magnitude}, mit ein, wenn ihre Stärke 60 oder weniger ist. Der Stärke Bonus von []{move:helping-hand} wird miteinberechnet, genauso wie der von []{move:defense-curl} für []{move:rollout}."
 101,9,Strengthens moves of 60 base power or less to 1.5× their power.,"This Pokémon's moves have 1.5× their power if their base power is 60 or less.
 
 This includes moves of variable power, such as []{move:hidden-power} and []{move:magnitude}, when their power is 60 or less.  []{move:helping-hand}'s power boost is taken into account for any move, as is []{move:defense-curl}'s power boost for []{move:rollout}."
+102,6,Schützt vor []{mechanic:major-status-ailments} während [starkem Sonnenlicht]{mechanic:strong-sunlight}.,"Pokémon mit dieser Fähigkeit können während [starkem Sonnenlicht]{mechanic:strong-sunlight} keine []{mechanic:major-status-ailments} erleiden.
+
+Die Fähigkeit heilt keine []{mechanic:major-status-ailments}. []{move:rest} schlägt fehl während die Fähigkeit aktiv ist. []{move:yawn} schlägt sofort fehl wenn es während [starkem Sonnenlicht]{mechanic:strong-sunlight} gegen ein Pokémon mit dieser Fähigkeit benutzt wird und ein bereits eingesetzter []{move:yawn} schlägt fehl, wenn sich das []{mechanic:weather} zu [starkem Sonnenlicht]{mechanic:strong-sunlight} ändert."
 102,9,Protects against [major status ailments]{mechanic:major-status-ailments} during [strong sunlight]{mechanic:strong-sunlight}.,"This Pokémon cannot be given a [major status ailment]{mechanic:major-status-ailment} during [strong sunlight]{mechanic:strong-sunlight}.
 
 This ability does not heal prior status ailments.  []{move:rest} will fail altogether with this ability in effect.  []{move:yawn} will immediately fail if used on this Pokémon during strong sunlight, and an already-used Yawn will fail if the weather turns to strong sunlight in the meantime."
+103,6,"Verhindert, dass das Pokémon ein getragenes Item im Kampf einsetzt.","Pokémon mit dieser Fähigkeit können im Kampf keine getragenen Items benutzen und diese haben auch keine passiven Effekte im Kampf, egal ob positiv oder negativ. Das Pokémon kann []{move:fling} nicht einsetzen.
+
+Der []{mechanic:speed} Malus einer []{item:iron-ball} und die EV Items ([]{item:macho-brace}, []{item:power-weight}, []{item:power-bracer}, []{item:power-belt}, []{item:power-lens}, []{item:power-band} und []{item:power-anklet}) sind nicht betroffen. Items die den Kampf nicht direkt beeinflussen, wie der []{item:exp-share}, das []{item:amulet-coin} oder die []{item:soothe-bell}, funktionieren normal. Alle getragenen Items funktionieren normal außerhalb von Kämpfen.
+
+Andere Attacken die getragene Items verwenden, wie z.B. []{move:natural-gift} und []{move:switcheroo}, funktionieren ebenfalls normal."
 103,9,Prevents the Pokémon from using its held item in battle.,"In battle, this Pokémon cannot use its held item, nor will the item have any passive effect on the battle, positive or negative.  This Pokémon also cannot use []{move:fling}.
 
 The [Speed]{mechanic:speed} cut from the []{item:iron-ball} and the effort items (the []{item:macho-brace}, []{item:power-weight}, []{item:power-bracer}, []{item:power-belt}, []{item:power-lens}, []{item:power-band}, and []{item:power-anklet}) is unaffected.  Items that do not directly affect the battle, such as the []{item:exp-share}, the []{item:amulet-coin}, or the []{item:soothe-bell}, work as usual.  All held items work as usual out of battle.
 
 Other moves that use the held item, such as []{move:natural-gift} and []{move:switcheroo}, work as usual."
+104,6,"Umgeht die gegnerische Fähigkeit, wenn sie eine Attacke verhindern kann.","Die Attacken von Pokémon mit dieser Fähigkeit ignorieren Fähigkeiten, die die Attacke am Funktionieren hindern oder ihre Effekte beeinflussen.
+
+Beispiel: Die Attacken ignorieren Fähigkeiten die sie komplett verhindern würden, wie []{ability:water-absorb}, Fähigkeiten die einen der Effekte verhindern würden, wie z.B. []{ability:clear-body}, []{ability:shell-armor} oder []{ability:sticky-hold} und Fähigkeiten die einen generellen schützenden Vorteil brächten, wie []{ability:simple}, []{ability:snow-cloak} oder []{ability:thick-fat}. Wenn eine Fähigkeit die Attacke behindern oder ihr helfen würde, wie []{ability:dry-skin} oder []{ability:unaware}, wird sie ebenfalls ignoriert.
+
+Fähigkeiten die dieser Beschreibung nicht entsprechen, selbst wenn sie eine Attacke behindern könnten, werden nicht verhindert. Zum Beispiel beeinflusst []{ability:cursed-body} nur mögliche zukünftige Anwendungen der Attacke, während []{ability:liquid-ooze} und []{ability:shadow-tag} nur den Effekt der Attacke auf den Anwender verhindern. Die Attacke kann keine Typ- oder Form-Änderungen verhindern die durch Fähigkeiten ausgelöst werden, zum Beispiel []{ability:color-change} oder []{ability:forecast}, genauso wie Effekte die von Fähigkeiten verursacht wurden aber nicht mehr an die Fähigkeit gebunden sind, so wie der []{mechanic:rain} von []{ability:drizzle}. Die Fähigkeit kann []{ability:multitype} nicht verhindern.
+
+Eine Fähigkeit die von dieser Fähigkeit ignoriert wird, wird nur überbrückt, während die Attacke eingesetzt wird. Beispiel: Die Attacken von Pokémon mit dieser Fähigkeit können ein Pokémon mit []{ability:limber} [paralysieren]{mechanic:paralysis} aber []{ability:limber} wird sich aktivieren und die Paralyse direkt danach heilen. Außerdem werden die [Stacheln]{move:spikes} dieses Pokémons nicht von dieser Fähigkeit beeinflusst, nachdem sie platziert wurden.
+
+Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, werden alle Trainer über diese Fähigkeit benachrichtigt.
+
+Die Fähigkeit ist identisch mit []{ability:teravolt} und []{ability:turboblaze}."
 104,9,Bypasses targets' abilities if they could hinder or prevent a move.,"This Pokémon's moves completely ignore abilities that could hinder or prevent their effect on the target.
 
 For example, this Pokémon's moves ignore abilities that would fully negate them, such as []{ability:water-absorb}; abilities that would prevent any of their effects, such as []{ability:clear-body}, []{ability:shell-armor}, or []{ability:sticky-hold}; and abilities that grant any general protective benefit, such as []{ability:simple}, []{ability:snow-cloak}, or []{ability:thick-fat}.  If an ability could either hinder or help this Pokémon's moves, e.g. []{ability:dry-skin} or []{ability:unaware}, the ability is ignored either way.
@@ -371,11 +743,29 @@ An ability ignored by this ability is only nullified while the move is being use
 When this Pokémon enters battle, all participating trainers are notified that it has this ability.
 
 This ability functions identically to []{ability:teravolt} and []{ability:turboblaze}."
+105,6,Erhöht die [kritische Treffer]{mechanic:critical-hit}rate um 1 Stufe.,Die [kritische Treffer]{mechanic:critical-hit}rate von Attacken von Pokémon mit dieser Fähigkeit sind eine Stufe höher als normal.
 105,9,Raises moves' [critical hit]{mechanic:critical-hit} rates one stage.,This Pokémon's moves have [critical hit]{mechanic:critical-hit} rates one stage higher than normal.
+106,6,"Schadet dem Angreifer mit 1/4 seiner max []{mechanic:hp}, wenn das Pokémon von einer Attacke mit Kontakt besiegt wird.","Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke mit Kontakt besiegt wird, erleidet der Anwender 1/4 seiner maximalen []{mechanic:hp} Schaden."
 106,9,Damages the attacker for 1/4 its max [HP]{mechanic:hp} when knocked out by a contact move.,"When this Pokémon is knocked out by a move that makes contact, the move's user takes 1/4 its maximum [HP]{mechanic:hp} in damage."
+107,6,"Benachrichtigt alle Trainer im Kampf, wenn ein Gegner eine [sehr effektive]{mechanic:super-effective} Attacke, []{move:self-destruct}, []{move:explosion} oder eine K.O.Attacke hat.","Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt und ein Gegner eine Attacke hat die []{mechanic:super-effective} gegen das Pokémon ist, []{move:self-destruct}, []{move:explosion} oder eine K.O.-Attacke hat, werden alle Trainer darüber benachrichtigt.
+
+Die Attacke selbst wird nicht angekündigt, nur ihre Anwesenheit. Attacken die [typenlosen Schaden]{mechanic:typeless-damage} verursachen, wie []{move:future-sight} und Attacken mit variablen Typ, wie []{move:hidden-power}, werden nach ihrem angezeigten Typ gezählt. []{move:counter}, []{move:metal-burst}, []{move:mirror-coat} und K.O.-Attacken gegen die das Pokémon immun ist werden nicht gezählt."
 107,9,"Notifies all trainers upon entering battle if an opponent has a [super-effective]{mechanic:super-effective} move, []{move:self-destruct}, []{move:explosion}, or a one-hit KO move.","When this Pokémon enters battle, if one of its opponents has a move that is [super effective]{mechanic:super-effective} against it, []{move:self-destruct}, []{move:explosion}, or a one-hit knockout move, all participating trainers are notified.
 
 The move itself is not revealed; only that there is such a move.  Moves that inflict [typeless damage]{mechanic:typeless-damage}, such as []{move:future-sight}, and moves of variable type, such as []{move:hidden-power}, count as their listed types.  []{move:counter}, []{move:metal-burst}, []{move:mirror-coat}, and one-hit KO moves to which this Pokémon is immune do not trigger this ability."
+108,6,Enthüllt die Stärkste Attacke des Gegners beim Betreten des Kampfes.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, wird die Attacke mit der höchsten Basisstärke eines der Gegner an alle Trainer angekündigt.
+
+Wenn es mehrere gleichstarke Attacken gibt, wird eine zufällige gewählt.
+
+Attacken ohne angezeigt Basisstärke werden wie folgt behandelt:
+
+Stärke | Attacken
+ ----: | -----
+   160 | K.O.-Attacken: []{move:fissure}, []{move:guillotine}, []{move:horn-drill} und []{move:sheer-cold}
+   120 | Konter-Attacken: []{move:counter}, []{move:metal-burst} und []{move:mirror-coat}
+    80 | Variable Stärke oder fester Schaden: []{move:crush-grip}, []{move:dragon-rage}, []{move:electro-ball}, []{move:endeavor}, []{move:final-gambit}, []{move:flail}, []{move:frustration}, []{move:grass-knot}, []{move:gyro-ball}, []{move:heat-crash}, []{move:heavy-slam}, []{move:hidden-power}, []{move:low-kick}, []{move:natural-gift}, []{move:night-shade}, []{move:psywave}, []{move:return}, []{move:reversal}, []{move:seismic-toss}, []{move:sonic-boom}, []{move:trump-card} und []{move:wring-out}
+     0 | Jede andere Attacke
+"
 108,9,Reveals the opponents' strongest move upon entering battle.,"When this Pokémon enters battle, it reveals the move with the highest base power known by any opposing Pokémon to all participating trainers.
 
 In the event of a tie, one is chosen at random.
@@ -389,42 +779,85 @@ Power | Moves
    80 | Variable power or set damage: []{move:crush-grip}, []{move:dragon-rage}, []{move:electro-ball}, []{move:endeavor}, []{move:final-gambit}, []{move:flail}, []{move:frustration}, []{move:grass-knot}, []{move:gyro-ball}, []{move:heat-crash}, []{move:heavy-slam}, []{move:hidden-power}, []{move:low-kick}, []{move:natural-gift}, []{move:night-shade}, []{move:psywave}, []{move:return}, []{move:reversal}, []{move:seismic-toss}, []{move:sonic-boom}, []{move:trump-card}, and []{move:wring-out}
     0 | Any such move not listed
 "
+109,6,Ignoriert die []{mechanic:stat-modifier} der Pokémon bei der Schadens- und [Genauigkeitsberechnung]{mechanic:accuracy}.,"Pokémon mit dieser Fähigkeit ignorieren die []{mechanic:stat-modifier} der Gegner bei der Berechnung des Schadens und der []{mechanic:accuracy}.
+
+Dies beeinflusst effektiv alle Änderungen der Statuswerte außer []{mechanic:speed}.
+
+Die Stärke von []{move:punishment} und []{move:stored-power} wird normal berechnet. Wenn sich das Pokémon wegen []{mechanic:confusion} selbst verletzt, beeinflussen die []{mechanic:stat-modifier} den Schaden wie sonst auch."
 109,9,Ignores other Pokémon's stat modifiers for damage and accuracy calculation.,"This Pokémon ignores other Pokémon's [stat modifiers]{mechanic:stat-modifiers} for the purposes of damage and accuracy calculation.
 
 Effectively, this affects modifiers of every stat except [Speed]{mechanic:speed}.
 
 The power of []{move:punishment} and []{move:stored-power} is calculated as usual.  When this Pokémon hurts itself in [confusion]{mechanic:confusion}, its stat modifiers affect damage as usual."
+110,6,Verdoppelt den durch [nicht sehr effektiven]{mechanic:not-very-effective} Attacken verursachten Schaden.,Pokémon mit dieser Fähigkeit verdoppeln den Schaden von Attacken die []{mechanic:not-very-effective} gegen das Ziel sind.
 110,9,Doubles damage inflicted with [not-very-effective]{mechanic:not-very-effective} moves.,This Pokémon deals twice as much damage with moves that are [not very effective]{mechanic:not-very-effective} against the target.
+111,6,Reduziert den durch [sehr effektive]{mechanic:super-effective} Attacken verursachten Schaden um 1/4.,"Pokémon mit dieser Fähigkeit erleiden nur 75% des Schadens, der durch Attacken die []{mechanic:super-effective} sind verursacht wurde.
+
+Die Fähigkeit ist identisch mit []{ability:solid-rock}."
 111,9,Decreases damage taken from [super-effective]{mechanic:super-effective} moves by 1/4.,"This Pokémon takes 0.75× as much damage from moves that are [super effective]{mechanic:super-effective} against it.
 
 This ability functions identically to []{ability:solid-rock}."
+112,6,Halbiert den []{mechanic:attack} und die []{mechanic:speed} 5 Runden lang nach Betreten des Kampfes.,"Der []{mechanic:attack} und die []{mechanic:speed} von Pokémon mit dieser Fähigkeit werden 5 Runden nach Betreten des Kampfes halbiert.
+
+Die Fähigkeit wirkt auch, wenn sie während des Kampfes erlangt wird. Wenn das Pokémon die Fähigkeit nach Beginn des Kampfes verliert, werden sein []{mechanic:attack} und seine []{mechanic:speed} wieder normal, wenn es die Fähigkeit dann wieder erlangt, werden []{mechanic:attack} und []{mechanic:speed} wieder halbiert, aber der Zähler wird nicht zurückgesetzt."
 112,9,Halves [Attack]{mechanic:attack} and [Speed]{mechanic:speed} for five turns upon entering battle.,"This Pokémon's [Attack]{mechanic:attack} and [Speed]{mechanic:speed} are halved for five turns upon entering battle.
 
 This ability also takes effect when acquired during battle.  If this Pokémon loses its ability before the five turns are up, its Attack and Speed return to normal; if it then regains this ability without leaving battle, its Attack and Speed are halved again, but the counter keeps counting from where it was."
+113,6,Lässt die []{type:normal} und []{type:fighting} Attacken des Pokémons []{type:ghost} Pokémon treffen.,"Pokémon mit dieser Fähigkeit ignorieren die Immunität von []{type:ghost} Pokémon gegen []{type:normal} und []{type:fighting} Attacken.
+
+Der zweite Typ des []{type:ghost} Pokémons beeinflusst den Schaden wie sonst auch."
 113,9,Lets the Pokémon's []{type:normal} and []{type:fighting} moves hit []{type:ghost} Pokémon.,"This Pokémon ignores []{type:ghost}-type Pokémon's immunity to []{type:normal}- and []{type:fighting}-type moves.
 
 Ghost Pokémon's other types affect damage as usual."
+114,6,Leitet []{type:water} Attacken auf dieses Pokémon um. Absorbiert []{type:water} Attacken und erhöht den []{mechanic:special-attack} um 1 [Stufe]{mechanic:stat-modifier}.,"Alle []{type:water} Attacken von anderen Pokémon mit nur einem Ziel werden auf das Pokémon mit dieser Fähigkeit umgeleitet, wenn es ein mögliches Ziel ist. []{type:water} die dieses Pokémon treffen erhöhen seinen []{mechanic:special-attack} um eine [Stufe]{mechanic:stat-modifier}, wobei jeder andere Effekt entfernt wird. Die Attacke kann außerdem nicht daneben gehen.
+
+Wenn das eigentliche Ziel der Attacke die Fähigkeit ebenfalls hat, wird die Attacke nicht umgeleitet. Wenn mehrere Pokémon mit dieser Fähigkeit mögliche Ziele sind, wird die Attacke zu dem mit der höchsten []{mechanic:speed}, oder, bei Gleichstand, zu einem zufälligen Pokémon umgeleitet. []{move:follow-me} erhält vor dieser Fähigkeit den Vorzug."
 114,9,"Redirects single-target []{type:water} moves to this Pokémon where possible.  Absorbs Water moves, raising [Special Attack]{mechanic:special-attack} one [stage]{mechanic:stat-modifier}.","All other Pokémon's single-target []{type:water}-type moves are redirected to this Pokémon, if it is an eligible target.  Other Pokémon's Water moves raise this Pokémon's [Special Attack]{mechanic:special-attack} one [stage]{mechanic:stat-modifier}, negating any other effect on it, and cannot miss it.
 
 If the move's intended target also has this ability, the move is not redirected.  When multiple Pokémon with this ability are possible targets for redirection, the move is redirected to the one with the highest [Speed]{mechanic:speed} stat, or, in the case of a tie, to a random tied Pokémon.  []{move:follow-me} takes precedence over this ability."
+115,6,Heilt jede Runde 1/16 der max []{mechanic:hp} wenn es [hagelt]{mechanic:hail}. Schützt vor Schäden durch []{mechanic:hail}.,Pokémon mit dieser Fähigkeit heilen am Ende jeder Runde 1/16 ihrer maximalen [HP]{mechanic:hp} wenn es [hagelt]{mechanic:hail} und sie nehmen durch []{mechanic:hail} keinen Schaden unabhängig von ihrem Typ.
 115,9,Heals for 1/16 max [HP]{mechanic:hp} after each turn during hail.  Protects against hail damage.,"This Pokémon heals for 1/16 of its maximum [HP]{mechanic:hp} after each turn during [hail]{mechanic:hail}, and it does not take hail damage regardless of type."
+116,6,Reduziert den durch [sehr effektive]{mechanic:super-effective} Attacken verursachten Schaden um 1/4.,"Pokémon mit dieser Fähigkeit erleiden nur 75% des Schadens, der durch Attacken die []{mechanic:super-effective} sind verursacht wurde.
+
+Die Fähigkeit ist identisch mit []{ability:filter}."
 116,9,Decreases damage taken from [super-effective]{mechanic:super-effective} moves by 1/4.,"This Pokémon takes 0.75× as much damage from moves that are [super effective]{mechanic:super-effective} against it.
 
 This ability functions identically to []{ability:filter}."
+117,6,Ändert beim Betreten des Kampfes das []{mechanic:weather} in []{mechanic:hail}.,"Das []{mechanic:weather} ändert sich zu []{mechanic:hail}, wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt. Dieser Effekt ist dauerhaft bis das []{mechanic:weather} geändert wird.
+
+Wenn mehrere Pokémon mit dieser Fähigkeit, []{ability:drizzle}, []{ability:drought} oder []{ability:sand-stream} zur selben Zeit den Kampf betreten, werden die Fähigkeiten nach Reihenfolge der []{mechanic:speed} der Pokémon ausgelöst, unter Berücksichtigung von []{move:trick-room}."
 117,9,Summons [hail]{mechanic:hail} that lasts indefinitely upon entering battle.,"The [weather]{mechanic:weather} changes to [hail]{mechanic:hail} when this Pokémon enters battle and does not end unless cancelled by another weather condition.
 
 If multiple Pokémon with this ability, []{ability:drizzle}, []{ability:drought}, or []{ability:sand-stream} are sent out at the same time, the abilities will activate in order of [Speed]{mechanic:speed}, respecting []{move:trick-room}.  Each ability's weather will cancel the previous weather, and only the weather summoned by the slowest of the Pokémon will stay."
+118,6,Das Pokémon hebt nach dem Kampf gelegentlich []{item:honey} auf.,"Pokémon mit dieser Fähigkeit haben eine Chance nach dem Kampf []{item:honey} aufzuheben. Die Chance startet bei 5% und steigt um weitete 5% mit jedem 10. Level: 5% bei Level 1–10, 10% bei 11–20 und so weiter, bis zu 50% bei 91–100.
+
+Die Fähigkeit wird überprüft wenn der Kampf endet, wenn temporäre Fähigkeiten wieder weg sind."
 118,9,The Pokémon may pick up []{item:honey} after battle.,"This Pokémon has a chance of picking up []{item:honey} after each battle.  This chance starts at 5% and rises another 5% after every tenth level: 5% from level 1–10, 10% from 11–20, and so on, up to 50% from 91–100.
 
 This ability is checked after the battle ends, at which point any temporary ability changes have worn off."
+119,6,Enthüllt bei Kampfantritt das getragene Item des Gegners.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, wird allen Trainern mitgeteilt, welches Item der Gegner hält.
+
+Wenn bei Mehrfachkämpfen ein Gegner ein Item hält, wird dieses angezeigt, wenn mehr ein Item halten wird ein zufälliges angekündigt."
 119,9,Reveals an opponent's held item upon entering battle.,"When this Pokémon enters battle, it reveals an opposing Pokémon's held item to all participating trainers.
 
 In a double battle, if one opponent has an item, this Pokémon will Frisk that Pokémon; if both have an item, it will Frisk one at random."
+120,6,Verstärkt Rückstoßattacken um 20%.,"Rückstoß- und Crashattacken von Pokémon mit dieser Fähigkeit haben 1,2× so viel Basisstärke wie sonst.
+
+[]{move:struggle} ist davon nicht betroffen.
+
+""Crashattacken"" sind solche, die dem Anwender schaden wenn sie fehlschlagen wie []{move:jump-kick} und []{move:high-jump-kick}."
 120,9,Strengthens recoil moves to 1.2× their power.,"This Pokémon's recoil moves and crash moves have 1.2× their base power.
 
 []{move:struggle} is unaffected.
 
 The ""crash moves"" are the moves that damage the user upon missing: []{move:jump-kick} and []{move:high-jump-kick}."
+121,6,Ändert []{pokemon:arceus} Typ und Form entsprechend der Tafel die es hält.,"Wenn []{pokemon:arceus} eine Tayp-Tafel hält, ändert sich sein Typ und seine Form entsprechend der Tafel.
+
+[]{pokemon:arceus} getragenes Item, egal ob es sich um eine Tafel handelt oder nicht, kann nicht durch []{move:covet} oder []{move:thief} gestohlen, oder mit []{move:knock-off} entfernt werden, noch kann es durch []{move:switcheroo} oder []{move:trick} getauscht werden. []{move:covet}, []{move:thief} and []{move:knock-off} richten trotzdem Schaden an. Anders als []{ability:sticky-hold} kann []{pokemon:arceus} []{move:fling}, []{move:switcheroo} und []{move:trick} nicht benutzen um das Item zu verlieren, noch eines durch []{move:switcheroo} oder []{move:trick} bekommen, wenn es keines trägt.
+
+Die Fähigkeit hat keinen Effekt für Pokémon außer []{pokemon:arceus}. Die Fähigkeit kann nicht durch []{move:skill-swap} getauscht, mit []{move:role-play} bzw. []{ability:trace} kopiert, mit []{move:gastro-acid} deaktiviert oder mit []{move:worry-seed} geändert werden. Das Pokémon kann []{move:skill-swap} oder []{move:role-play} einsetzen um die Fähigkeit zu verlieren. []{ability:mold-breaker} kann diese Fähigkeit nicht ignorieren.
+
+Wenn sich ein Pokémon in ein []{pokemon:arceus} mit dieser Fähigkeit [verwandelt]{move:transform}, wird es sich in []{pokemon:arceus} []{type:normal}form verwandeln. Wenn das sich verwandelnde Pokémon eine Tafel trägt, wird sich die Fähigkeit aktivieren und es in den entsprechenden Typ wandeln."
 121,9,Changes []{pokemon:arceus}'s type and form to match its held Plate.,"If this Pokémon is holding an elemental Plate, its type and form change to match the Plate.
 
 This Pokémon's held item, whether or not it is a Plate, cannot be taken by []{move:covet} or []{move:thief}, nor removed by []{move:knock-off}, nor traded by []{move:switcheroo} or []{move:trick}.  Covet, Thief, and Knock Off still inflict damage against this Pokémon.  Unlike with []{ability:sticky-hold}, this Pokémon cannot use []{move:fling}, Switcheroo, or Trick to lose its item itself, nor gain an item through Switcheroo or Trick if it does not have one.
@@ -432,93 +865,191 @@ This Pokémon's held item, whether or not it is a Plate, cannot be taken by []{m
 This ability has no effect for any Pokémon other than []{pokemon:arceus}.  This ability cannot be traded with []{move:skill-swap}, nor copied with []{move:role-play} or []{ability:trace}, nor disabled with []{move:gastro-acid}, nor changed with []{move:worry-seed}.  This Pokémon cannot use Skill Swap or Role Play to lose its ability itself.  []{ability:mold-breaker} cannot ignore this ability.
 
 If a Pokémon [Transforms]{move:transform} into an Arceus with this ability, it will Transform into Arceus's default, []{type:normal}-type form.  If the Transforming Pokémon is holding a Plate, this ability will then activate and change the Pokémon into the corresponding form."
+122,6,Erhöht []{mechanic:attack} und []{mechanic:special-defense} von Partnern um 50% während [starkem Sonnenlicht]{mechanic:strong-sunlight}.,"[]{mechanic:attack} und []{mechanic:special-defense} von Teampartnern sind während [starkem Sonnenlicht]{mechanic:strong-sunlight} 1,5× so hoch wie normal, wenn sich ein Pokémon mit dieser Fähigkeit im Kampf befindet.
+
+Ansers als []{ability:forecast}, []{ability:multitype} und []{ability:zen-mode} ist die Form des Pokémon nicht an diese Fähigkeit gebunden. []{pokemon:cherrim} kann seine Formen wechseln auch wenn es die Fähigkeit veloren hat. Die Fähigkeit wirkt auch auf anderen Pokémon, wenn sie von diesen erlangt wurde."
 122,9,Increases friendly Pokémon's [Attack]{mechanic:attack} and [Special Defense]{mechanic:special-defense} to 1.5× during [strong sunlight]{mechanic:strong-sunlight}.,"Friendly Pokémon have 1.5× their [Attack]{mechanic:attack} and [Special Defense]{mechanic:special-defense} during [strong sunlight]{mechanic:strong-sunlight} if any friendly Pokémon has this ability.
 
 Unlike []{ability:forecast}, []{ability:multitype}, and []{ability:zen-mode}, this ability is not tied to its Pokémon's form change; []{pokemon:cherrim} will switch between its forms even if it loses this ability.  As such, this ability also works if obtained by a Pokémon other than Cherrim."
+123,6,Fügt [schlafenden]{mechanic:sleep} Gegnern jede Runde 1/8 ihrer max []{mechanic:hp} Schaden zu.,"Gegner erleiden am Ende jeder Runde 1/8 ihrer maximalen []{mechanic:hp} Schaden, wenn sie [schlafen]{mechanic:asleep}."
 123,9,Damages [sleeping]{mechanic:sleep} opponents for 1/8 their max [HP]{mechanic:hp} after each turn.,Opposing Pokémon take 1/8 of their maximum [HP]{mechanic:hp} in damage after each turn while they are [asleep]{mechanic:asleep}.
+124,6,Stiehlt angreifenden Pokémon bei Kontakt das Item.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke getroffen wird die Kontakt herstellt, wird das vom Angreifer getragene Item auf das getroffene Pokémon übertragen, wenn dieses noch keins hält.
+
+Das Pokémon stiehlt nicht, wenn es besiegt wird. Es kann auch stehlen, wenn der Angreifer einen []{move:substitute} hat, aber nicht wenn der eigene getroffen wird. Wenn eine Attacke mehrmals trifft, löst nur der letzte Treffer die Fähigkeit aus. Wenn das Pokémon ein wildes ist, kann es kein Item stehlen."
 124,9,Steals attacking Pokémon's held items on contact.,"Whenever a move makes contact with this Pokémon, if it does not have a held item, it steals the attacker's held item.
 
 This Pokémon cannot steal upon being knocked out.  It can steal if the attacker has a []{move:substitute}, but cannot steal when its own Substitute is hit.  If a move hits multiple times, only the last hit triggers this ability.  If this Pokémon is wild, it cannot steal from a trained Pokémon."
+125,6,"Verstärkt Attacken mit Zusatzeffekt um 30%, verhindert aber den Zusatzeffekt.","Attacken von Pokémon mit dieser Fähigkeit die Zusatzeffekte haben, haben 1,3× so viel Basisstärke wie normal, dafür aber keinen Zusatzeffekt.
+
+Ein Zusatzeffekt ist die Chance einer Attacke, als ""Effektchance"" bezeichnet, eine []{mechanic:status-ailment} oder eine []{mechanic:stat-modifier} hervorzurufen oder das Ziel [zurückschrecken]{mechanic:flinching} zu lassen, zusätzlich zum Haupteffekt einer Attacke. Zum Beispiel ist die []{mechanic:paralysis} die []{move:thunder-shock} verursachen kann ein Zusatzeffekt, im Gegensatz zu []{move:thunder-wave}, genauso wie das Entfernen des Items durch []{move:knock-off} und die erhöhte [kritische Trefferchance]{mechanic:critial-hit} durch []{move:air-cutter}.
+
+Attacken die einen Statuswert des Anwenders senken sind nicht betroffen."
 125,9,"Strengthens moves with extra effects to 1.3× their power, but prevents their extra effects.","This Pokémon's moves with extra effects have 1.3× their power, but lose their extra effects.
 
 An effect chance is a move's chance to inflict a status ailment, cause a stat change, or make the target flinch in addition to the move's main effect. For example, []{move:thunder-shock}'s paralysis is an extra effect, but []{move:thunder-wave}'s is not, nor are []{move:knock-off}'s item removal and []{move:air-cutter}'s increased [critical hit]{mechanic:critical-hit} rate.
 
 Moves that lower the user's stats are unaffected."
+126,6,Invertiert [Statuswertänderungen]{mechanic:stat-modifier}.,"Wenn ein Statuswert eines Pokémons mit dieser Fähigkeit [erhöht]{mechanic:stat-modifier} werden würde, wird er stattdessen um die selbe Anzahl Stufen [gesenkt]{mechanic:stat-modifier}"
 126,9,Inverts [stat changes]{mechanic:stat-modifiers}.,"Whenever this Pokémon's stats would be [raised]{mechanic:stat-modifiers}, they are instead lowered by the same amount, and vice versa."
+127,6,Hindert Gegner daran Beeren zu essen.,"Wenn ein Pokémon mit dieser Fähigkeit im Kampf ist, können Gegner keine getragenen Beeren essen.
+
+Betroffene Pokémon können trotzdem []{move:bug-bite} bzw. []{move:pluck} einsetzen um die Beere des Ziels zu essen."
 127,9,Prevents opposing Pokémon from eating held Berries.,"Opposing Pokémon cannot eat held Berries while this Pokémon is in battle.
 
 Affected Pokémon can still use []{move:bug-bite} or []{move:pluck} to eat a target's Berry."
+128,6,Erhöht den []{mechanic:attack} um 2 [Stufen]{mechanic:stat-modifier} wenn ein Statuswert gesenkt wird.,"Wenn ein Statuswert eines Pokémon mit dieser Fähigkeit [gesenkt]{mechanic:stat-modifier} wird, wird sein []{mechanic:attack} um 2 [Stufen]{mechanic:stat-modifier} erhöht.
+
+Wenn mehrere Statuswerte [gesenkt]{mechanic:stat-modifier} löst die Fähigkeit für jeden Statuswert aus."
 128,9,Raises [Attack]{mechanic:attack} two [stages]{mechanic:stat-modifier} upon having any stat lowered.,"When any of this Pokémon's stats are [lowered]{mechanic:stat-modifier}, its [Attack]{mechanic:attack} rises by two stages.
 
 If multiple stats are lowered at once, this ability takes effect with each stat lowered."
+129,6,Halbiert []{mechanic:attack} und []{mechanic:special-attack} wenn nur 50% oder weniger der max []{mechanic:hp} übrig sind.,"Der []{mechanic:attack} und die []{mechanic:special-attack} eines Pokémon mit dieser Fähigkeit werden halbiert, wenn es nur noch 50% oder weniger seiner maximalen []{mechanic:hp} hat."
 129,9,Halves [Attack]{mechanic:attack} and [Special Attack]{mechanic:special-attack} at 50% max [HP]{mechanic:hp} or less.,This Pokémon's [Attack]{mechanic:attack} and [Special Attack]{mechanic:special-attack} are halved when it has half its [HP]{mechanic:hp} or less.
+130,6,30% Chance Attacken zu [blockieren]{move:disable} von denen das Pokémon getroffen wurde.,"Attacken die ein Pokémon mit dieser Fähigkeit treffen, haben eine 30% Chance [blockiert]{move:disable} zu werden."
 130,9,Has a 30% chance of [Disabling]{move:disable} any move that hits the Pokémon.,Moves that hit this Pokémon have a 30% chance of being [Disabled]{move:disable} afterward.
+131,6,30% Chance angrenzende Teampartner jede Runde von einer []{mechanic:major-status-ailment} zu heilen.,"Benachbarte Teampartner von Pokémon mit dieser Fähigkeit, haben eine 30% Chance am Ende jeder Runde von einer []{mechanic:major-status-ailment} geheilt zu werden."
 131,9,Has a 30% chance of curing each adjacent ally of any [major status ailment]{mechanic:major-status-ailment} after each turn.,Friendly Pokémon next to this Pokémon in double and triple battles each have a 30% chance of being cured of any [major status ailment]{mechanic:major-status-ailment} after each turn.
+132,6,Verringert allen von Teampartnern erlitten Schaden um 75%.,"Alle Teampartner von Pokémon mit dieser Fähigkeit erhalten nur 0,75× so viel Schaden durch Attacken während das Pokémon im Kampf ist.
+
+Der Effekt stapelt, wenn mehrere Pokémon mit dieser Fähigkeit im Kampf sind."
 132,9,Decreases all direct damage taken by friendly Pokémon to 0.75×.,"All friendly Pokémon take 0.75× as much direct damage from moves while this Pokémon is in battle.
 
 This effect stacks if multiple allied Pokémon have it."
+133,6,"Erhöht die []{mechanic:speed} und senkt die []{mechanic:defense} um eine Stufe, wenn es von einer physischen Attacke getroffen wird.","Wenn ein Pokémon mit dieser Fähigkeit von einer physischen Attacke getroffen wird, wird seine []{mechanic:speed} um eine Stufe erhöht und seine []{mechanic:defense} um 1 Stufe gesenkt.
+
+Attacken die mehrmals treffen lösen bei jedem Treffer diese Fähigkeit aus."
 133,9,Raises [Speed]{mechanic:speed} and lowers [Defense]{mechanic:defense} by one stage each upon being hit by a physical move.,"Whenever a physical move hits this Pokémon, its [Speed]{mechanic:speed} rises one stage and its [Defense]{mechanic:defense} falls one stage.
 
 This ability triggers on every hit of a multiple-hit move."
+134,6,Verdoppelt das Gewicht des Pokémon.,"Pokémon mit dieser Fähigkeit haben ein doppelt so hohes Gewicht, wie andere von der selben Spezies."
 134,9,Doubles the Pokémon's weight.,This Pokémon has double the usual weight for its species.
+135,6,Halbiert das Gewicht des Pokémon.,"Pokémon mit dieser Fähigkeit haben ein halb so hohes Gewicht, wie andere von der selben Spezies."
 135,9,Halves the Pokémon's weight.,This Pokémon has half the usual weight for its species.
+136,6,Halbiert den erlittenen Schaden bei vollen []{mechanic:hp}.,"Pokémon mit dieser Fähigkeit erleiden nur halben Schaden, wenn sie volle []{mechanic:hp} haben."
 136,9,Halves damage taken from full [HP]{mechanic:hp}.,This Pokémon takes half as much damage when it is hit having full [HP]{mechanic:hp}.
+137,6,"Erhöht den []{mechanic:attack} um 50%, wenn das Pokémon [vergiftet]{mechanic:poison} ist.","Pokémon mit dieser Fähigkeit haben einen 1,5× so hohen []{mechanic:attack}, wenn sie [vergiftet]{mechanic:poison} sind."
 137,9,Increases [Attack]{mechanic:attack} to 1.5× when [poisoned]{mechanic:poison}.,This Pokémon has 1.5× its [Attack]{mechanic:attack} when [poisoned]{mechanic:poison}.
+138,6,"Erhöht den []{mechanic:special-attack} um 50%, wenn das Pokémon [brennt]{mechanic:burn}.","Pokémon mit dieser Fähigkeit haben einen 1,5× so hohen []{mechanic:special-attack}, wenn sie [brennen]{mechanic:burn}."
 138,9,Increases [Special Attack]{mechanic:special-attack} to 1.5× when [burned]{mechanic:burn}.,This Pokémon has 1.5× its [Special Attack]{mechanic:special-attack} when [burned]{mechanic:burn}.
+139,6,"50% Chance nach jeder Runde eine verbrauchte Beere wiederherzustellen, wenn in der Zwischenzeit kein anderes Item erlangt wurde.","Pokémon mit dieser Fähigkeit haben nach jeder Runde eine Chance von 50% eine verbrauchte Beere wiederherzustellen, wenn das letzte verbrauchte Item eine Beere war und es gerade kein Item trägt. Bei [starkem Sonnenlicht]{mechanic:strong-sunlight} ist die Chance 100%."
 139,9,Has a 50% chance of restoring a used Berry after each turn if the Pokémon has held no items in the meantime.,"After each turn, if the last item this Pokémon consumed was a Berry and it is not currently holding an item, it has a 50% chance of regaining that Berry, or a 100% chance during [strong sunlight]{mechanic:strong-sunlight}."
+140,6,Schützt vor Attacken von Partner die Schaden anrichten.,"Pokémon mit dieser Fähigkeit erleiden keinen Schaden von Attacken von Teampartnern, inklusive solchen Attacken die nur ein Ziel treffen und direkt auf das Pokémon gerichtet sind."
 140,9,Protects against friendly Pokémon's damaging moves.,"This Pokémon does not take damage from friendly Pokémon's moves, including single-target moves aimed at it."
+141,6,Erhöht einen zufälligen Statuswert um 2 [Stufen]{mechanic:stat-modifier} und senkt einen anderen um 1 [Stufe]{mechanic:stat-modifier} nach jeder Runde.," Nach jeder Runde erhöht sich ein zufälliger Statuswert von Pokémon mit dieser Fähigkeit um 2 [Stufen]{mechanic:stat-modifier} und ein anderer wird um 1 [Stufe]{mechanic:stat-modifier} gesenkt.
+
+Wenn ein Statuswert bereits -6 oder +6 Stufen erreicht hat, wird er nicht zufällig ausgewählt."
 141,9,Raises a random stat two [stages]{mechanic:stat-modifier} and lowers another one stage after each turn.,"After each turn, one of this Pokémon's stats at random rises two [stages]{mechanic:stat-modifier}, and another falls one stage.
 
 If a stat is already at 6 or -6 stages, it will not be chosen to be increased or decreased, respectively."
+142,6,Schützt vor Schäden durch []{mechanic:weather}.,Pokémon mit dieser Fähigkeit erhalten keinen Schaden durch [Wettereffekte]{mechanic:weather}.
 142,9,Protects against damage from [weather]{mechanic:weather}.,This Pokémon does not take damage from [weather]{mechanic:weather}.
+143,6,"30% Chance, den Gegner bei Kontakt zu [vergiften]{mechanic:poison}.","Die Attacken mit Kontakt von Pokémon mit dieser Fähigkeit haben mit jedem Schlag eine 30% Chance das Ziel zu [vergiften]{mechanic:poison}.
+
+Das zählt als Zusatzeffekt im Sinne von []{ability:shield-dust}. Diese Fähigkeit löst vor []{ability:mummy} aus."
 143,9,Has a 30% chance of [poisoning]{mechanic:poison} target Pokémon upon contact.,"This Pokémon's contact moves have a 30% chance of [poisoning]{mechanic:poison} the target with each hit.
 
 This counts as an extra effect for the purposes of []{ability:shield-dust}.  This ability takes effect before []{ability:mummy}."
+144,6,Heilt beim Auswechseln 1/3 der max []{mechanic:hp}.,"Pokémon mit dieser Fähigkit heilen 1/3 ihrer maximalen []{mechanic:hp}, wenn sie aus irgend einem anderen Grund als besiegt zu werden ausgewechselt werden.
+
+Die Fähigkeit löst nicht aus, wenn der Kampf endet."
 144,9,Heals for 1/3 max [HP]{mechanic:hp} upon switching out.,"This Pokémon regains 1/3 of its maximum [HP]{mechanic:hp} when it is switched out for another Pokémon under any circumstances other than having fainted.
 
 This ability does not take effect when a battle ends."
+145,6,Schützt vor dem [Absenken]{mechanic:stat-modifier} der []{mechanic:defense}.,"Die []{mechanic:defense} von Pokémon mit dieser Fähigkeit kann nicht von anderen Pokémon [gesenkt]{mechanic:stat-modifier} werden.
+
+Das Pokémon kann nagative []{mechanic:defense} durch []{move:heart-swap} oder []{move:guard-swap} erhalten."
 145,9,Protects against [Defense]{mechanic:defense} drops.,"This Pokémon's [Defense]{mechanic:defense} cannot be [lowered]{mechanic:stat-modifiers} by other Pokémon.
 
 This Pokémon can still be passed negative Defense modifiers through []{move:heart-swap} or []{move:guard-swap}."
+146,6,Verdoppelt die []{mechanic:speed} während eines [Sandsturms]{mechanic:sandstorm}. Schützt vor Schäden durch [Sandstürme]{mechanic:sandstorm}.,"Pokémon mit dieser Fähigkeit erleiden im []{mechanic:sandstorm} unabhängig von ihrem Typ keinen Schaden und ihre []{mechanic:speed} wird verdoppelt, solange der []{mechanic:sandstorm} anhält."
 146,9,Doubles [Speed]{mechanic:speed} during a [sandstorm]{mechanic:sandstorm}.  Protects against sandstorm damage.,"This Pokémon's [Speed]{mechanic:speed} is doubled during a [sandstorm]{mechanic:sandstorm}, and it does not take sandstorm damage, regardless of type."
+147,6,Verringert die []{mechanic:accuracy} von ankommenden Attacken ohne Schaden auf 50%.,"Attacken ohne Schaden die auf ein Pokémon mit dieser Fähigkeit zielen, haben eine [Basisgenauigkeit]{mechanic:accuracy} von 50%."
 147,9,Lowers incoming non-damaging moves' base [accuracy]{mechanic:accuracy} to exactly 50%.,Non-damaging moves have exactly 50% base [accuracy]{mechanic:accuracy} against this Pokémon.
+148,6,"Verstärkt Attacken um 30%, wenn das Pokémon als Letztes agiert.","Attacken von Pokémon mit dieser Fähigkeit, haben 1,3× so viel Stärke, wenn das Pokémon als Letztes angreift.
+
+[]{move:future-sight} und []{move:doom-desire} sind nicht betroffen."
 148,9,Strengthens moves to 1.3× their power when moving last.,"This Pokémon's moves have 1.3× their power when it moves last in a turn.
 
 []{move:future-sight} and []{move:doom-desire} are unaffected."
+149,6,Nimmt beim Betreten des Kampfes die Form des letzten Teampokémon das nicht besiegt ist an und behält diese bis es zum ersten Mal getroffen wird.,"Pokémon mit dieser Fähigkeit betreten den Kampf in Form des letzten nicht besiegten Pokémon im Team. Dabei erscheint es als dieselbe Species und hat den selben Namen und Pokéball wie das letzte kampffähige Pokémon im Team. Die Illusion erlischt beim ersten Treffer von einer Attacke die Schaden verursacht.
+
+Anderer Schaden, wie der vom []{mechanic:weather} oder von []{move:spikes}, zerstört die Illusion nicht, genauso wie Schaden der vom []{move:substitute} abgefangen wird.
+
+Wenn die Teampokémon während des Kampfes durch Austausch verändert wurde, wird die geänderte Reihenfolge beim Annehmen der Form beachtet."
 149,9,Takes the appearance of the last conscious party Pokémon upon being sent out until hit by a damaging move.,"This Pokémon, upon being sent out, appears to have the species, nickname, and Poké Ball of the last Pokémon in the party that is able to battle.  This illusion breaks upon being hit by a damaging move.
 
 Other damage, e.g. from [weather]{mechanic:weather} or []{move:spikes}, does not break the illusion, nor does damage done to a []{move:substitute}.
 
 If the party order becomes temporarily shuffled around as Pokémon are switched out in battle, this ability chooses the last Pokémon according to that shuffled order."
+150,6,[Verwandelt]{move:transform} sich beim Betreten des Kampfes in den Gegner.,Pokémon mit dieser Fähigkeit kopieren einen zufälligen Gegner. Der Effekt ist identisch mit []{move:transform}.
 150,9,[Transforms]{move:transform} upon entering battle.,This Pokémon transforms into a random opponent upon entering battle.  This effect is identical to the move []{move:transform}.
+151,6,"Umgeht []{move:light-screen}, []{move:reflect} und []{move:safeguard}.","Pokémon mit dieser Fähigkeit ignorieren []{move:light-screen}, []{move:reflect} und []{move:safeguard}."
 151,9,"Bypasses []{move:light-screen}, []{move:reflect}, and []{move:safeguard}.","This Pokémon's moves ignore []{move:light-screen}, []{move:reflect}, and []{move:safeguard}."
+152,6,Ändert bei Kontakt die Fähigkeit von Angreifern in Mumie.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke mit Kontakt getroffen wird, ändert sich die Fähigkeit des Gegners in Mumie.
+
+[]{ability:multitype} ist nicht betroffen. Wenn das Pokémon von einem mit der Fähigkeit []{ability:moxie} besiegt wird, ändert sich dessen Fähigkeit ohne ihren Effekt auszulösen."
 152,9,Changes attacking Pokémon's abilities to Mummy on contact.,"Whenever a contact move hits this Pokémon, the attacking Pokémon's ability changes to Mummy.
 
 []{ability:multitype} is unaffected.  If a Pokémon with []{ability:moxie} knocks this Pokémon out, the former's ability will change without taking effect."
+153,6,"Erhöht den []{mechanic:attack} um 1 [Stufe]{mechanic:stat-modifier}, wenn es einen Gegner besiegt.","Der []{mechanic:attack} von Pokémon mit dieser Fähigkeit erhöht sich um 1 [Stufe]{mechanic:stat-modifier}, wenn es einen Gegner oder einen Teampartner besiegt.
+
+Die Fähigkeit löst nicht aus, wenn der Gegner indirekt besiegt wird, z.B. durch []{mechanic:poison} oder []{move:spikes}.
+
+Wenn der besiegte Gegner die Fähigkeit []{ability:mummy} hat, ändert sich die Fähigkeit ohne den alten Effekt auszulösen."
 153,9,Raises [Attack]{mechanic:attack} one stage upon KOing a Pokémon.,"This Pokémon's [Attack]{mechanic:attack} rises one stage upon knocking out another Pokémon, even a friendly Pokémon.
 
 This ability does not take effect when the Pokémon indirectly causes another Pokémon to faint, e.g. through [poison]{mechanic:poison} or []{move:spikes}.
 
 If this Pokémon knocks out a Pokémon with []{ability:mummy}, the former's ability will change without taking effect."
+154,6,"Erhöht den []{mechanic:attack} um 1 [Stufe]{mechanic:stat-modifier}, wenn es von []{type:dark} Attacken getroffen wird.","Wenn ein Pokémon mit dieser Fähigkeit von einer []{type:dark} Attacke getroffen wird, wird sein []{mechanic:attack} um 1 [Stufe]{mechanic:stat-modifier} erhöht.
+
+Die Attacke wird nicht beeinflusst."
 154,9,Raises [Attack]{mechanic:attack} one stage upon taking damage from a []{type:dark} move.,"Whenever a []{type:dark}-type move hits this Pokémon, its [Attack]{mechanic:attack} rises one [stage]{mechanic:stat-modifier}.
 
 The move is not negated in any way."
+155,6,"Erhöht die []{mechanic:speed} um 1 [Stufe]{mechanic:stat-modifier}, wenn es von []{type:dark}, []{type:ghost} oder []{type:bug} Attacken getroffen wird.","Die []{mechanic:speed} erhöht sich mit jedem Treffer einer []{type:dark}, []{type:ghost} oder []{type:bug} Attacke um 1 [Stufe]{mechanic:stat-modifier}."
 155,9,"Raises [Speed]{mechanic:speed} one [stage]{mechanic:stat-modifier} upon being hit by a []{type:dark}, []{type:ghost}, or []{type:bug} move.","This Pokémon's [Speed]{mechanic:speed} rises one stage with each hit from a damaging []{type:dark}-, []{type:ghost}-, or []{type:bug}-type move."
+156,6,Reflektiert die meisten Attacken ohne Schaden zum Angreifer zurück.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke getroffen wird die als Reflektierbar gekennzeichnet ist, wird die Attacke zum Angreifer zurückgeworfen.
+
+Alle reflektierbaren Attacken verursachen keinen Schaden und die meisten Attacken die keinen Schaden verursachen sind als reflektierbar gekennzeichnet.
+
+Eine Attacke die von dieser Fähigkeit oder von []{move:magic-coat} reflektiert wurde, kann nicht zurückreflektiert werden."
 156,9,Reflects most non-damaging moves back at their user.,"When this Pokémon is targeted by a move flagged as being reflectable, the move is redirected to its user.
 
 All reflectable moves are non-damaging, and most non-damaging moves that target other Pokémon are reflectable.
 
 A move reflected by this ability or []{move:magic-coat} cannot be reflected back."
+157,6,Absorbiert []{type:grass} Attacken und erhöhrt dabei den []{mechanic:attack} um 1 [Stufe]{mechanic:stat-modifier}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer []{type:grass} Attacke getroffen wird, steigt sein []{mechanic:attack} um 1 [Stufe]{mechanic:stat-modifier}, wobei jeder andere Effekt entfernt wird."
 157,9,"Absorbs []{type:grass} moves, raising [Attack]{mechanic:attack} one [stage]{mechanic:stat-modifier}.","Whenever a []{type:grass}-type move hits this Pokémon, its [Attack]{mechanic:attack} rises one [stage]{mechanic:stat-modifier}, negating any other effect on it."
+158,6,Erhöht die []{mechanic:priority} von Attacken ohne Schaden um 1 Stufe.,"Wenn ein Pokémon diese Fähigkeit hat, erhöht sich die []{mechanic:priority} seiner Attacken die keinen Schaden anrichten um 1 Stufe."
 158,9,Raises non-damaging moves' priority by one stage.,This Pokémon's non-damaging moves have their priority increased by one stage.
+159,6,"Verstärkt []{type:rock}, []{type:ground} und []{type:steel} Attacken um 30% während eines [Sandsturms]{mechanic:sandstorm}. Schützt vor Schäden durch [Sandstürme]{mechanic:sandstorm}.","Die []{type:rock}, []{type:ground} und []{type:steel} Attacken von Pokémon mit dieser Fähigkeit haben während eines [Sandsturms]{mechanic:sandstorm} 1,3× so viel Basisstärke wie sonst. Das Pokémon erleidet keinen Schaden durch [Sandstürme]{mechanic:sandstorm}, unabhängig von seinem Typ."
 159,9,"Strengthens []{type:rock}, []{type:ground}, and []{type:steel} moves to 1.3× their power during a [sandstorm]{mechanic:sandstorm}.  Protects against sandstorm damage.","During a [sandstorm]{mechanic:sandstorm}, this Pokémon's []{type:rock}-, []{type:ground}-, and []{type:steel}-type moves have 1.3× their base power.  This Pokémon does not take sandstorm damage, regardless of type."
+160,6,Angreifer erleiden bei Kontakt 1/8 ihrer max []{mechanic:hp} Schaden.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke mit Kontakt getroffen wird, erleidet der Angreifer 1/8 seiner maximalen []{mechanic:hp} Schaden.
+
+Diese Fähigkeit ist identisch mit []{ability:rough-skin}."
 160,9,Damages attacking Pokémon for 1/8 their max [HP]{mechanic:hp} on contact.,"Whenever a move makes contact with this Pokémon, the move's user takes 1/8 of its maximum [HP]{mechanic:hp} in damage.
 
 This ability functions identically to []{ability:rough-skin}."
+161,6,"Ändert jede Runde die Form von []{pokemon:darmanitan} abhängig von seinen []{mechanic:hp}: Zen Modus bei weniger als 50% der max []{mechanic:hp}, ansonsten Standard Modus.","[]{pokemon:darmanitan} wechselt am Ende jeder Runde zwischen dem Standard Modus und dem Zen Modus, abhängig von seinen []{mechanic:hp}. Wenn es weniger als 50% seiner maximalen []{mechanic:hp} hat, wechselt es zum Zen Modus, bei 50% oder mehr zum Standard Modus.
+
+[]{pokemon:darmanitan} wechselt zum Standard Modus beim Beenden des Kampfes oder wenn es die Fähigkeit verliert. Die Fähigkeit hat keinen Effekt für Pokémon außer []{pokemon:darmanitan}."
 161,9,"Changes []{pokemon:darmanitan}'s form after each turn depending on its [HP]{mechanic:hp}: Zen Mode below 50% max HP, and Standard Mode otherwise.","This Pokémon switches between Standard Mode and Zen Mode after each turn depending on its [HP]{mechanic:hp}.  Below 50% of its maximum HP, it switches to Zen Mode, and at 50% or above, it switches to Standard Mode.
 
 This Pokémon returns to Standard Mode upon leaving battle or losing this ability.  This ability has no effect if this Pokémon is not a []{pokemon:darmanitan}."
+162,6,Erhöht die []{mechanic:accuracy} von Partnern um 10%.,"Die []{mechanic:accuracy} der Attacken von Pokémon ist 1,1× so hoch wie sonst, solange ein Pokémon mit dieser Fähigkeit im Team ist."
 162,9,Increases moves' accuracy to 1.1× for friendly Pokémon.,"All friendly Pokémon's moves, including this Pokémon's own moves, have 1.1× their usual accuracy while this Pokémon is in battle."
+163,6,"Umgeht die gegnerische Fähigkeit, wenn sie eine Attacke verhindern kann.","Die Attacken von Pokémon mit dieser Fähigkeit ignorieren Fähigkeiten, die die Attacke am Funktionieren hindern oder ihre Effekte beeinflussen.
+
+Beispiel: Die Attacken ignorieren Fähigkeiten die sie komplett verhindern würden, wie []{ability:water-absorb}, Fähigkeiten die einen der Effekte verhindern würden, wie z.B. []{ability:clear-body}, []{ability:shell-armor} oder []{ability:sticky-hold} und Fähigkeiten die einen generellen schützenden Vorteil brächten, wie []{ability:simple}, []{ability:snow-cloak} oder []{ability:thick-fat}. Wenn eine Fähigkeit die Attacke behindern oder ihr helfen würde, wie []{ability:dry-skin} oder []{ability:unaware}, wird sie ebenfalls ignoriert.
+
+Fähigkeiten die dieser Beschreibung nicht entsprechen, selbst wenn sie eine Attacke behindern könnten, werden nicht verhindert. Zum Beispiel beeinflusst []{ability:cursed-body} nur mögliche zukünftige Anwendungen der Attacke, während []{ability:liquid-ooze} und []{ability:shadow-tag} nur den Effekt der Attacke auf den Anwender verhindern. Die Attacke kann keine Typ- oder Form-Änderungen verhindern die durch Fähigkeiten ausgelöst werden, zum Beispiel []{ability:color-change} oder []{ability:forecast}, genauso wie Effekte die von Fähigkeiten verursacht wurden aber nicht mehr an die Fähigkeit gebunden sind, so wie der []{mechanic:rain} von []{ability:drizzle}. Die Fähigkeit kann []{ability:multitype} nicht verhindern.
+
+Eine Fähigkeit die von dieser Fähigkeit ignoriert wird, wird nur überbrückt, während die Attacke eingesetzt wird. Beispiel: Die Attacken von Pokémon mit dieser Fähigkeit können ein Pokémon mit []{ability:limber} [paralysieren]{mechanic:paralysis} aber []{ability:limber} wird sich aktivieren und die Paralyse direkt danach heilen. Außerdem werden die [Stacheln]{move:spikes} dieses Pokémons nicht von dieser Fähigkeit beeinflusst, nachdem sie platziert wurden.
+
+Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, werden alle Trainer über diese Fähigkeit benachrichtigt.
+
+Die Fähigkeit ist identisch mit []{ability:teravolt} und []{ability:mold-breaker}."
 163,9,Bypasses targets' abilities if they could hinder or prevent moves.,"This Pokémon's moves completely ignore abilities that could hinder or prevent their effect on the target.
 
 For example, this Pokémon's moves ignore abilities that would fully negate them, such as []{ability:water-absorb}; abilities that would prevent any of their effects, such as []{ability:clear-body}, []{ability:shell-armor}, or []{ability:sticky-hold}; and abilities that grant any general protective benefit, such as []{ability:simple}, []{ability:snow-cloak}, or []{ability:thick-fat}.  If an ability could either hinder or help this Pokémon's moves, e.g. []{ability:dry-skin} or []{ability:unaware}, the ability is ignored either way.
@@ -530,6 +1061,17 @@ An ability ignored by this ability is only nullified while the move is being use
 When this Pokémon enters battle, all participating trainers are notified that it has this ability.
 
 This ability functions identically to []{ability:mold-breaker} and []{ability:teravolt}."
+164,6,"Umgeht die gegnerische Fähigkeit, wenn sie eine Attacke verhindern kann.","Die Attacken von Pokémon mit dieser Fähigkeit ignorieren Fähigkeiten, die die Attacke am Funktionieren hindern oder ihre Effekte beeinflussen.
+
+Beispiel: Die Attacken ignorieren Fähigkeiten die sie komplett verhindern würden, wie []{ability:water-absorb}, Fähigkeiten die einen der Effekte verhindern würden, wie z.B. []{ability:clear-body}, []{ability:shell-armor} oder []{ability:sticky-hold} und Fähigkeiten die einen generellen schützenden Vorteil brächten, wie []{ability:simple}, []{ability:snow-cloak} oder []{ability:thick-fat}. Wenn eine Fähigkeit die Attacke behindern oder ihr helfen würde, wie []{ability:dry-skin} oder []{ability:unaware}, wird sie ebenfalls ignoriert.
+
+Fähigkeiten die dieser Beschreibung nicht entsprechen, selbst wenn sie eine Attacke behindern könnten, werden nicht verhindert. Zum Beispiel beeinflusst []{ability:cursed-body} nur mögliche zukünftige Anwendungen der Attacke, während []{ability:liquid-ooze} und []{ability:shadow-tag} nur den Effekt der Attacke auf den Anwender verhindern. Die Attacke kann keine Typ- oder Form-Änderungen verhindern die durch Fähigkeiten ausgelöst werden, zum Beispiel []{ability:color-change} oder []{ability:forecast}, genauso wie Effekte die von Fähigkeiten verursacht wurden aber nicht mehr an die Fähigkeit gebunden sind, so wie der []{mechanic:rain} von []{ability:drizzle}. Die Fähigkeit kann []{ability:multitype} nicht verhindern.
+
+Eine Fähigkeit die von dieser Fähigkeit ignoriert wird, wird nur überbrückt, während die Attacke eingesetzt wird. Beispiel: Die Attacken von Pokémon mit dieser Fähigkeit können ein Pokémon mit []{ability:limber} [paralysieren]{mechanic:paralysis} aber []{ability:limber} wird sich aktivieren und die Paralyse direkt danach heilen. Außerdem werden die [Stacheln]{move:spikes} dieses Pokémons nicht von dieser Fähigkeit beeinflusst, nachdem sie platziert wurden.
+
+Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, werden alle Trainer über diese Fähigkeit benachrichtigt.
+
+Die Fähigkeit ist identisch mit []{ability:mold-breaker} und []{ability:turboblaze}."
 164,9,Bypasses targets' abilities if they could hinder or prevent moves.,"This Pokémon's moves completely ignore abilities that could hinder or prevent their effect on the target.
 
 For example, this Pokémon's moves ignore abilities that would fully negate them, such as []{ability:water-absorb}; abilities that would prevent any of their effects, such as []{ability:clear-body}, []{ability:shell-armor}, or []{ability:sticky-hold}; and abilities that grant any general protective benefit, such as []{ability:simple}, []{ability:snow-cloak}, or []{ability:thick-fat}.  If an ability could either hinder or help this Pokémon's moves, e.g. []{ability:dry-skin} or []{ability:unaware}, the ability is ignored either way.
@@ -541,42 +1083,103 @@ An ability ignored by this ability is only nullified while the move is being use
 When this Pokémon enters battle, all participating trainers are notified that it has this ability.
 
 This ability functions identically to []{ability:mold-breaker} and []{ability:turboblaze}."
+165,6,Schützt Verbündete vor mentalen Attacken.,"Pokémon sind vor mentalen Attacken wie []{move:attract}, []{move:disable}, []{move:taunt} oder []{move:encore} geschützt, solange sich ein Pokémon mit dieser Fähigkeit im Team befindet. Das gilt auch, für das Pokémon selbst."
 165,9,Protects allies against moves that affect their mental state.,Protects allies against moves that affect their mental state.
+166,6,Beschützt verbündete []{type:grass} Pokémon for negativen [Statuswerteänderungenen]{mechanic:stat-modifier}.,"[]{type:grass} Pokémon können durch Gegner keine negativen []{mechanic:stat-modifier} erleiden, solange sich ein Pokémon mit dieser Fähigkeit im Team befindet.
+
+Das betrifft nur direkte [Statuswerteänderungenen]{mechanic:stat-modifier}, der []{mechanic:speed} Malus von []{mechanic:paralysis} wird nicht verhindert, genauso wie selbstverursachte [Statuswerteänderungenen]{mechanic:stat-modifier} wie z.B. durch []{move:leaf-storm}."
 166,9,Protects friendly []{type:grass} Pokémon from having their stats lowered by other Pokémon.,Protects friendly []{type:grass} Pokémon from having their stats lowered by other Pokémon.
+167,6,Stellt zusätzlich zum eigentlichen Effekt einer Beere zusätzliche []{mechanic:hp} wieder her.,"Wenn ein Pokémon mit dieser Fähigkeit eine Beere isst, stellt es 1/3 seiner maximalen []{mechanic:hp} wieder her, zusätzlich zum eigentlichen Effekt der Beere.
+
+Die Fähigkeit wirkt auch, wenn das Pokémon die Beere durch []{move:fling}, []{move:bug-bite} oder []{move:pluck} erhalten hat, solange es von der Beere profitiert.
+
+Die Fähigkeit wirkt nicht, wenn die Beere mit []{move:natural-gift} verbraucht wird."
 167,9,"Restores HP upon eating a Berry, in addition to the Berry's effect.","Restores HP upon eating a Berry, in addition to the Berry's effect."
+168,6,Ändert den Typ des Anwenders in den der Attacke die er einsetzt.,"Wenn ein Pokémon mit dieser Fähigkeit eine Attacke einsetzt, ändert sich sein Typ in den der Attacke.
+
+Die Typumwandlung erfolgt unmittelbar vor dem Einsatz der Attacke, der Anwender erhält dadurch den []{mechanic:same-type-attack-bonus} Bonus für jede Attacke die er einsetzt und []{move:toxic} trifft immer. Die Typumwandlung bleibt bestehen, bis der Typ erneut gewandelt wird oder das Pokémon ausgetauscht wird, nicht aber durch deaktivieren oder austauschen der Fähigkeit.
+
+Wenn der Typ der Attacke geändert wird, zum Beispiel weil die Attacke eine andere Attacke benutzt, wie []{move:nature-power}, weil die Attacke selbst ihren Typ ändern kann oder weil der Typ der Attacke vom Gegner verändert wird, wie z.B. durch []{move:electrify} oder []{move:ion-deluge}, dann wird der geänderte Typ herangezogen. Wenn eine Attacke eingesetzt wird, die den Typ des Anwenders ändert, wie []{move:camouflage}, dann löst zuerst die Fähigkeit aus und ändert den Typ des Anwenders in den der Attacke, danach wird die Attacke entweder fehlschlagen oder den Typ des Anwenders wieder ändern. Wird []{move:curse} eingesetzt und der Anwender ist nicht bereits vom Typ []{type:ghost} wird er zum Typ []{type:ghost}.
+
+Die Fähigkeit löst nicht aus, wenn die Attacke fehlschlägt, außer sie geht wegen der Fähigkeit selbst daneben, wenn die Ausführung unterbrochen wird, z.B. durch []{mechanic:confusion}, wenn die Attacke verhindert wird (durch []{mechanic:rain} oder durch []{move:powder}). Die Fähigkeit löst trotzdem aus, wenn die Attacke daneben geht, blockiert wird (durch []{move:protect} oder ähnliches) oder keine Wirkung auf den Gegner hat.
+
+[]{move:struggle} ist nicht betroffen."
 168,9,Changes the bearer's type to match each move it uses.,"Changes the bearer's type to match each move it uses.
 
 The type change takes place just before the move is used."
+169,6,Halbiert den Schaden von physischen Attacken.,Pokémon mit dieser Fähigkeit erhalten nur den halben Schaden von physischen Attacken.
 169,9,Halves damage from physical attacks.,Halves damage from physical attacks.
+170,6,Stiehlt angreifenden Pokémon das Item wenn es von einer Attacke die Schaden verursacht getroffen wird.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke getroffen wird die Schaden verursacht, wird das vom Angreifer getragene Item auf das getroffene Pokémon übertragen, wenn dieses noch keins hält.
+
+Das Pokémon stiehlt nicht, wenn es besiegt wird. Es kann auch stehlen, wenn der Angreifer einen []{move:substitute} hat, aber nicht wenn der eigene getroffen wird. Wenn eine Attacke mehrmals trifft, löst nur der letzte Treffer die Fähigkeit aus. Wenn das Pokémon ein wildes ist, kann es kein Item stehlen."
 170,9,Steals the target's held item when the bearer uses a damaging move.,Steals the target's held item when the bearer uses a damaging move.
+171,6,"Schützt gegen Kugel-, Ball- und Bombenbasierte Attacken.","Pokémon mit dieser Fähigkeit können nicht von Attacken getroffen werden die Kugel-, Ball- oder Bombenbasiert sind."
 171,9,"Protects against bullet, ball, and bomb-based moves.","Protects against bullet, ball, and bomb-based moves."
+172,6,Erhöht den []{mechanic:special-attack} um 2 [Stufen]{mechanic:stat-modifier} wenn ein Statuswert gesenkt wird.,"Wenn ein Statuswert eines Pokémon mit dieser Fähigkeit [gesenkt]{mechanic:stat-modifier} wird, wird sein []{mechanic:special-attack} um 2 [Stufen]{mechanic:stat-modifier} erhöht.
+
+Wenn mehrere Statuswerte [gesenkt]{mechanic:stat-modifier} löst die Fähigkeit für jeden Statuswert aus."
 172,9,Raises Special Attack by two stages upon having any stat lowered.,Raises Special Attack by two stages upon having any stat lowered.
+173,6,Verstärkt Bissattacken um 50%.,"Die Bissattacken von Pokémon mit dieser Fähigkeit sind 1,5× so stark wie sonst. Zu Bissattacken zählen auch []{move:crunch} und ""Zahn""-Attacken."
 173,9,Strengthens biting moves to 1.5× their power.,Strengthens biting moves to 1.5× their power.
+174,6,Ändert die []{type:normal} Attacken des Anwenders in []{type:ice} Attacken und verstärkt sie um 30%.,"Die []{type:normal} Attacken von Pokémon mit dieser Fäigkeit werden zu []{type:ice} Attacken. Attacken die durch diese Fähigkeit beeinflusst werden, haben 1,3× so viel Basisstärke wie sonst."
 174,9,Turns the bearer's []{type:normal} moves into []{type:ice} moves and strengthens them to 1.3× their power.,Turns the bearer's []{type:normal}-type moves into []{type:ice}-type moves.  Moves changed by this ability have 1.3× their power.
+175,6,Hindert Partner am [einschlafen]{mechanic:sleep}.,Pokémon können nicht [einschlafen]{mechanic:sleep} solange sich ein Pokémon mit dieser Fähigkeit im Team befindet.
 175,9,Prevents friendly Pokémon from sleeping.,Prevents friendly Pokémon from sleeping.
+176,6,"Wechselt die Form von []{pokemon:aegislash} zur Klingenform, wenn eine Attacke mit Schaden eingesetzt wird, oder zur Schildform, wenn []{move:kings-shield} eingesetzt wird.","Lässt []{pokemon:aegislash} zur Klingenform wechseln, wenn es einen Attacke einsetzt die Schaden verursacht, oder zur Schildform, wenn []{move:kings-shield} eingesetzt wird.
+
+Die Fähigkeit löst auch aus, wenn die Ausführung der Attacke verhindert wird, z.B. durch []{mechanic:sleep} oder []{mechanic:confusion}. Die Fähigkeit löst nicht aus bei Attacken die andere Attacken aufrufen, so wie []{move:sleep-talk}, selbst wenn dabei []{move:kings-shield} oder eine Attacke die Schaden verursacht aufgerufen wird.
+
+Die Fähigkeit hat keinen Effekt für Pokémon außer []{pokemon:aegislash}."
 176,9,"Changes []{pokemon:aegislash} to Blade Forme before using a damaging move, or Shield Forme before using []{move:kings-shield}.","Changes []{pokemon:aegislash} to Blade Forme before using a damaging move, or Shield Forme before using []{move:kings-shield}."
+177,6,Erhöht die []{mechanic:priority} von []{type:flying} Attacken um 1 Stufe.,"Wenn ein Pokémon diese Fähigkeit hat, erhöht sich die []{mechanic:priority} seiner []{type:flying} Attacken um 1 Stufe."
 177,9,Raises []{type:flying} moves' priority by one stage.,Raises []{type:flying} moves' priority by one stage.
+178,6,Verstärkt Aura- und Pulsattacken um 50%.,"Die Aura- und Pulsattacken von Pokémon mit dieser Fähigkeit sind 1,5× so stark wie sonst. Zu den Attacken zählen auch []{move:water-pulse} und []{move:origin-pulse} und []{move:heal-pulse} heilt um 75% statt 50% der maximalen []{mechanic:hp}."
 178,9,Strengthens aura and pulse moves to 1.5× their power.,Strengthens aura and pulse moves to 1.5× their power.
+179,6,Erhöht die []{mechanic:defense} um 50% während dem Effekt von []{move:grassy-terrain}.,"Während der Effekt von []{move:grassy-terrain} aktiv ist, haben Pokémon mit dieser Fähigkeit eine 1,5× so hohe []{mechanic:defense} wie sonst."
 179,9,Boosts Defense while []{move:grassy-terrain} is in effect.,Boosts Defense while []{move:grassy-terrain} is in effect.
+180,6,"Gibt das eigene Item an einen Verbündeten weiter, wenn dieser seins benutzt hat.","Gibt das eigene getragene Item an einen Teampartner weiter, wenn dieser sein Item benutzt hat.
+
+Das gilt auch, wenn der Partner das Item mit []{move:fling} verbraucht hat, wenn er eine gegnerische Beere mit []{move:pluck} gegessen hat und kein Item trägt oder sein []{item:air-balloon} platzt. Wenn mehrere Teampartner ihre Items in der gleichen Runde verbrauchen, erhält derjenige mit der höheren []{mechanic:speed} das Item ohne dabei []{move:trick-room} zu beachten.
+
+Die Fähigkeit löst nicht aus, wenn das Item nur bewegt wird, beispielsweise durch []{move:thief}, []{ability:magician} oder []{item:sticky-barb}, wenn es durch []{move:incinerate} zerstört oder fallengelassen wird."
 180,9,Passes the bearer's held item to an ally when the ally uses up its item.,Passes the bearer's held item to an ally when the ally uses up its item.
+181,6,Verstärkt Attacken mit Kontakt um 33%.,"Die Attacken von Pokémon mit dieser Fähigkeit, die Konakt herstellen, haben eine 1,33× Basisstärke wie sonst."
 181,9,Strengthens moves that make contact to 1.33× their power.,Strengthens moves that make contact to 1.33× their power.
+182,6,Ändert die []{type:normal} Attacken des Anwenders in []{type:fairy} Attacken und verstärkt sie um 30%.,"Die []{type:normal} Attacken von Pokémon mit dieser Fäigkeit werden zu []{type:fairy} Attacken. Attacken die durch diese Fähigkeit beeinflusst werden, haben 1,3× so viel Basisstärke wie sonst."
 182,9,Turns the bearer's []{type:normal} moves into []{type:fairy} moves and strengthens them to 1.3× their power.,Turns the bearer's []{type:normal}-type moves into []{type:fairy} moves.  Moves changed by this ability have 1.3× their power.
+183,6,Senkt bei Kontakt die []{mechanic:speed} des Angreifers um 1 [Stufe]{mechanic:stat-modifier}.,"Wenn ein Pokémon mit dieser Fähigkeit von einer Attacke die Kontakt herstellt getroffen wird, wird die []{mechanic:speed} des Angreifers um 1 [Stufe]{mechanic:stat-modifier} gesenkt."
 183,9,Lowers attacking Pokémon's Speed by one stage on contact.,Lowers attacking Pokémon's Speed by one stage on contact.
+184,6,Ändert die []{type:normal} Attacken des Anwenders in []{type:flying} Attacken und verstärkt sie um 30%.,"Die []{type:normal} Attacken von Pokémon mit dieser Fäigkeit werden zu []{type:flying} Attacken. Attacken die durch diese Fähigkeit beeinflusst werden, haben 1,3× so viel Basisstärke wie sonst."
 184,9,Turns the bearer's []{type:normal} moves into []{type:flying} moves and strengthens them to 1.3× their power.,Turns the bearer's []{type:normal}-type moves into []{type:flying}-type moves.  Moves changed by this ability have 1.3× their power.
+185,6,"Lässt den Träger bei Attacken die Schaden verursachen ein zweites mal treffen, wobei der 2. Treffer nur halbe Stärke hat.","Wenn ein Pokémon mit dieser Fähigkeit eine Attacke einsetzt die Schaden verursacht, trifft die Attacke ein zweites Mal, wobei der zweite Schlag nur mit halber Stärke ausgeführt wird."
 185,9,Lets the bearer hit twice with damaging moves.  The second hit has half power.,Lets the bearer hit twice with damaging moves.  The second hit has half power.
+186,6,Verstärkt []{type:dark} Attacken aller Pokémon im Kampf um 33%.,"Alle []{type:dark} Attacken von allen Pokémon sind 1,33× so stark wie sonst, solange sich ein Pokémon mit dieser Fähigkeit im Kampf befindet."
 186,9,Strengthens []{type:dark} moves to 1.33× their power for all friendly and opposing Pokémon.,Strengthens []{type:dark} moves for all friendly and opposing Pokémon.
+187,6,Verstärkt []{type:fairy} Attacken aller Pokémon im Kampf um 33%.,"Alle []{type:fairy} Attacken von allen Pokémon sind 1,33× so stark wie sonst, solange sich ein Pokémon mit dieser Fähigkeit im Kampf befindet."
 187,9,Strengthens []{type:fairy} moves to 1.33× their power for all friendly and opposing Pokémon.,Strengthens []{type:fairy} moves for all friendly and opposing Pokémon.
+188,6,Schwächt die von []{ability:dark-aura} und []{ability:fairy-aura} gestärkten Attacken.,"Wenn sich ein Pokémon mit dieser Fähigkeit im Kampf befindet, werden die Attacken die normalerweise durch []{ability:dark-aura} und []{ability:fairy-aura} verstärkt werden, stattdessen um 2/3 Basisstärke gesenkt."
 188,9,Makes []{ability:dark-aura} and []{ability:fairy-aura} weaken moves of their respective types.,"While this Pokémon is on the field, []{ability:dark-aura} and []{ability:fairy-aura} weaken moves of their respective types to 2/3 their power, rather than strengthening them."
+189,6,Ändert beim Betreten des Kampfes das []{mechanic:weather} in heftigen []{mechanic:rain} und verhindert []{type:fire} Attacken.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, ändert sich das []{mechanic:weather} in heftigen []{mechanic:rain}. Das []{mechanic:weather} kann weder durch Fähigkeiten wie []{ability:drought} noch durch Attacken wie []{move:sandstorm} geändert werden und solche Attacken schlagen fehl.
+
+Der []{mechanic:rain} hört auf, wenn das Pokémon mit dieser Fähigkeit den Kampf verlässt oder in eine hintere Position rotiert wird und kein Anderes mit derselben Fähigkeit noch im Kampf ist, wenn die Fähigkeit deaktiviert wird oder ein Pokémon mit der Fähigkeit []{ability:delta-stream} oder []{ability:desolate-land} den Kampf betritt. Die [Wettereffekte]{mechanic:weather} können durch Fähigkeiten wie []{ability:cloud-nine} aufgehoben werden."
 189,9,"Creates heavy rain, which has all the properties of Rain Dance, cannot be replaced, and causes damaging Fire moves to fail.","When this Pokémon enters battle or gains this ability, the weather becomes heavy rain.  Heavy rain has all the properties of []{move:rain-dance} and also causes damaging Fire moves to fail.
 
 Heavy rain ends when this Pokémon leaves battle or loses this ability, or when this ability is nullified.  The weather cannot otherwise be changed except by the effects of []{ability:delta-stream} and []{ability:desolate-land}.
 
 []{ability:air-lock} and []{ability:cloud-nine} will prevent the effects of heavy rain, including allowing Fire moves to work, but will not allow the weather to be changed."
+190,6,Ändert beim Betreten des Kampfes das []{mechanic:weather} in sehr [starkes Sonnenlicht]{mechanic:strong-sunlight} und verhindert []{type:water} Attacken.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, ändert sich das []{mechanic:weather} in sehr [starkes Sonnenlicht]{mechanic:strong-sunlight}. Das []{mechanic:weather} kann weder durch Fähigkeiten wie []{ability:drizzle} noch durch Attacken wie []{move:sandstorm} geändert werden und solche Attacken schlagen fehl.
+
+Der [starke Sonnenschein]{mechanic:strong-sunlight} hört auf, wenn das Pokémon mit dieser Fähigkeit den Kampf verlässt oder in eine hintere Position rotiert wird und kein Anderes mit derselben Fähigkeit noch im Kampf ist, wenn die Fähigkeit deaktiviert wird oder ein Pokémon mit der Fähigkeit []{ability:delta-stream} oder []{ability:primordial-sea} den Kampf betritt. Die [Wettereffekte]{mechanic:weather} können durch Fähigkeiten wie []{ability:air-lock} aufgehoben werden."
 190,9,"Creates extremely harsh sunlight, which has all the properties of Sunny Day, cannot be replaced, and causes damaging Water moves to fail.","When this Pokémon enters battle or gains this ability, the weather becomes extremely harsh sunlight.  Extremely harsh sunlight has all the properties of []{move:sunny-day} and also causes damaging Water moves to fail.
 
 Extremely harsh sunlight ends when this Pokémon leaves battle or loses this ability, or when this ability is nullified.  The weather cannot otherwise be changed except by the effects of []{ability:delta-stream} and []{ability:primordial-sea}.
 
 []{ability:air-lock} and []{ability:cloud-nine} will prevent the effects of extremely harsh sunlight, including allowing Water moves to work, but will not allow the weather to be changed."
+191,6,Ändert beim Betreten des Kampfes das []{mechanic:weather} in Windströmungen und hebt Typenvorteile gegenüber []{type:flying} Attacken auf.,"Wenn ein Pokémon mit dieser Fähigkeit den Kampf betritt, ändert sich das []{mechanic:weather} in starke Windströmungen. Während das Wetter aktiv ist, werden alle Typenvorteile gegenüber []{type:flying} aufgehoben. Das heißt, das z.B. []{type:rock} gegen ein []{type:flying} Pokémon nur normalen Schaden anrichten. Die Effektivität gegen einen eventuellen Zweittyp wird nicht verändert.
+
+Das []{mechanic:weather} kann weder durch Fähigkeiten wie []{ability:drizzle} noch durch Attacken wie []{move:sandstorm} geändert werden und solche Attacken schlagen fehl.
+
+Die Windströmungen hören auf, wenn das Pokémon mit dieser Fähigkeit den Kampf verlässt oder in eine hintere Position rotiert wird und kein Anderes mit derselben Fähigkeit noch im Kampf ist, wenn die Fähigkeit deaktiviert wird oder ein Pokémon mit der Fähigkeit []{ability:delta-stream} oder []{ability:primordial-sea} den Kampf betritt. Die [Wettereffekte]{mechanic:weather} können durch Fähigkeiten wie []{ability:air-lock} aufgehoben werden."
 191,9,"Creates a mysterious air current, which cannot be replaced and causes moves to never be super effective against Flying Pokémon.","When this Pokémon enters battle or gains this ability, the weather becomes a mysterious air current.  A mysterious air current causes moves to not be super effective against Flying; they do neutral damage instead.  []{ability:anticipation} and []{move:stealth-rock} are not affected.
 
 The mysterious air current ends when this Pokémon leaves battle or loses this ability, or when this ability is nullified.  The weather cannot otherwise be changed except by the effects of []{ability:desolate-land} and []{ability:primordial-sea}.
diff --git a/pokedex/data/csv/contest_combos.csv b/pokedex/data/csv/contest_combos.csv
index 6af426a..3e2f492 100644
--- a/pokedex/data/csv/contest_combos.csv
+++ b/pokedex/data/csv/contest_combos.csv
@@ -1,6 +1,6 @@
 first_move_id,second_move_id
 1,3
-1,29
+1,21
 1,185
 7,8
 7,9
@@ -37,7 +37,6 @@ first_move_id,second_move_id
 74,22
 74,71
 74,72
-74,73
 74,75
 74,76
 74,80
@@ -45,6 +44,7 @@ first_move_id,second_move_id
 74,331
 74,338
 74,345
+81,169
 82,225
 82,337
 82,349
@@ -77,8 +77,8 @@ first_move_id,second_move_id
 111,205
 116,2
 116,5
-116,21
 116,25
+116,29
 116,36
 116,38
 116,167
@@ -108,8 +108,6 @@ first_move_id,second_move_id
 170,66
 170,136
 170,223
-170,276
-170,329
 174,180
 174,194
 174,212
@@ -132,10 +130,8 @@ first_move_id,second_move_id
 199,276
 201,28
 201,189
-201,300
 201,311
 201,328
-201,341
 203,175
 203,179
 203,194
@@ -155,17 +151,18 @@ first_move_id,second_move_id
 230,77
 230,78
 230,79
-240,3
 240,55
 240,56
 240,57
 240,61
 240,87
+240,110
 240,127
 240,128
 240,145
 240,152
 240,190
+240,250
 240,291
 240,308
 240,311
@@ -174,7 +171,6 @@ first_move_id,second_move_id
 240,346
 240,352
 241,7
-241,27
 241,52
 241,53
 241,76
@@ -186,6 +182,7 @@ first_move_id,second_move_id
 241,235
 241,236
 241,257
+241,261
 241,284
 241,299
 241,307
@@ -198,22 +195,14 @@ first_move_id,second_move_id
 252,292
 254,255
 254,256
-258,58
 258,59
-258,62
-258,114
 258,181
-258,196
-258,301
 258,311
-258,329
-258,333
 268,9
 268,84
 268,85
 268,86
 268,87
-268,192
 268,209
 268,344
 268,351
diff --git a/pokedex/data/csv/egg_group_prose.csv b/pokedex/data/csv/egg_group_prose.csv
index ccf0a7d..eeba629 100644
--- a/pokedex/data/csv/egg_group_prose.csv
+++ b/pokedex/data/csv/egg_group_prose.csv
@@ -1,89 +1,104 @@
 egg_group_id,local_language_id,name
 1,1,かいじゅう
+1,3,괴수
 1,5,Monstrueux
 1,6,Monster
 1,7,Monstruo
 1,8,Mostro
 1,9,Monster
 2,1,すいちゅう1
+2,3,수중 1
 2,5,Aquatique 1
 2,6,Wasser 1
 2,7,Agua 1
 2,8,Acqua 1
 2,9,Water 1
 3,1,むし
+3,3,벌레
 3,5,Insectoïde
 3,6,Käfer
 3,7,Bicho
 3,8,Coleottero
 3,9,Bug
 4,1,ひこう
+4,3,비행
 4,5,Aérien
 4,6,Flug
 4,7,Volador
 4,8,Volante
 4,9,Flying
 5,1,りくじょう
+5,3,육상
 5,5,Terrestre
 5,6,Feld
 5,7,Campo
 5,8,Campo
 5,9,Field
 6,1,ようせい
+6,3,요정
 6,5,Féerique
 6,6,Fee
 6,7,Hada
 6,8,Magico
 6,9,Fairy
 7,1,しょくぶつ
+7,3,식물
 7,5,Végétal
 7,6,Pflanze
 7,7,Planta
 7,8,Erba
 7,9,Grass
 8,1,ひとがた
+8,3,인간형
 8,5,Humanoïde
 8,6,Humanotyp
 8,7,Humanoide
 8,8,Umanoide
 8,9,Human-Like
 9,1,すいちゅう3
+9,3,수중 3
 9,5,Aquatique 3
 9,6,Wasser 3
 9,7,Agua 3
 9,8,Acqua 3
 9,9,Water 3
 10,1,こうぶつ
+10,3,광물
 10,5,Minéral
 10,6,Mineral
 10,7,Mineral
 10,8,Minerale
 10,9,Mineral
 11,1,ふていけい
+11,3,부정형
 11,5,Amorphe
 11,6,Amorph
 11,7,Amorfo
 11,8,Amorfo
 11,9,Amorphous
 12,1,すいちゅう2
+12,3,수중 2
 12,5,Aquatique 2
 12,6,Wasser 2
 12,7,Agua 2
 12,8,Acqua 2
 12,9,Water 2
 13,1,メタモン
+13,3,메타몽
 13,5,Métamorph
 13,6,Ditto
 13,7,Ditto
 13,8,Ditto
 13,9,Ditto
 14,1,ドラゴン
+14,3,드래곤
 14,5,Draconique
 14,6,Drache
 14,7,Dragón
 14,8,Drago
 14,9,Dragon
 15,1,タマゴみはっけん
+15,3,알미발견
 15,5,Inconnu
 15,6,Unbekannt
 15,7,Desconocido
diff --git a/pokedex/data/csv/encounter_condition_value_map.csv b/pokedex/data/csv/encounter_condition_value_map.csv
index ac9a541..38919c4 100644
--- a/pokedex/data/csv/encounter_condition_value_map.csv
+++ b/pokedex/data/csv/encounter_condition_value_map.csv
@@ -12174,3 +12174,4768 @@ encounter_id,encounter_condition_value_id
 47876,18
 47877,19
 47878,20
+50545,2
+50546,2
+50547,2
+50548,2
+50549,2
+50550,2
+50551,2
+50552,1
+50553,1
+50554,1
+50555,1
+50556,1
+50557,1
+50558,1
+50566,4
+50567,4
+50568,4
+50569,4
+50570,4
+50571,4
+50572,4
+50573,3
+50574,3
+50575,3
+50576,3
+50577,3
+50578,3
+50579,3
+50580,5
+50581,5
+50582,5
+50583,5
+50584,5
+50585,5
+50586,5
+50636,3
+50637,3
+50638,3
+50639,3
+50640,3
+50641,3
+50642,3
+50643,4
+50644,4
+50645,4
+50646,4
+50647,4
+50648,4
+50649,4
+50650,5
+50651,5
+50652,5
+50653,5
+50654,5
+50655,5
+50656,5
+50664,3
+50665,3
+50666,3
+50667,3
+50668,3
+50669,3
+50670,3
+50671,4
+50672,4
+50673,4
+50674,4
+50675,4
+50676,4
+50677,4
+50678,5
+50679,5
+50680,5
+50681,5
+50682,5
+50683,5
+50684,5
+50692,2
+50693,2
+50694,2
+50695,2
+50696,2
+50697,2
+50698,2
+50699,1
+50700,1
+50701,1
+50702,1
+50703,1
+50704,1
+50705,1
+50734,4
+50735,4
+50736,4
+50737,4
+50738,4
+50739,4
+50740,4
+50741,3
+50742,3
+50743,3
+50744,3
+50745,3
+50746,3
+50747,3
+50748,5
+50749,5
+50750,5
+50751,5
+50752,5
+50753,5
+50754,5
+50769,3
+50770,3
+50771,3
+50772,3
+50773,3
+50774,3
+50775,3
+50776,4
+50777,4
+50778,4
+50779,4
+50780,4
+50781,4
+50782,4
+50783,5
+50784,5
+50785,5
+50786,5
+50787,5
+50788,5
+50789,5
+50790,4
+50791,4
+50792,4
+50793,4
+50794,4
+50795,4
+50796,4
+50797,3
+50798,3
+50799,3
+50800,3
+50801,3
+50802,3
+50803,3
+50804,5
+50805,5
+50806,5
+50807,5
+50808,5
+50809,5
+50810,5
+50811,3
+50812,3
+50813,3
+50814,3
+50815,3
+50816,3
+50817,3
+50818,4
+50819,4
+50820,4
+50821,4
+50822,4
+50823,4
+50824,4
+50825,5
+50826,5
+50827,5
+50828,5
+50829,5
+50830,5
+50831,5
+50832,3
+50833,3
+50834,3
+50835,3
+50836,3
+50837,3
+50838,3
+50839,4
+50840,4
+50841,4
+50842,4
+50843,4
+50844,4
+50845,4
+50846,5
+50847,5
+50848,5
+50849,5
+50850,5
+50851,5
+50852,5
+50853,3
+50854,3
+50855,3
+50856,3
+50857,3
+50858,3
+50859,3
+50860,4
+50861,4
+50862,4
+50863,4
+50864,4
+50865,4
+50866,4
+50867,5
+50868,5
+50869,5
+50870,5
+50871,5
+50872,5
+50873,5
+50874,3
+50875,3
+50876,3
+50877,3
+50878,3
+50879,3
+50880,3
+50881,4
+50882,4
+50883,4
+50884,4
+50885,4
+50886,4
+50887,4
+50888,5
+50889,5
+50890,5
+50891,5
+50892,5
+50893,5
+50894,5
+50895,4
+50896,4
+50897,4
+50898,4
+50899,4
+50900,4
+50901,4
+50902,3
+50903,3
+50904,3
+50905,3
+50906,3
+50907,3
+50908,3
+50909,5
+50910,5
+50911,5
+50912,5
+50913,5
+50914,5
+50915,5
+50916,3
+50917,3
+50918,3
+50919,3
+50920,3
+50921,3
+50922,3
+50923,4
+50924,4
+50925,4
+50926,4
+50927,4
+50928,4
+50929,4
+50930,5
+50931,5
+50932,5
+50933,5
+50934,5
+50935,5
+50936,5
+50937,3
+50938,3
+50939,3
+50940,3
+50941,3
+50942,3
+50943,3
+50944,4
+50945,4
+50946,4
+50947,4
+50948,4
+50949,4
+50950,4
+50951,5
+50952,5
+50953,5
+50954,5
+50955,5
+50956,5
+50957,5
+50958,4
+50959,4
+50960,4
+50961,4
+50962,4
+50963,4
+50964,4
+50965,3
+50966,3
+50967,3
+50968,3
+50969,3
+50970,3
+50971,3
+50972,5
+50973,5
+50974,5
+50975,5
+50976,5
+50977,5
+50978,5
+50986,4
+50987,4
+50988,4
+50989,4
+50990,4
+50991,4
+50992,4
+50993,3
+50994,3
+50995,3
+50996,3
+50997,3
+50998,3
+50999,3
+51000,5
+51001,5
+51002,5
+51003,5
+51004,5
+51005,5
+51006,5
+51007,4
+51008,4
+51009,4
+51010,4
+51011,4
+51012,4
+51013,4
+51014,3
+51015,3
+51016,3
+51017,3
+51018,3
+51019,3
+51020,3
+51021,5
+51022,5
+51023,5
+51024,5
+51025,5
+51026,5
+51027,5
+51028,4
+51029,4
+51030,4
+51031,4
+51032,4
+51033,4
+51034,4
+51035,3
+51036,3
+51037,3
+51038,3
+51039,3
+51040,3
+51041,3
+51042,5
+51043,5
+51044,5
+51045,5
+51046,5
+51047,5
+51048,5
+51049,3
+51050,3
+51051,3
+51052,3
+51053,3
+51054,3
+51055,3
+51056,4
+51057,4
+51058,4
+51059,4
+51060,4
+51061,4
+51062,4
+51063,5
+51064,5
+51065,5
+51066,5
+51067,5
+51068,5
+51069,5
+51070,4
+51071,4
+51072,4
+51073,4
+51074,4
+51075,4
+51076,4
+51077,3
+51078,3
+51079,3
+51080,3
+51081,3
+51082,3
+51083,3
+51084,5
+51085,5
+51086,5
+51087,5
+51088,5
+51089,5
+51090,5
+51091,3
+51092,3
+51093,3
+51094,3
+51095,3
+51096,3
+51097,3
+51098,4
+51099,4
+51100,4
+51101,4
+51102,4
+51103,4
+51104,4
+51105,5
+51106,5
+51107,5
+51108,5
+51109,5
+51110,5
+51111,5
+51112,4
+51113,4
+51114,4
+51115,4
+51116,4
+51117,4
+51118,4
+51119,3
+51120,3
+51121,3
+51122,3
+51123,3
+51124,3
+51125,3
+51126,5
+51127,5
+51128,5
+51129,5
+51130,5
+51131,5
+51132,5
+51133,3
+51134,3
+51135,3
+51136,3
+51137,3
+51138,3
+51139,3
+51140,4
+51141,4
+51142,4
+51143,4
+51144,4
+51145,4
+51146,4
+51147,5
+51148,5
+51149,5
+51150,5
+51151,5
+51152,5
+51153,5
+51154,4
+51155,4
+51156,4
+51157,4
+51158,4
+51159,4
+51160,4
+51161,3
+51162,3
+51163,3
+51164,3
+51165,3
+51166,3
+51167,3
+51168,5
+51169,5
+51170,5
+51171,5
+51172,5
+51173,5
+51174,5
+51175,4
+51176,4
+51177,4
+51178,4
+51179,4
+51180,4
+51181,4
+51182,3
+51183,3
+51184,3
+51185,3
+51186,3
+51187,3
+51188,3
+51189,5
+51190,5
+51191,5
+51192,5
+51193,5
+51194,5
+51195,5
+51196,4
+51197,4
+51198,4
+51199,4
+51200,4
+51201,4
+51202,4
+51203,3
+51204,3
+51205,3
+51206,3
+51207,3
+51208,3
+51209,3
+51210,5
+51211,5
+51212,5
+51213,5
+51214,5
+51215,5
+51216,5
+51217,4
+51218,4
+51219,4
+51220,4
+51221,4
+51222,4
+51223,4
+51224,3
+51225,3
+51226,3
+51227,3
+51228,3
+51229,3
+51230,3
+51231,5
+51232,5
+51233,5
+51234,5
+51235,5
+51236,5
+51237,5
+51238,4
+51239,4
+51240,4
+51241,4
+51242,4
+51243,4
+51244,4
+51245,3
+51246,3
+51247,3
+51248,3
+51249,3
+51250,3
+51251,3
+51252,5
+51253,5
+51254,5
+51255,5
+51256,5
+51257,5
+51258,5
+51259,4
+51260,4
+51261,4
+51262,4
+51263,4
+51264,4
+51265,4
+51266,3
+51267,3
+51268,3
+51269,3
+51270,3
+51271,3
+51272,3
+51273,5
+51274,5
+51275,5
+51276,5
+51277,5
+51278,5
+51279,5
+51280,4
+51281,4
+51282,4
+51283,4
+51284,4
+51285,4
+51286,4
+51287,3
+51288,3
+51289,3
+51290,3
+51291,3
+51292,3
+51293,3
+51294,5
+51295,5
+51296,5
+51297,5
+51298,5
+51299,5
+51300,5
+51301,4
+51302,4
+51303,4
+51304,4
+51305,4
+51306,4
+51307,4
+51308,3
+51309,3
+51310,3
+51311,3
+51312,3
+51313,3
+51314,3
+51315,5
+51316,5
+51317,5
+51318,5
+51319,5
+51320,5
+51321,5
+51322,4
+51323,4
+51324,4
+51325,4
+51326,4
+51327,4
+51328,4
+51329,3
+51330,3
+51331,3
+51332,3
+51333,3
+51334,3
+51335,3
+51336,5
+51337,5
+51338,5
+51339,5
+51340,5
+51341,5
+51342,5
+51343,4
+51344,4
+51345,4
+51346,4
+51347,4
+51348,4
+51349,4
+51350,3
+51351,3
+51352,3
+51353,3
+51354,3
+51355,3
+51356,3
+51357,5
+51358,5
+51359,5
+51360,5
+51361,5
+51362,5
+51363,5
+51371,4
+51372,4
+51373,4
+51374,4
+51375,4
+51376,4
+51377,4
+51378,3
+51379,3
+51380,3
+51381,3
+51382,3
+51383,3
+51384,3
+51385,5
+51386,5
+51387,5
+51388,5
+51389,5
+51390,5
+51391,5
+51371,2
+51372,2
+51373,2
+51374,2
+51375,2
+51376,2
+51377,2
+51378,2
+51379,2
+51380,2
+51381,2
+51382,2
+51383,2
+51384,2
+51385,2
+51386,2
+51387,2
+51388,2
+51389,2
+51390,2
+51391,2
+51392,1
+51393,1
+51394,1
+51395,1
+51396,1
+51397,1
+51398,1
+51399,4
+51400,4
+51401,4
+51402,4
+51403,4
+51404,4
+51405,4
+51406,3
+51407,3
+51408,3
+51409,3
+51410,3
+51411,3
+51412,3
+51413,5
+51414,5
+51415,5
+51416,5
+51417,5
+51418,5
+51419,5
+51420,4
+51421,4
+51422,4
+51423,4
+51424,4
+51425,4
+51426,4
+51427,3
+51428,3
+51429,3
+51430,3
+51431,3
+51432,3
+51433,3
+51434,5
+51435,5
+51436,5
+51437,5
+51438,5
+51439,5
+51440,5
+51441,4
+51442,4
+51443,4
+51444,4
+51445,4
+51446,4
+51447,4
+51448,3
+51449,3
+51450,3
+51451,3
+51452,3
+51453,3
+51454,3
+51455,5
+51456,5
+51457,5
+51458,5
+51459,5
+51460,5
+51461,5
+51441,2
+51442,2
+51443,2
+51444,2
+51445,2
+51446,2
+51447,2
+51448,2
+51449,2
+51450,2
+51451,2
+51452,2
+51453,2
+51454,2
+51455,2
+51456,2
+51457,2
+51458,2
+51459,2
+51460,2
+51461,2
+51462,1
+51463,1
+51464,1
+51465,1
+51466,1
+51467,1
+51468,1
+51469,4
+51470,4
+51471,4
+51472,4
+51473,4
+51474,4
+51475,4
+51476,3
+51477,3
+51478,3
+51479,3
+51480,3
+51481,3
+51482,3
+51483,5
+51484,5
+51485,5
+51486,5
+51487,5
+51488,5
+51489,5
+51490,4
+51491,4
+51492,4
+51493,4
+51494,4
+51495,4
+51496,4
+51497,3
+51498,3
+51499,3
+51500,3
+51501,3
+51502,3
+51503,3
+51504,5
+51505,5
+51506,5
+51507,5
+51508,5
+51509,5
+51510,5
+51511,4
+51512,4
+51513,4
+51514,4
+51515,4
+51516,4
+51517,4
+51518,3
+51519,3
+51520,3
+51521,3
+51522,3
+51523,3
+51524,3
+51525,5
+51526,5
+51527,5
+51528,5
+51529,5
+51530,5
+51531,5
+51546,4
+51547,4
+51548,4
+51549,4
+51550,4
+51551,4
+51552,4
+51553,3
+51554,3
+51555,3
+51556,3
+51557,3
+51558,3
+51559,3
+51560,5
+51561,5
+51562,5
+51563,5
+51564,5
+51565,5
+51566,5
+51567,4
+51568,4
+51569,4
+51570,4
+51571,4
+51572,4
+51573,4
+51574,3
+51575,3
+51576,3
+51577,3
+51578,3
+51579,3
+51580,3
+51581,5
+51582,5
+51583,5
+51584,5
+51585,5
+51586,5
+51587,5
+51588,4
+51589,4
+51590,4
+51591,4
+51592,4
+51593,4
+51594,4
+51595,3
+51596,3
+51597,3
+51598,3
+51599,3
+51600,3
+51601,3
+51602,5
+51603,5
+51604,5
+51605,5
+51606,5
+51607,5
+51608,5
+51609,4
+51610,4
+51611,4
+51612,4
+51613,4
+51614,4
+51615,4
+51616,3
+51617,3
+51618,3
+51619,3
+51620,3
+51621,3
+51622,3
+51623,5
+51624,5
+51625,5
+51626,5
+51627,5
+51628,5
+51629,5
+51630,4
+51631,4
+51632,4
+51633,4
+51634,4
+51635,4
+51636,4
+51637,3
+51638,3
+51639,3
+51640,3
+51641,3
+51642,3
+51643,3
+51644,5
+51645,5
+51646,5
+51647,5
+51648,5
+51649,5
+51650,5
+51714,4
+51715,4
+51716,4
+51717,4
+51718,4
+51719,4
+51720,4
+51721,3
+51722,3
+51723,3
+51724,3
+51725,3
+51726,3
+51727,3
+51728,5
+51729,5
+51730,5
+51731,5
+51732,5
+51733,5
+51734,5
+51735,4
+51736,4
+51737,4
+51738,4
+51739,4
+51740,4
+51741,4
+51742,3
+51743,3
+51744,3
+51745,3
+51746,3
+51747,3
+51748,3
+51749,5
+51750,5
+51751,5
+51752,5
+51753,5
+51754,5
+51755,5
+51756,4
+51757,4
+51758,4
+51759,4
+51760,4
+51761,4
+51762,4
+51763,3
+51764,3
+51765,3
+51766,3
+51767,3
+51768,3
+51769,3
+51770,5
+51771,5
+51772,5
+51773,5
+51774,5
+51775,5
+51776,5
+51777,4
+51778,4
+51779,4
+51780,4
+51781,4
+51782,4
+51783,4
+51784,3
+51785,3
+51786,3
+51787,3
+51788,3
+51789,3
+51790,3
+51791,5
+51792,5
+51793,5
+51794,5
+51795,5
+51796,5
+51797,5
+51798,4
+51799,4
+51800,4
+51801,4
+51802,4
+51803,4
+51804,4
+51805,3
+51806,3
+51807,3
+51808,3
+51809,3
+51810,3
+51811,3
+51812,5
+51813,5
+51814,5
+51815,5
+51816,5
+51817,5
+51818,5
+51819,4
+51820,4
+51821,4
+51822,4
+51823,4
+51824,4
+51825,4
+51826,3
+51827,3
+51828,3
+51829,3
+51830,3
+51831,3
+51832,3
+51833,5
+51834,5
+51835,5
+51836,5
+51837,5
+51838,5
+51839,5
+51840,4
+51841,4
+51842,4
+51843,4
+51844,4
+51845,4
+51846,4
+51847,3
+51848,3
+51849,3
+51850,3
+51851,3
+51852,3
+51853,3
+51854,5
+51855,5
+51856,5
+51857,5
+51858,5
+51859,5
+51860,5
+51861,4
+51862,4
+51863,4
+51864,4
+51865,4
+51866,4
+51867,4
+51868,3
+51869,3
+51870,3
+51871,3
+51872,3
+51873,3
+51874,3
+51875,5
+51876,5
+51877,5
+51878,5
+51879,5
+51880,5
+51881,5
+51882,4
+51883,4
+51884,4
+51885,4
+51886,4
+51887,4
+51888,4
+51889,3
+51890,3
+51891,3
+51892,3
+51893,3
+51894,3
+51895,3
+51896,5
+51897,5
+51898,5
+51899,5
+51900,5
+51901,5
+51902,5
+51903,4
+51904,4
+51905,4
+51906,4
+51907,4
+51908,4
+51909,4
+51910,3
+51911,3
+51912,3
+51913,3
+51914,3
+51915,3
+51916,3
+51917,5
+51918,5
+51919,5
+51920,5
+51921,5
+51922,5
+51923,5
+51924,4
+51925,4
+51926,4
+51927,4
+51928,4
+51929,4
+51930,4
+51931,3
+51932,3
+51933,3
+51934,3
+51935,3
+51936,3
+51937,3
+51938,5
+51939,5
+51940,5
+51941,5
+51942,5
+51943,5
+51944,5
+52105,2
+52106,2
+52107,2
+52108,1
+52109,1
+52110,1
+52129,2
+52130,2
+52131,2
+52132,1
+52195,3
+52196,3
+52197,3
+52198,3
+52199,4
+52200,4
+52201,4
+52202,4
+52203,5
+52204,5
+52205,5
+52206,5
+52219,3
+52220,3
+52221,3
+52222,3
+52223,4
+52224,4
+52225,4
+52226,4
+52227,5
+52228,5
+52229,5
+52230,5
+52259,3
+52260,3
+52261,3
+52262,3
+52263,4
+52264,4
+52265,4
+52266,4
+52267,5
+52268,5
+52269,5
+52270,5
+52307,3
+52308,3
+52309,3
+52310,3
+52311,4
+52312,4
+52313,4
+52314,4
+52315,5
+52316,5
+52317,5
+52318,5
+52359,2
+52360,2
+52361,2
+52362,2
+52363,1
+52364,1
+52365,1
+52366,3
+52367,3
+52368,3
+52369,3
+52370,4
+52371,4
+52372,4
+52373,4
+52374,5
+52375,5
+52376,5
+52377,5
+52382,3
+52383,3
+52384,3
+52385,3
+52386,4
+52387,4
+52388,4
+52389,4
+52390,5
+52391,5
+52392,5
+52393,5
+52406,2
+52407,2
+52408,2
+52409,2
+52410,1
+52411,1
+52412,1
+52433,3
+52434,3
+52435,3
+52436,3
+52437,4
+52438,4
+52439,4
+52440,4
+52441,5
+52442,5
+52443,5
+52444,5
+52489,3
+52490,3
+52491,3
+52492,3
+52493,4
+52494,4
+52495,4
+52496,4
+52497,5
+52498,5
+52499,5
+52500,5
+52513,3
+52514,3
+52515,3
+52516,3
+52517,4
+52518,4
+52519,4
+52520,4
+52521,5
+52522,5
+52523,5
+52524,5
+52553,3
+52554,3
+52555,3
+52556,3
+52557,4
+52558,4
+52559,4
+52560,4
+52561,5
+52562,5
+52563,5
+52564,5
+52601,3
+52602,3
+52603,3
+52604,3
+52605,4
+52606,4
+52607,4
+52608,4
+52609,5
+52610,5
+52611,5
+52612,5
+52653,2
+52654,2
+52655,2
+52656,2
+52657,1
+52658,1
+52659,1
+52660,1
+52661,3
+52662,3
+52663,3
+52664,3
+52665,4
+52666,4
+52667,4
+52668,4
+52669,5
+52670,5
+52671,5
+52672,5
+52677,3
+52678,3
+52679,3
+52680,3
+52681,4
+52682,4
+52683,4
+52684,4
+52685,5
+52686,5
+52687,5
+52688,5
+52701,2
+52702,2
+52703,2
+52704,2
+52705,1
+52706,1
+52707,1
+52708,1
+52729,3
+52730,3
+52731,3
+52732,3
+52733,4
+52734,4
+52735,4
+52736,4
+52737,5
+52738,5
+52739,5
+52740,5
+52807,2
+52808,2
+52809,2
+52810,1
+52811,1
+52812,1
+52933,2
+52934,2
+52935,2
+52936,2
+52937,2
+52938,2
+52939,2
+52940,1
+52941,1
+52942,1
+52943,1
+52944,1
+52945,1
+52946,1
+52954,4
+52955,4
+52956,4
+52957,4
+52958,4
+52959,4
+52960,4
+52961,3
+52962,3
+52963,3
+52964,3
+52965,3
+52966,3
+52967,3
+52968,5
+52969,5
+52970,5
+52971,5
+52972,5
+52973,5
+52974,5
+53024,4
+53025,4
+53026,4
+53027,4
+53028,4
+53029,4
+53030,4
+53031,3
+53032,3
+53033,3
+53034,3
+53035,3
+53036,3
+53037,3
+53038,5
+53039,5
+53040,5
+53041,5
+53042,5
+53043,5
+53044,5
+53052,4
+53053,4
+53054,4
+53055,4
+53056,4
+53057,4
+53058,4
+53059,3
+53060,3
+53061,3
+53062,3
+53063,3
+53064,3
+53065,3
+53066,5
+53067,5
+53068,5
+53069,5
+53070,5
+53071,5
+53072,5
+53080,2
+53081,2
+53082,2
+53083,2
+53084,2
+53085,2
+53086,2
+53087,1
+53088,1
+53089,1
+53090,1
+53091,1
+53092,1
+53093,1
+53122,4
+53123,4
+53124,4
+53125,4
+53126,4
+53127,4
+53128,4
+53129,3
+53130,3
+53131,3
+53132,3
+53133,3
+53134,3
+53135,3
+53136,5
+53137,5
+53138,5
+53139,5
+53140,5
+53141,5
+53142,5
+53157,4
+53158,4
+53159,4
+53160,4
+53161,4
+53162,4
+53163,4
+53164,3
+53165,3
+53166,3
+53167,3
+53168,3
+53169,3
+53170,3
+53171,5
+53172,5
+53173,5
+53174,5
+53175,5
+53176,5
+53177,5
+53178,4
+53179,4
+53180,4
+53181,4
+53182,4
+53183,4
+53184,4
+53185,3
+53186,3
+53187,3
+53188,3
+53189,3
+53190,3
+53191,3
+53192,5
+53193,5
+53194,5
+53195,5
+53196,5
+53197,5
+53198,5
+53199,4
+53200,4
+53201,4
+53202,4
+53203,4
+53204,4
+53205,4
+53206,3
+53207,3
+53208,3
+53209,3
+53210,3
+53211,3
+53212,3
+53213,5
+53214,5
+53215,5
+53216,5
+53217,5
+53218,5
+53219,5
+53220,4
+53221,4
+53222,4
+53223,4
+53224,4
+53225,4
+53226,4
+53227,3
+53228,3
+53229,3
+53230,3
+53231,3
+53232,3
+53233,3
+53234,5
+53235,5
+53236,5
+53237,5
+53238,5
+53239,5
+53240,5
+53241,4
+53242,4
+53243,4
+53244,4
+53245,4
+53246,4
+53247,4
+53248,3
+53249,3
+53250,3
+53251,3
+53252,3
+53253,3
+53254,3
+53255,5
+53256,5
+53257,5
+53258,5
+53259,5
+53260,5
+53261,5
+53262,4
+53263,4
+53264,4
+53265,4
+53266,4
+53267,4
+53268,4
+53269,3
+53270,3
+53271,3
+53272,3
+53273,3
+53274,3
+53275,3
+53276,5
+53277,5
+53278,5
+53279,5
+53280,5
+53281,5
+53282,5
+53283,4
+53284,4
+53285,4
+53286,4
+53287,4
+53288,4
+53289,4
+53290,3
+53291,3
+53292,3
+53293,3
+53294,3
+53295,3
+53296,3
+53297,5
+53298,5
+53299,5
+53300,5
+53301,5
+53302,5
+53303,5
+53304,4
+53305,4
+53306,4
+53307,4
+53308,4
+53309,4
+53310,4
+53311,3
+53312,3
+53313,3
+53314,3
+53315,3
+53316,3
+53317,3
+53318,5
+53319,5
+53320,5
+53321,5
+53322,5
+53323,5
+53324,5
+53325,4
+53326,4
+53327,4
+53328,4
+53329,4
+53330,4
+53331,4
+53332,3
+53333,3
+53334,3
+53335,3
+53336,3
+53337,3
+53338,3
+53339,5
+53340,5
+53341,5
+53342,5
+53343,5
+53344,5
+53345,5
+53346,4
+53347,4
+53348,4
+53349,4
+53350,4
+53351,4
+53352,4
+53353,3
+53354,3
+53355,3
+53356,3
+53357,3
+53358,3
+53359,3
+53360,5
+53361,5
+53362,5
+53363,5
+53364,5
+53365,5
+53366,5
+53374,4
+53375,4
+53376,4
+53377,4
+53378,4
+53379,4
+53380,4
+53381,3
+53382,3
+53383,3
+53384,3
+53385,3
+53386,3
+53387,3
+53388,5
+53389,5
+53390,5
+53391,5
+53392,5
+53393,5
+53394,5
+53395,4
+53396,4
+53397,4
+53398,4
+53399,4
+53400,4
+53401,4
+53402,3
+53403,3
+53404,3
+53405,3
+53406,3
+53407,3
+53408,3
+53409,5
+53410,5
+53411,5
+53412,5
+53413,5
+53414,5
+53415,5
+53416,4
+53417,4
+53418,4
+53419,4
+53420,4
+53421,4
+53422,4
+53423,3
+53424,3
+53425,3
+53426,3
+53427,3
+53428,3
+53429,3
+53430,5
+53431,5
+53432,5
+53433,5
+53434,5
+53435,5
+53436,5
+53437,4
+53438,4
+53439,4
+53440,4
+53441,4
+53442,4
+53443,4
+53444,3
+53445,3
+53446,3
+53447,3
+53448,3
+53449,3
+53450,3
+53451,5
+53452,5
+53453,5
+53454,5
+53455,5
+53456,5
+53457,5
+53458,4
+53459,4
+53460,4
+53461,4
+53462,4
+53463,4
+53464,4
+53465,3
+53466,3
+53467,3
+53468,3
+53469,3
+53470,3
+53471,3
+53472,5
+53473,5
+53474,5
+53475,5
+53476,5
+53477,5
+53478,5
+53479,4
+53480,4
+53481,4
+53482,4
+53483,4
+53484,4
+53485,4
+53486,3
+53487,3
+53488,3
+53489,3
+53490,3
+53491,3
+53492,3
+53493,5
+53494,5
+53495,5
+53496,5
+53497,5
+53498,5
+53499,5
+53500,4
+53501,4
+53502,4
+53503,4
+53504,4
+53505,4
+53506,4
+53507,3
+53508,3
+53509,3
+53510,3
+53511,3
+53512,3
+53513,3
+53514,5
+53515,5
+53516,5
+53517,5
+53518,5
+53519,5
+53520,5
+53521,4
+53522,4
+53523,4
+53524,4
+53525,4
+53526,4
+53527,4
+53528,3
+53529,3
+53530,3
+53531,3
+53532,3
+53533,3
+53534,3
+53535,5
+53536,5
+53537,5
+53538,5
+53539,5
+53540,5
+53541,5
+53542,4
+53543,4
+53544,4
+53545,4
+53546,4
+53547,4
+53548,4
+53549,3
+53550,3
+53551,3
+53552,3
+53553,3
+53554,3
+53555,3
+53556,5
+53557,5
+53558,5
+53559,5
+53560,5
+53561,5
+53562,5
+53563,4
+53564,4
+53565,4
+53566,4
+53567,4
+53568,4
+53569,4
+53570,3
+53571,3
+53572,3
+53573,3
+53574,3
+53575,3
+53576,3
+53577,5
+53578,5
+53579,5
+53580,5
+53581,5
+53582,5
+53583,5
+53584,4
+53585,4
+53586,4
+53587,4
+53588,4
+53589,4
+53590,4
+53591,3
+53592,3
+53593,3
+53594,3
+53595,3
+53596,3
+53597,3
+53598,5
+53599,5
+53600,5
+53601,5
+53602,5
+53603,5
+53604,5
+53605,4
+53606,4
+53607,4
+53608,4
+53609,4
+53610,4
+53611,4
+53612,3
+53613,3
+53614,3
+53615,3
+53616,3
+53617,3
+53618,3
+53619,5
+53620,5
+53621,5
+53622,5
+53623,5
+53624,5
+53625,5
+53626,4
+53627,4
+53628,4
+53629,4
+53630,4
+53631,4
+53632,4
+53633,3
+53634,3
+53635,3
+53636,3
+53637,3
+53638,3
+53639,3
+53640,5
+53641,5
+53642,5
+53643,5
+53644,5
+53645,5
+53646,5
+53647,4
+53648,4
+53649,4
+53650,4
+53651,4
+53652,4
+53653,4
+53654,3
+53655,3
+53656,3
+53657,3
+53658,3
+53659,3
+53660,3
+53661,5
+53662,5
+53663,5
+53664,5
+53665,5
+53666,5
+53667,5
+53668,4
+53669,4
+53670,4
+53671,4
+53672,4
+53673,4
+53674,4
+53675,3
+53676,3
+53677,3
+53678,3
+53679,3
+53680,3
+53681,3
+53682,5
+53683,5
+53684,5
+53685,5
+53686,5
+53687,5
+53688,5
+53689,4
+53690,4
+53691,4
+53692,4
+53693,4
+53694,4
+53695,4
+53696,3
+53697,3
+53698,3
+53699,3
+53700,3
+53701,3
+53702,3
+53703,5
+53704,5
+53705,5
+53706,5
+53707,5
+53708,5
+53709,5
+53710,4
+53711,4
+53712,4
+53713,4
+53714,4
+53715,4
+53716,4
+53717,3
+53718,3
+53719,3
+53720,3
+53721,3
+53722,3
+53723,3
+53724,5
+53725,5
+53726,5
+53727,5
+53728,5
+53729,5
+53730,5
+53731,4
+53732,4
+53733,4
+53734,4
+53735,4
+53736,4
+53737,4
+53738,3
+53739,3
+53740,3
+53741,3
+53742,3
+53743,3
+53744,3
+53745,5
+53746,5
+53747,5
+53748,5
+53749,5
+53750,5
+53751,5
+53759,4
+53760,4
+53761,4
+53762,4
+53763,4
+53764,4
+53765,4
+53766,3
+53767,3
+53768,3
+53769,3
+53770,3
+53771,3
+53772,3
+53773,5
+53774,5
+53775,5
+53776,5
+53777,5
+53778,5
+53779,5
+53759,2
+53760,2
+53761,2
+53762,2
+53763,2
+53764,2
+53765,2
+53766,2
+53767,2
+53768,2
+53769,2
+53770,2
+53771,2
+53772,2
+53773,2
+53774,2
+53775,2
+53776,2
+53777,2
+53778,2
+53779,2
+53780,1
+53781,1
+53782,1
+53783,1
+53784,1
+53785,1
+53786,1
+53787,4
+53788,4
+53789,4
+53790,4
+53791,4
+53792,4
+53793,4
+53794,3
+53795,3
+53796,3
+53797,3
+53798,3
+53799,3
+53800,3
+53801,5
+53802,5
+53803,5
+53804,5
+53805,5
+53806,5
+53807,5
+53808,4
+53809,4
+53810,4
+53811,4
+53812,4
+53813,4
+53814,4
+53815,3
+53816,3
+53817,3
+53818,3
+53819,3
+53820,3
+53821,3
+53822,5
+53823,5
+53824,5
+53825,5
+53826,5
+53827,5
+53828,5
+53829,4
+53830,4
+53831,4
+53832,4
+53833,4
+53834,4
+53835,4
+53836,3
+53837,3
+53838,3
+53839,3
+53840,3
+53841,3
+53842,3
+53843,5
+53844,5
+53845,5
+53846,5
+53847,5
+53848,5
+53849,5
+53829,2
+53830,2
+53831,2
+53832,2
+53833,2
+53834,2
+53835,2
+53836,2
+53837,2
+53838,2
+53839,2
+53840,2
+53841,2
+53842,2
+53843,2
+53844,2
+53845,2
+53846,2
+53847,2
+53848,2
+53849,2
+53850,1
+53851,1
+53852,1
+53853,1
+53854,1
+53855,1
+53856,1
+53857,4
+53858,4
+53859,4
+53860,4
+53861,4
+53862,4
+53863,4
+53864,3
+53865,3
+53866,3
+53867,3
+53868,3
+53869,3
+53870,3
+53871,5
+53872,5
+53873,5
+53874,5
+53875,5
+53876,5
+53877,5
+53878,4
+53879,4
+53880,4
+53881,4
+53882,4
+53883,4
+53884,4
+53885,3
+53886,3
+53887,3
+53888,3
+53889,3
+53890,3
+53891,3
+53892,5
+53893,5
+53894,5
+53895,5
+53896,5
+53897,5
+53898,5
+53899,4
+53900,4
+53901,4
+53902,4
+53903,4
+53904,4
+53905,4
+53906,3
+53907,3
+53908,3
+53909,3
+53910,3
+53911,3
+53912,3
+53913,5
+53914,5
+53915,5
+53916,5
+53917,5
+53918,5
+53919,5
+53934,4
+53935,4
+53936,4
+53937,4
+53938,4
+53939,4
+53940,4
+53941,3
+53942,3
+53943,3
+53944,3
+53945,3
+53946,3
+53947,3
+53948,5
+53949,5
+53950,5
+53951,5
+53952,5
+53953,5
+53954,5
+53955,4
+53956,4
+53957,4
+53958,4
+53959,4
+53960,4
+53961,4
+53962,3
+53963,3
+53964,3
+53965,3
+53966,3
+53967,3
+53968,3
+53969,5
+53970,5
+53971,5
+53972,5
+53973,5
+53974,5
+53975,5
+53976,4
+53977,4
+53978,4
+53979,4
+53980,4
+53981,4
+53982,4
+53983,3
+53984,3
+53985,3
+53986,3
+53987,3
+53988,3
+53989,3
+53990,5
+53991,5
+53992,5
+53993,5
+53994,5
+53995,5
+53996,5
+53997,4
+53998,4
+53999,4
+54000,4
+54001,4
+54002,4
+54003,4
+54004,3
+54005,3
+54006,3
+54007,3
+54008,3
+54009,3
+54010,3
+54011,5
+54012,5
+54013,5
+54014,5
+54015,5
+54016,5
+54017,5
+54018,4
+54019,4
+54020,4
+54021,4
+54022,4
+54023,4
+54024,4
+54025,3
+54026,3
+54027,3
+54028,3
+54029,3
+54030,3
+54031,3
+54032,5
+54033,5
+54034,5
+54035,5
+54036,5
+54037,5
+54038,5
+54102,4
+54103,4
+54104,4
+54105,4
+54106,4
+54107,4
+54108,4
+54109,3
+54110,3
+54111,3
+54112,3
+54113,3
+54114,3
+54115,3
+54116,5
+54117,5
+54118,5
+54119,5
+54120,5
+54121,5
+54122,5
+54123,4
+54124,4
+54125,4
+54126,4
+54127,4
+54128,4
+54129,4
+54130,3
+54131,3
+54132,3
+54133,3
+54134,3
+54135,3
+54136,3
+54137,5
+54138,5
+54139,5
+54140,5
+54141,5
+54142,5
+54143,5
+54144,4
+54145,4
+54146,4
+54147,4
+54148,4
+54149,4
+54150,4
+54151,3
+54152,3
+54153,3
+54154,3
+54155,3
+54156,3
+54157,3
+54158,5
+54159,5
+54160,5
+54161,5
+54162,5
+54163,5
+54164,5
+54165,4
+54166,4
+54167,4
+54168,4
+54169,4
+54170,4
+54171,4
+54172,3
+54173,3
+54174,3
+54175,3
+54176,3
+54177,3
+54178,3
+54179,5
+54180,5
+54181,5
+54182,5
+54183,5
+54184,5
+54185,5
+54186,4
+54187,4
+54188,4
+54189,4
+54190,4
+54191,4
+54192,4
+54193,3
+54194,3
+54195,3
+54196,3
+54197,3
+54198,3
+54199,3
+54200,5
+54201,5
+54202,5
+54203,5
+54204,5
+54205,5
+54206,5
+54207,4
+54208,4
+54209,4
+54210,4
+54211,4
+54212,4
+54213,4
+54214,3
+54215,3
+54216,3
+54217,3
+54218,3
+54219,3
+54220,3
+54221,5
+54222,5
+54223,5
+54224,5
+54225,5
+54226,5
+54227,5
+54228,4
+54229,4
+54230,4
+54231,4
+54232,4
+54233,4
+54234,4
+54235,3
+54236,3
+54237,3
+54238,3
+54239,3
+54240,3
+54241,3
+54242,5
+54243,5
+54244,5
+54245,5
+54246,5
+54247,5
+54248,5
+54249,4
+54250,4
+54251,4
+54252,4
+54253,4
+54254,4
+54255,4
+54256,3
+54257,3
+54258,3
+54259,3
+54260,3
+54261,3
+54262,3
+54263,5
+54264,5
+54265,5
+54266,5
+54267,5
+54268,5
+54269,5
+54270,4
+54271,4
+54272,4
+54273,4
+54274,4
+54275,4
+54276,4
+54277,3
+54278,3
+54279,3
+54280,3
+54281,3
+54282,3
+54283,3
+54284,5
+54285,5
+54286,5
+54287,5
+54288,5
+54289,5
+54290,5
+54291,4
+54292,4
+54293,4
+54294,4
+54295,4
+54296,4
+54297,4
+54298,3
+54299,3
+54300,3
+54301,3
+54302,3
+54303,3
+54304,3
+54305,5
+54306,5
+54307,5
+54308,5
+54309,5
+54310,5
+54311,5
+54312,4
+54313,4
+54314,4
+54315,4
+54316,4
+54317,4
+54318,4
+54319,3
+54320,3
+54321,3
+54322,3
+54323,3
+54324,3
+54325,3
+54326,5
+54327,5
+54328,5
+54329,5
+54330,5
+54331,5
+54332,5
+54493,2
+54494,2
+54495,2
+54496,1
+54497,1
+54498,1
+54517,2
+54518,2
+54519,2
+54520,1
+54583,4
+54584,4
+54585,4
+54586,4
+54587,3
+54588,3
+54589,3
+54590,3
+54591,5
+54592,5
+54593,5
+54594,5
+54607,4
+54608,4
+54609,4
+54610,4
+54611,3
+54612,3
+54613,3
+54614,3
+54615,5
+54616,5
+54617,5
+54618,5
+54647,4
+54648,4
+54649,4
+54650,4
+54651,3
+54652,3
+54653,3
+54654,3
+54655,5
+54656,5
+54657,5
+54658,5
+54695,4
+54696,4
+54697,4
+54698,4
+54699,3
+54700,3
+54701,3
+54702,3
+54703,5
+54704,5
+54705,5
+54706,5
+54747,2
+54748,2
+54749,2
+54750,2
+54751,1
+54752,1
+54753,1
+54754,4
+54755,4
+54756,4
+54757,4
+54758,3
+54759,3
+54760,3
+54761,3
+54762,5
+54763,5
+54764,5
+54765,5
+54770,4
+54771,4
+54772,4
+54773,4
+54774,3
+54775,3
+54776,3
+54777,3
+54778,5
+54779,5
+54780,5
+54781,5
+54794,2
+54795,2
+54796,2
+54797,2
+54798,1
+54799,1
+54800,1
+54821,4
+54822,4
+54823,4
+54824,4
+54825,3
+54826,3
+54827,3
+54828,3
+54829,5
+54830,5
+54831,5
+54832,5
+55195,2
+55196,2
+55197,2
+55198,1
+55199,1
+55200,1
+55321,4
+55322,4
+55323,4
+55324,4
+55325,4
+55326,4
+55327,4
+55328,3
+55329,3
+55330,3
+55331,3
+55332,3
+55333,3
+55334,3
+55335,5
+55336,5
+55337,5
+55338,5
+55339,5
+55340,5
+55341,5
+55321,2
+55322,2
+55323,2
+55324,2
+55325,2
+55326,2
+55327,2
+55328,2
+55329,2
+55330,2
+55331,2
+55332,2
+55333,2
+55334,2
+55335,2
+55336,2
+55337,2
+55338,2
+55339,2
+55340,2
+55341,2
+55342,1
+55343,1
+55344,1
+55345,1
+55346,1
+55347,1
+55348,1
+55349,4
+55350,4
+55351,4
+55352,4
+55353,4
+55354,4
+55355,4
+55356,3
+55357,3
+55358,3
+55359,3
+55360,3
+55361,3
+55362,3
+55363,5
+55364,5
+55365,5
+55366,5
+55367,5
+55368,5
+55369,5
+55370,4
+55371,4
+55372,4
+55373,4
+55374,4
+55375,4
+55376,4
+55377,3
+55378,3
+55379,3
+55380,3
+55381,3
+55382,3
+55383,3
+55384,5
+55385,5
+55386,5
+55387,5
+55388,5
+55389,5
+55390,5
+55391,4
+55392,4
+55393,4
+55394,4
+55395,4
+55396,4
+55397,4
+55398,3
+55399,3
+55400,3
+55401,3
+55402,3
+55403,3
+55404,3
+55405,5
+55406,5
+55407,5
+55408,5
+55409,5
+55410,5
+55411,5
+55412,4
+55413,4
+55414,4
+55415,4
+55416,4
+55417,4
+55418,4
+55419,3
+55420,3
+55421,3
+55422,3
+55423,3
+55424,3
+55425,3
+55426,5
+55427,5
+55428,5
+55429,5
+55430,5
+55431,5
+55432,5
+55433,4
+55434,4
+55435,4
+55436,4
+55437,4
+55438,4
+55439,4
+55440,3
+55441,3
+55442,3
+55443,3
+55444,3
+55445,3
+55446,3
+55447,5
+55448,5
+55449,5
+55450,5
+55451,5
+55452,5
+55453,5
+55454,4
+55455,4
+55456,4
+55457,4
+55458,4
+55459,4
+55460,4
+55461,3
+55462,3
+55463,3
+55464,3
+55465,3
+55466,3
+55467,3
+55468,5
+55469,5
+55470,5
+55471,5
+55472,5
+55473,5
+55474,5
+55482,4
+55483,4
+55484,4
+55485,4
+55486,4
+55487,4
+55488,4
+55489,3
+55490,3
+55491,3
+55492,3
+55493,3
+55494,3
+55495,3
+55496,5
+55497,5
+55498,5
+55499,5
+55500,5
+55501,5
+55502,5
+55503,4
+55504,4
+55505,4
+55506,4
+55507,4
+55508,4
+55509,4
+55510,3
+55511,3
+55512,3
+55513,3
+55514,3
+55515,3
+55516,3
+55517,5
+55518,5
+55519,5
+55520,5
+55521,5
+55522,5
+55523,5
+55524,4
+55525,4
+55526,4
+55527,4
+55528,4
+55529,4
+55530,4
+55531,3
+55532,3
+55533,3
+55534,3
+55535,3
+55536,3
+55537,3
+55538,5
+55539,5
+55540,5
+55541,5
+55542,5
+55543,5
+55544,5
+55545,4
+55546,4
+55547,4
+55548,4
+55549,4
+55550,4
+55551,4
+55552,3
+55553,3
+55554,3
+55555,3
+55556,3
+55557,3
+55558,3
+55559,5
+55560,5
+55561,5
+55562,5
+55563,5
+55564,5
+55565,5
+55566,4
+55567,4
+55568,4
+55569,4
+55570,4
+55571,4
+55572,4
+55573,3
+55574,3
+55575,3
+55576,3
+55577,3
+55578,3
+55579,3
+55580,5
+55581,5
+55582,5
+55583,5
+55584,5
+55585,5
+55586,5
+55587,4
+55588,4
+55589,4
+55590,4
+55591,4
+55592,4
+55593,4
+55594,3
+55595,3
+55596,3
+55597,3
+55598,3
+55599,3
+55600,3
+55601,5
+55602,5
+55603,5
+55604,5
+55605,5
+55606,5
+55607,5
+55608,4
+55609,4
+55610,4
+55611,4
+55612,4
+55613,4
+55614,4
+55615,3
+55616,3
+55617,3
+55618,3
+55619,3
+55620,3
+55621,3
+55622,5
+55623,5
+55624,5
+55625,5
+55626,5
+55627,5
+55628,5
+55629,4
+55630,4
+55631,4
+55632,4
+55633,4
+55634,4
+55635,4
+55636,3
+55637,3
+55638,3
+55639,3
+55640,3
+55641,3
+55642,3
+55643,5
+55644,5
+55645,5
+55646,5
+55647,5
+55648,5
+55649,5
+55650,4
+55651,4
+55652,4
+55653,4
+55654,4
+55655,4
+55656,4
+55657,3
+55658,3
+55659,3
+55660,3
+55661,3
+55662,3
+55663,3
+55664,5
+55665,5
+55666,5
+55667,5
+55668,5
+55669,5
+55670,5
+55671,4
+55672,4
+55673,4
+55674,4
+55675,4
+55676,4
+55677,4
+55678,3
+55679,3
+55680,3
+55681,3
+55682,3
+55683,3
+55684,3
+55685,5
+55686,5
+55687,5
+55688,5
+55689,5
+55690,5
+55691,5
+55692,4
+55693,4
+55694,4
+55695,4
+55696,4
+55697,4
+55698,4
+55699,3
+55700,3
+55701,3
+55702,3
+55703,3
+55704,3
+55705,3
+55706,5
+55707,5
+55708,5
+55709,5
+55710,5
+55711,5
+55712,5
+55713,4
+55714,4
+55715,4
+55716,4
+55717,4
+55718,4
+55719,4
+55720,3
+55721,3
+55722,3
+55723,3
+55724,3
+55725,3
+55726,3
+55727,5
+55728,5
+55729,5
+55730,5
+55731,5
+55732,5
+55733,5
+55748,4
+55749,4
+55750,4
+55751,4
+55752,4
+55753,4
+55754,4
+55755,3
+55756,3
+55757,3
+55758,3
+55759,3
+55760,3
+55761,3
+55762,5
+55763,5
+55764,5
+55765,5
+55766,5
+55767,5
+55768,5
+55769,4
+55770,4
+55771,4
+55772,4
+55773,4
+55774,4
+55775,4
+55776,3
+55777,3
+55778,3
+55779,3
+55780,3
+55781,3
+55782,3
+55783,5
+55784,5
+55785,5
+55786,5
+55787,5
+55788,5
+55789,5
+55790,4
+55791,4
+55792,4
+55793,4
+55794,4
+55795,4
+55796,4
+55797,3
+55798,3
+55799,3
+55800,3
+55801,3
+55802,3
+55803,3
+55804,5
+55805,5
+55806,5
+55807,5
+55808,5
+55809,5
+55810,5
+55811,4
+55812,4
+55813,4
+55814,4
+55815,4
+55816,4
+55817,4
+55818,3
+55819,3
+55820,3
+55821,3
+55822,3
+55823,3
+55824,3
+55825,5
+55826,5
+55827,5
+55828,5
+55829,5
+55830,5
+55831,5
+55832,4
+55833,4
+55834,4
+55835,4
+55836,4
+55837,4
+55838,4
+55839,3
+55840,3
+55841,3
+55842,3
+55843,3
+55844,3
+55845,3
+55846,5
+55847,5
+55848,5
+55849,5
+55850,5
+55851,5
+55852,5
+55853,4
+55854,4
+55855,4
+55856,4
+55857,4
+55858,4
+55859,4
+55860,3
+55861,3
+55862,3
+55863,3
+55864,3
+55865,3
+55866,3
+55867,5
+55868,5
+55869,5
+55870,5
+55871,5
+55872,5
+55873,5
+55874,4
+55875,4
+55876,4
+55877,4
+55878,4
+55879,4
+55880,4
+55881,3
+55882,3
+55883,3
+55884,3
+55885,3
+55886,3
+55887,3
+55888,5
+55889,5
+55890,5
+55891,5
+55892,5
+55893,5
+55894,5
+55895,4
+55896,4
+55897,4
+55898,4
+55899,4
+55900,4
+55901,4
+55902,3
+55903,3
+55904,3
+55905,3
+55906,3
+55907,3
+55908,3
+55909,5
+55910,5
+55911,5
+55912,5
+55913,5
+55914,5
+55915,5
+55916,4
+55917,4
+55918,4
+55919,4
+55920,4
+55921,4
+55922,4
+55923,3
+55924,3
+55925,3
+55926,3
+55927,3
+55928,3
+55929,3
+55930,5
+55931,5
+55932,5
+55933,5
+55934,5
+55935,5
+55936,5
+55937,4
+55938,4
+55939,4
+55940,4
+55941,4
+55942,4
+55943,4
+55944,3
+55945,3
+55946,3
+55947,3
+55948,3
+55949,3
+55950,3
+55951,5
+55952,5
+55953,5
+55954,5
+55955,5
+55956,5
+55957,5
+55958,4
+55959,4
+55960,4
+55961,4
+55962,4
+55963,4
+55964,4
+55965,3
+55966,3
+55967,3
+55968,3
+55969,3
+55970,3
+55971,3
+55972,5
+55973,5
+55974,5
+55975,5
+55976,5
+55977,5
+55978,5
+56000,4
+56001,4
+56002,4
+56003,4
+56004,4
+56005,4
+56006,4
+56007,3
+56008,3
+56009,3
+56010,3
+56011,3
+56012,3
+56013,3
+56014,5
+56015,5
+56016,5
+56017,5
+56018,5
+56019,5
+56020,5
+56021,4
+56022,4
+56023,4
+56024,4
+56025,4
+56026,4
+56027,4
+56028,3
+56029,3
+56030,3
+56031,3
+56032,3
+56033,3
+56034,3
+56035,5
+56036,5
+56037,5
+56038,5
+56039,5
+56040,5
+56041,5
+56042,4
+56043,4
+56044,4
+56045,4
+56046,4
+56047,4
+56048,4
+56049,3
+56050,3
+56051,3
+56052,3
+56053,3
+56054,3
+56055,3
+56056,5
+56057,5
+56058,5
+56059,5
+56060,5
+56061,5
+56062,5
+56063,4
+56064,4
+56065,4
+56066,4
+56067,4
+56068,4
+56069,4
+56070,3
+56071,3
+56072,3
+56073,3
+56074,3
+56075,3
+56076,3
+56077,5
+56078,5
+56079,5
+56080,5
+56081,5
+56082,5
+56083,5
+56084,4
+56085,4
+56086,4
+56087,4
+56088,4
+56089,4
+56090,4
+56091,3
+56092,3
+56093,3
+56094,3
+56095,3
+56096,3
+56097,3
+56098,5
+56099,5
+56100,5
+56101,5
+56102,5
+56103,5
+56104,5
+56105,4
+56106,4
+56107,4
+56108,4
+56109,4
+56110,4
+56111,4
+56112,3
+56113,3
+56114,3
+56115,3
+56116,3
+56117,3
+56118,3
+56119,5
+56120,5
+56121,5
+56122,5
+56123,5
+56124,5
+56125,5
+56126,4
+56127,4
+56128,4
+56129,4
+56130,4
+56131,4
+56132,4
+56133,3
+56134,3
+56135,3
+56136,3
+56137,3
+56138,3
+56139,3
+56140,5
+56141,5
+56142,5
+56143,5
+56144,5
+56145,5
+56146,5
+56147,4
+56148,4
+56149,4
+56150,4
+56151,4
+56152,4
+56153,4
+56154,3
+56155,3
+56156,3
+56157,3
+56158,3
+56159,3
+56160,3
+56161,5
+56162,5
+56163,5
+56164,5
+56165,5
+56166,5
+56167,5
+56168,4
+56169,4
+56170,4
+56171,4
+56172,4
+56173,4
+56174,4
+56175,3
+56176,3
+56177,3
+56178,3
+56179,3
+56180,3
+56181,3
+56182,5
+56183,5
+56184,5
+56185,5
+56186,5
+56187,5
+56188,5
+56189,4
+56190,4
+56191,4
+56192,4
+56193,4
+56194,4
+56195,4
+56196,3
+56197,3
+56198,3
+56199,3
+56200,3
+56201,3
+56202,3
+56203,5
+56204,5
+56205,5
+56206,5
+56207,5
+56208,5
+56209,5
+56210,4
+56211,4
+56212,4
+56213,4
+56214,4
+56215,4
+56216,4
+56217,3
+56218,3
+56219,3
+56220,3
+56221,3
+56222,3
+56223,3
+56224,5
+56225,5
+56226,5
+56227,5
+56228,5
+56229,5
+56230,5
+56231,4
+56232,4
+56233,4
+56234,4
+56235,4
+56236,4
+56237,4
+56238,3
+56239,3
+56240,3
+56241,3
+56242,3
+56243,3
+56244,3
+56245,5
+56246,5
+56247,5
+56248,5
+56249,5
+56250,5
+56251,5
+56252,4
+56253,4
+56254,4
+56255,4
+56256,4
+56257,4
+56258,4
+56259,3
+56260,3
+56261,3
+56262,3
+56263,3
+56264,3
+56265,3
+56266,5
+56267,5
+56268,5
+56269,5
+56270,5
+56271,5
+56272,5
+56273,4
+56274,4
+56275,4
+56276,4
+56277,4
+56278,4
+56279,4
+56280,3
+56281,3
+56282,3
+56283,3
+56284,3
+56285,3
+56286,3
+56287,5
+56288,5
+56289,5
+56290,5
+56291,5
+56292,5
+56293,5
+56294,4
+56295,4
+56296,4
+56297,4
+56298,4
+56299,4
+56300,4
+56301,3
+56302,3
+56303,3
+56304,3
+56305,3
+56306,3
+56307,3
+56308,5
+56309,5
+56310,5
+56311,5
+56312,5
+56313,5
+56314,5
+56315,4
+56316,4
+56317,4
+56318,4
+56319,4
+56320,4
+56321,4
+56322,3
+56323,3
+56324,3
+56325,3
+56326,3
+56327,3
+56328,3
+56329,5
+56330,5
+56331,5
+56332,5
+56333,5
+56334,5
+56335,5
+56336,4
+56337,4
+56338,4
+56339,4
+56340,4
+56341,4
+56342,4
+56343,3
+56344,3
+56345,3
+56346,3
+56347,3
+56348,3
+56349,3
+56350,5
+56351,5
+56352,5
+56353,5
+56354,5
+56355,5
+56356,5
+56357,4
+56358,4
+56359,4
+56360,4
+56361,4
+56362,4
+56363,4
+56364,3
+56365,3
+56366,3
+56367,3
+56368,3
+56369,3
+56370,3
+56371,5
+56372,5
+56373,5
+56374,5
+56375,5
+56376,5
+56377,5
+56378,4
+56379,4
+56380,4
+56381,4
+56382,4
+56383,4
+56384,4
+56385,3
+56386,3
+56387,3
+56388,3
+56389,3
+56390,3
+56391,3
+56392,5
+56393,5
+56394,5
+56395,5
+56396,5
+56397,5
+56398,5
+56378,2
+56379,2
+56380,2
+56381,2
+56382,2
+56383,2
+56384,2
+56385,2
+56386,2
+56387,2
+56388,2
+56389,2
+56390,2
+56391,2
+56392,2
+56393,2
+56394,2
+56395,2
+56396,2
+56397,2
+56398,2
+56399,4
+56400,4
+56401,4
+56402,4
+56403,4
+56404,4
+56405,4
+56406,3
+56407,3
+56408,3
+56409,3
+56410,3
+56411,3
+56412,3
+56413,5
+56414,5
+56415,5
+56416,5
+56417,5
+56418,5
+56419,5
+56399,1
+56400,1
+56401,1
+56402,1
+56403,1
+56404,1
+56405,1
+56406,1
+56407,1
+56408,1
+56409,1
+56410,1
+56411,1
+56412,1
+56413,1
+56414,1
+56415,1
+56416,1
+56417,1
+56418,1
+56419,1
+56420,4
+56421,4
+56422,4
+56423,4
+56424,4
+56425,4
+56426,4
+56427,3
+56428,3
+56429,3
+56430,3
+56431,3
+56432,3
+56433,3
+56434,5
+56435,5
+56436,5
+56437,5
+56438,5
+56439,5
+56440,5
+56441,4
+56442,4
+56443,4
+56444,4
+56445,4
+56446,4
+56447,4
+56448,3
+56449,3
+56450,3
+56451,3
+56452,3
+56453,3
+56454,3
+56455,5
+56456,5
+56457,5
+56458,5
+56459,5
+56460,5
+56461,5
+56462,4
+56463,4
+56464,4
+56465,4
+56466,4
+56467,4
+56468,4
+56469,3
+56470,3
+56471,3
+56472,3
+56473,3
+56474,3
+56475,3
+56476,5
+56477,5
+56478,5
+56479,5
+56480,5
+56481,5
+56482,5
+56483,4
+56484,4
+56485,4
+56486,4
+56487,4
+56488,4
+56489,4
+56490,3
+56491,3
+56492,3
+56493,3
+56494,3
+56495,3
+56496,3
+56497,5
+56498,5
+56499,5
+56500,5
+56501,5
+56502,5
+56503,5
+56504,4
+56505,4
+56506,4
+56507,4
+56508,4
+56509,4
+56510,4
+56511,3
+56512,3
+56513,3
+56514,3
+56515,3
+56516,3
+56517,3
+56518,5
+56519,5
+56520,5
+56521,5
+56522,5
+56523,5
+56525,4
+56526,4
+56527,4
+56528,4
+56529,4
+56530,4
+56531,4
+56532,3
+56533,3
+56534,3
+56535,3
+56536,3
+56537,3
+56538,3
+56539,5
+56540,5
+56541,5
+56542,5
+56543,5
+56544,5
+56545,5
+56546,4
+56547,4
+56548,4
+56549,4
+56550,4
+56551,4
+56552,4
+56553,3
+56554,3
+56555,3
+56556,3
+56557,3
+56558,3
+56559,3
+56560,5
+56561,5
+56562,5
+56563,5
+56564,5
+56565,5
+56566,5
+56567,4
+56568,4
+56569,4
+56570,4
+56571,4
+56572,4
+56573,4
+56574,3
+56575,3
+56576,3
+56577,3
+56578,3
+56579,3
+56580,3
+56581,5
+56582,5
+56583,5
+56584,5
+56585,5
+56586,5
+56587,5
+56588,4
+56589,4
+56590,4
+56591,4
+56592,4
+56593,4
+56594,4
+56595,3
+56596,3
+56597,3
+56598,3
+56599,3
+56600,3
+56601,3
+56602,5
+56603,5
+56604,5
+56605,5
+56606,5
+56607,5
+56608,5
+56609,4
+56610,4
+56611,4
+56612,4
+56613,4
+56614,4
+56615,4
+56616,3
+56617,3
+56618,3
+56619,3
+56620,3
+56621,3
+56622,3
+56623,5
+56624,5
+56625,5
+56626,5
+56627,5
+56628,5
+56629,5
+56630,4
+56631,4
+56632,4
+56633,4
+56634,4
+56635,4
+56636,4
+56637,3
+56638,3
+56639,3
+56640,3
+56641,3
+56642,3
+56643,3
+56644,5
+56645,5
+56646,5
+56647,5
+56648,5
+56649,5
+56650,5
+56651,4
+56652,4
+56653,4
+56654,4
+56655,4
+56656,4
+56657,4
+56658,3
+56659,3
+56660,3
+56661,3
+56662,3
+56663,3
+56664,3
+56665,5
+56666,5
+56667,5
+56668,5
+56669,5
+56670,5
+56671,5
+56672,4
+56673,4
+56674,4
+56675,4
+56676,4
+56677,4
+56678,4
+56679,3
+56680,3
+56681,3
+56682,3
+56683,3
+56684,3
+56685,3
+56686,5
+56687,5
+56688,5
+56689,5
+56690,5
+56691,5
+56692,5
+56693,4
+56694,4
+56695,4
+56696,4
+56697,4
+56698,4
+56699,4
+56700,3
+56701,3
+56702,3
+56703,3
+56704,3
+56705,3
+56706,3
+56707,5
+56708,5
+56709,5
+56710,5
+56711,5
+56712,5
+56713,5
+56714,4
+56715,4
+56716,4
+56717,4
+56718,4
+56719,4
+56720,4
+56721,3
+56722,3
+56723,3
+56724,3
+56725,3
+56726,3
+56727,3
+56728,5
+56729,5
+56730,5
+56731,5
+56732,5
+56733,5
+56734,5
+56735,4
+56736,4
+56737,4
+56738,4
+56739,4
+56740,4
+56741,4
+56742,3
+56743,3
+56744,3
+56745,3
+56746,3
+56747,3
+56748,3
+56749,5
+56750,5
+56751,5
+56752,5
+56753,5
+56754,5
+56755,5
+56756,4
+56757,4
+56758,4
+56759,4
+56760,4
+56761,4
+56762,4
+56763,3
+56764,3
+56765,3
+56766,3
+56767,3
+56768,3
+56769,3
+56770,5
+56771,5
+56772,5
+56773,5
+56774,5
+56775,5
+56776,5
+56819,4
+56820,4
+56821,4
+56822,4
+56823,4
+56824,4
+56825,4
+56826,3
+56827,3
+56828,3
+56829,3
+56830,3
+56831,3
+56832,3
+56833,5
+56834,5
+56835,5
+56836,5
+56837,5
+56838,5
+56839,5
+56840,4
+56841,4
+56842,4
+56843,4
+56844,4
+56845,4
+56846,4
+56847,3
+56848,3
+56849,3
+56850,3
+56851,3
+56852,3
+56853,3
+56854,5
+56855,5
+56856,5
+56857,5
+56858,5
+56859,5
+56860,5
+56861,4
+56862,4
+56863,4
+56864,4
+56865,4
+56866,4
+56867,4
+56868,3
+56869,3
+56870,3
+56871,3
+56872,3
+56873,3
+56874,3
+56875,5
+56876,5
+56877,5
+56878,5
+56879,5
+56880,5
+56881,5
+56882,4
+56883,4
+56884,4
+56885,4
+56886,4
+56887,4
+56888,4
+56889,3
+56890,3
+56891,3
+56892,3
+56893,3
+56894,3
+56895,3
+56896,5
+56897,5
+56898,5
+56899,5
+56900,5
+56901,5
+56902,5
+56903,4
+56904,4
+56905,4
+56906,4
+56907,4
+56908,4
+56909,4
+56910,3
+56911,3
+56912,3
+56913,3
+56914,3
+56915,3
+56916,3
+56917,5
+56918,5
+56919,5
+56920,5
+56921,5
+56922,5
+56923,5
+56924,4
+56925,4
+56926,4
+56927,4
+56928,4
+56929,4
+56930,4
+56931,3
+56932,3
+56933,3
+56934,3
+56935,3
+56936,3
+56937,3
+56938,5
+56939,5
+56940,5
+56941,5
+56942,5
+56943,5
+56944,5
+56945,4
+56946,4
+56947,4
+56948,4
+56949,4
+56950,4
+56951,4
+56952,3
+56953,3
+56954,3
+56955,3
+56956,3
+56957,3
+56958,3
+56959,5
+56960,5
+56961,5
+56962,5
+56963,5
+56964,5
+56965,5
+56966,4
+56967,4
+56968,4
+56969,4
+56970,4
+56971,4
+56972,4
+56973,3
+56974,3
+56975,3
+56976,3
+56977,3
+56978,3
+56979,3
+56980,5
+56981,5
+56982,5
+56983,5
+56984,5
+56985,5
+56986,5
+56987,4
+56988,4
+56989,4
+56990,4
+56991,4
+56992,4
+56993,4
+56994,3
+56995,3
+56996,3
+56997,3
+56998,3
+56999,3
+57000,3
+57001,5
+57002,5
+57003,5
+57004,5
+57005,5
+57006,5
+57007,5
+57008,4
+57009,4
+57010,4
+57011,4
+57012,4
+57013,4
+57014,4
+57015,3
+57016,3
+57017,3
+57018,3
+57019,3
+57020,3
+57021,3
+57022,5
+57023,5
+57024,5
+57025,5
+57026,5
+57027,5
+57028,5
+57029,4
+57030,4
+57031,4
+57032,4
+57033,4
+57034,4
+57035,4
+57036,3
+57037,3
+57038,3
+57039,3
+57040,3
+57041,3
+57042,3
+57043,5
+57044,5
+57045,5
+57046,5
+57047,5
+57048,5
+57049,5
+57050,4
+57051,4
+57052,4
+57053,4
+57054,4
+57055,4
+57056,4
+57057,3
+57058,3
+57059,3
+57060,3
+57061,3
+57062,3
+57063,3
+57064,5
+57065,5
+57066,5
+57067,5
+57068,5
+57069,5
+57070,5
+57071,4
+57072,4
+57073,4
+57074,4
+57075,4
+57076,4
+57077,4
+57078,3
+57079,3
+57080,3
+57081,3
+57082,3
+57083,3
+57084,3
+57085,5
+57086,5
+57087,5
+57088,5
+57089,5
+57090,5
+57091,5
+57092,4
+57093,4
+57094,4
+57095,4
+57096,4
+57097,4
+57098,4
+57099,3
+57100,3
+57101,3
+57102,3
+57103,3
+57104,3
+57105,3
+57106,5
+57107,5
+57108,5
+57109,5
+57110,5
+57111,5
+57112,5
+57245,2
+57246,2
+57247,2
+57248,1
+57249,1
+57250,1
+57334,4
+57335,4
+57336,4
+57337,4
+57338,3
+57339,3
+57340,3
+57341,3
+57342,5
+57343,5
+57344,5
+57345,5
+57358,4
+57359,4
+57360,4
+57361,4
+57362,3
+57363,3
+57364,3
+57365,3
+57366,5
+57367,5
+57368,5
+57369,5
+57398,4
+57399,4
+57400,4
+57401,4
+57402,3
+57403,3
+57404,3
+57405,3
+57406,5
+57407,5
+57408,5
+57409,5
+57446,4
+57447,4
+57448,4
+57449,4
+57450,3
+57451,3
+57452,3
+57453,3
+57454,5
+57455,5
+57456,5
+57457,5
+57498,2
+57499,2
+57500,2
+57501,2
+57502,1
+57503,1
+57504,1
+57505,4
+57506,4
+57507,4
+57508,4
+57509,3
+57510,3
+57511,3
+57512,3
+57513,5
+57514,5
+57515,5
+57516,5
+57521,4
+57522,4
+57523,4
+57524,4
+57525,3
+57526,3
+57527,3
+57528,3
+57529,5
+57530,5
+57531,5
+57532,5
+57569,4
+57570,4
+57571,4
+57572,4
+57573,3
+57574,3
+57575,3
+57576,3
+57577,5
+57578,5
+57579,5
+57580,5
+57625,4
+57626,4
+57627,4
+57628,4
+57629,3
+57630,3
+57631,3
+57632,3
+57633,5
+57634,5
+57635,5
+57636,5
+57649,4
+57650,4
+57651,4
+57652,4
+57653,3
+57654,3
+57655,3
+57656,3
+57657,5
+57658,5
+57659,5
+57660,5
+57689,4
+57690,4
+57691,4
+57692,4
+57693,3
+57694,3
+57695,3
+57696,3
+57697,5
+57698,5
+57699,5
+57700,5
+57737,4
+57738,4
+57739,4
+57740,4
+57741,3
+57742,3
+57743,3
+57744,3
+57745,5
+57746,5
+57747,5
+57748,5
+57789,2
+57790,2
+57791,2
+57792,2
+57793,1
+57794,1
+57795,1
+57796,1
+57797,4
+57798,4
+57799,4
+57800,4
+57801,3
+57802,3
+57803,3
+57804,3
+57805,5
+57806,5
+57807,5
+57808,5
+57813,4
+57814,4
+57815,4
+57816,4
+57817,3
+57818,3
+57819,3
+57820,3
+57821,5
+57822,5
+57823,5
+57824,5
+57861,4
+57862,4
+57863,4
+57864,4
+57865,3
+57866,3
+57867,3
+57868,3
+57869,5
+57870,5
+57871,5
+57872,5
diff --git a/pokedex/data/csv/encounter_method_prose.csv b/pokedex/data/csv/encounter_method_prose.csv
index ded0903..45a9949 100644
--- a/pokedex/data/csv/encounter_method_prose.csv
+++ b/pokedex/data/csv/encounter_method_prose.csv
@@ -33,3 +33,5 @@ encounter_method_id,local_language_id,name
 16,9,Walking in red flowers
 17,6,Auf unwegsamen Gelände laufen
 17,9,Walking on rough terrain
+18,9,Receive as a gift
+19,9,Receive egg as a gift
diff --git a/pokedex/data/csv/encounter_methods.csv b/pokedex/data/csv/encounter_methods.csv
index 18be59a..20debcd 100644
--- a/pokedex/data/csv/encounter_methods.csv
+++ b/pokedex/data/csv/encounter_methods.csv
@@ -16,3 +16,5 @@ id,identifier,order
 15,purple-flowers,7
 16,red-flowers,8
 17,rough-terrain,9
+18,gift,18
+19,gift-egg,19
diff --git a/pokedex/data/csv/encounter_slots.csv b/pokedex/data/csv/encounter_slots.csv
index dc8549f..377ecd5 100644
--- a/pokedex/data/csv/encounter_slots.csv
+++ b/pokedex/data/csv/encounter_slots.csv
@@ -488,3 +488,74 @@ id,version_group_id,encounter_method_id,slot,rarity
 487,15,4,0,60
 488,15,4,1,35
 489,15,4,2,5
+490,1,18,,100
+491,2,18,,100
+492,3,18,,100
+493,4,18,,100
+494,5,18,,100
+495,6,18,,100
+496,7,18,,100
+497,8,18,,100
+498,9,18,,100
+499,10,18,,100
+500,11,18,,100
+501,14,18,,100
+502,15,18,,100
+503,16,18,,100
+504,3,19,,100
+505,4,19,,100
+506,5,19,,100
+507,6,19,,100
+508,7,19,,100
+509,8,19,,100
+510,9,19,,100
+511,10,19,,100
+512,11,19,,100
+513,14,19,,100
+514,16,19,,100
+515,3,1,1,30
+516,3,1,2,30
+517,3,1,3,20
+518,3,1,4,10
+519,3,1,5,5
+520,3,1,6,4
+521,3,1,7,1
+522,3,2,1,70
+523,3,2,2,15
+524,3,2,3,15
+525,3,3,1,35
+526,3,3,2,35
+527,3,3,3,20
+528,3,3,4,10
+529,3,4,1,40
+530,3,4,2,30
+531,3,4,3,20
+532,3,4,4,10
+533,3,5,1,60
+534,3,5,2,30
+535,3,5,3,10
+536,3,6,1,90
+537,3,6,2,10
+538,4,1,1,30
+539,4,1,2,30
+540,4,1,3,20
+541,4,1,4,10
+542,4,1,5,5
+543,4,1,6,4
+544,4,1,7,1
+545,4,2,1,70
+546,4,2,2,15
+547,4,2,3,15
+548,4,3,1,35
+549,4,3,2,35
+550,4,3,3,20
+551,4,3,4,10
+552,4,4,1,40
+553,4,4,2,30
+554,4,4,3,20
+555,4,4,4,10
+556,4,5,1,60
+557,4,5,2,30
+558,4,5,3,10
+559,4,6,1,90
+560,4,6,2,10
diff --git a/pokedex/data/csv/encounters.csv b/pokedex/data/csv/encounters.csv
index f1537e4..9ac68ad 100644
--- a/pokedex/data/csv/encounters.csv
+++ b/pokedex/data/csv/encounters.csv
@@ -46577,3 +46577,7775 @@ id,version_id,location_area_id,encounter_slot_id,pokemon_id,min_level,max_level
 50287,11,343,228,19,26,26
 50288,11,343,229,37,32,32
 50289,11,343,230,19,26,26
+50290,1,285,490,1,5,5
+50291,2,285,490,1,5,5
+50292,1,285,490,4,5,5
+50293,2,285,490,4,5,5
+50294,1,285,490,7,5,5
+50295,2,285,490,7,5,5
+50296,3,285,491,25,5,5
+50297,3,281,491,1,10,10
+50298,3,314,491,4,10,10
+50299,3,282,491,7,10,10
+50300,1,761,490,129,5,5
+50301,2,761,490,129,5,5
+50302,3,761,491,129,5,5
+50303,1,762,490,106,30,30
+50304,2,762,490,106,30,30
+50305,3,762,491,106,30,30
+50306,1,762,490,107,30,30
+50307,2,762,490,107,30,30
+50308,3,762,491,107,30,30
+50309,1,763,490,133,25,25
+50310,2,763,490,133,25,25
+50311,3,763,491,133,25,25
+50312,1,764,490,131,15,15
+50313,2,764,490,131,15,15
+50314,3,764,491,131,15,15
+50315,4,184,492,152,5,5
+50316,5,184,492,152,5,5
+50317,6,184,493,152,5,5
+50318,4,184,492,155,5,5
+50319,5,184,492,155,5,5
+50320,6,184,493,155,5,5
+50321,4,184,492,158,5,5
+50322,5,184,492,158,5,5
+50323,6,184,493,158,5,5
+50324,4,765,492,21,10,10
+50325,5,765,492,21,10,10
+50326,6,765,493,21,10,10
+50327,4,766,492,133,20,20
+50328,5,766,492,133,20,20
+50329,6,766,493,133,20,20
+50330,4,767,492,213,15,15
+50331,5,767,492,213,15,15
+50332,6,767,493,213,15,15
+50333,6,250,493,147,15,15
+50334,4,240,492,236,10,10
+50335,5,240,492,236,10,10
+50336,6,240,493,236,10,10
+50337,7,393,494,252,5,5
+50338,8,393,494,252,5,5
+50339,9,393,495,252,5,5
+50340,7,393,494,255,5,5
+50341,8,393,494,255,5,5
+50342,9,393,495,255,5,5
+50343,7,393,494,258,5,5
+50344,8,393,494,258,5,5
+50345,9,393,495,258,5,5
+50346,7,768,494,351,25,25
+50347,8,768,494,351,25,25
+50348,9,768,495,351,25,25
+50349,7,769,494,374,5,5
+50350,8,769,494,374,5,5
+50351,9,769,495,374,5,5
+50352,9,770,495,152,5,5
+50353,9,770,495,155,5,5
+50354,9,770,495,158,5,5
+50355,10,285,496,1,5,5
+50356,11,285,496,1,5,5
+50357,10,285,496,4,5,5
+50358,11,285,496,4,5,5
+50359,10,285,496,7,5,5
+50360,11,285,496,7,5,5
+50361,10,761,496,129,5,5
+50362,11,761,496,129,5,5
+50363,10,762,496,106,25,25
+50364,11,762,496,106,25,25
+50365,10,762,496,107,25,25
+50366,11,762,496,107,25,25
+50367,10,763,496,133,25,25
+50368,11,763,496,133,25,25
+50369,10,764,496,131,25,25
+50370,11,764,496,131,25,25
+50371,12,135,497,387,5,5
+50372,13,135,497,387,5,5
+50373,12,135,497,390,5,5
+50374,13,135,497,390,5,5
+50375,12,135,497,393,5,5
+50376,13,135,497,393,5,5
+50377,14,141,498,387,5,5
+50378,14,141,498,390,5,5
+50379,14,141,498,393,5,5
+50380,12,771,497,133,5,5
+50381,13,771,497,133,5,5
+50382,14,771,498,133,20,20
+50383,14,772,498,137,25,25
+50384,15,184,499,152,5,5
+50385,16,184,499,152,5,5
+50386,15,184,499,155,5,5
+50387,16,184,499,155,5,5
+50388,15,184,499,158,5,5
+50389,16,184,499,158,5,5
+50390,15,765,499,21,20,20
+50391,16,765,499,21,20,20
+50392,15,766,499,133,5,5
+50393,16,766,499,133,5,5
+50394,15,773,499,213,15,15
+50395,16,773,499,213,15,15
+50396,15,250,499,147,15,15
+50397,16,250,499,147,15,15
+50398,15,240,499,236,10,10
+50399,16,240,499,236,10,10
+50400,15,285,499,1,5,5
+50401,16,285,499,1,5,5
+50402,15,285,499,4,5,5
+50403,16,285,499,4,5,5
+50404,15,285,499,7,5,5
+50405,16,285,499,7,5,5
+50406,15,764,499,252,5,5
+50407,16,764,499,252,5,5
+50408,15,764,499,255,5,5
+50409,16,764,499,255,5,5
+50410,15,764,499,258,5,5
+50411,16,764,499,258,5,5
+50412,17,774,500,495,5,5
+50413,18,774,500,495,5,5
+50414,17,774,500,498,5,5
+50415,18,774,500,498,5,5
+50416,17,774,500,501,5,5
+50417,18,774,500,501,5,5
+50418,17,579,500,511,10,10
+50419,18,579,500,511,10,10
+50420,17,579,500,513,10,10
+50421,18,579,500,513,10,10
+50422,17,579,500,515,10,10
+50423,18,579,500,515,10,10
+50424,17,775,500,570,10,10
+50425,18,775,500,570,10,10
+50426,17,622,500,129,5,5
+50427,18,622,500,129,5,5
+50428,21,657,501,495,5,5
+50429,22,657,501,495,5,5
+50430,21,657,501,498,5,5
+50431,22,657,501,498,5,5
+50432,21,657,501,501,5,5
+50433,22,657,501,501,5,5
+50434,21,577,501,570,25,25
+50435,22,577,501,570,25,25
+50436,21,776,501,585,30,30
+50437,22,776,501,585,30,30
+50438,21,656,501,133,10,10
+50439,22,656,501,133,10,10
+50440,21,622,501,129,5,5
+50441,22,622,501,129,5,5
+50442,22,777,501,147,1,1
+50443,21,777,501,443,1,1
+50444,23,778,502,650,5,5
+50445,24,778,502,650,5,5
+50446,23,778,502,653,5,5
+50447,24,778,502,653,5,5
+50448,23,778,502,656,5,5
+50449,24,778,502,656,5,5
+50450,23,779,502,1,10,10
+50451,24,779,502,1,10,10
+50452,23,779,502,4,10,10
+50453,24,779,502,4,10,10
+50454,23,779,502,7,10,10
+50455,24,779,502,7,10,10
+50456,23,736,502,696,20,20
+50457,24,736,502,696,20,20
+50458,23,736,502,698,20,20
+50459,24,736,502,698,20,20
+50460,23,780,502,448,32,32
+50461,24,780,502,448,32,32
+50462,23,723,502,131,30,30
+50463,24,723,502,131,30,30
+50464,25,393,503,252,5,5
+50465,26,393,503,252,5,5
+50466,25,393,503,255,5,5
+50467,26,393,503,255,5,5
+50468,25,393,503,258,5,5
+50469,26,393,503,258,5,5
+50470,25,781,503,25,20,20
+50471,26,781,503,25,20,20
+50472,25,782,503,25,20,20
+50473,26,782,503,25,20,20
+50474,25,783,503,25,20,20
+50475,26,783,503,25,20,20
+50476,25,784,503,25,20,20
+50477,26,784,503,25,20,20
+50478,25,785,503,381,30,30
+50479,26,785,503,380,30,30
+50480,25,768,503,351,30,30
+50481,26,768,503,351,30,30
+50482,25,393,503,152,5,5
+50483,26,393,503,152,5,5
+50484,25,393,503,155,5,5
+50485,26,393,503,155,5,5
+50486,25,393,503,158,5,5
+50487,26,393,503,158,5,5
+50488,25,393,503,495,5,5
+50489,26,393,503,495,5,5
+50490,25,393,503,498,5,5
+50491,26,393,503,498,5,5
+50492,25,393,503,501,5,5
+50493,26,393,503,501,5,5
+50494,25,769,503,374,1,1
+50495,26,769,503,374,1,1
+50496,25,393,503,387,5,5
+50497,26,393,503,387,5,5
+50498,25,393,503,390,5,5
+50499,26,393,503,390,5,5
+50500,25,393,503,393,5,5
+50501,26,393,503,393,5,5
+50502,25,786,503,323,40,40
+50503,26,786,503,323,40,40
+50504,25,786,503,319,40,40
+50505,26,786,503,319,40,40
+50506,4,189,504,175,5,5
+50507,5,189,504,175,5,5
+50508,6,189,505,175,5,5
+50509,6,205,505,172,5,5
+50510,6,205,505,173,5,5
+50511,6,205,505,174,5,5
+50512,6,205,505,236,5,5
+50513,6,205,505,238,5,5
+50514,6,205,505,239,5,5
+50515,6,205,505,240,5,5
+50516,7,787,506,360,5,5
+50517,8,787,506,360,5,5
+50518,9,787,507,360,5,5
+50519,10,518,508,175,5,5
+50520,11,518,508,175,5,5
+50521,12,788,509,175,1,1
+50522,13,788,509,175,1,1
+50523,14,788,510,175,1,1
+50524,12,789,509,440,1,1
+50525,13,789,509,440,1,1
+50526,12,124,509,447,1,1
+50527,13,124,509,447,1,1
+50528,14,124,510,447,1,1
+50529,15,790,511,175,1,1
+50530,16,790,511,175,1,1
+50531,15,791,511,179,1,1
+50532,16,791,511,179,1,1
+50533,15,791,511,194,1,1
+50534,16,791,511,194,1,1
+50535,15,791,511,218,1,1
+50536,16,791,511,218,1,1
+50537,17,653,512,636,1,1
+50538,18,653,512,636,1,1
+50539,21,792,513,440,1,1
+50540,22,792,513,440,1,1
+50541,25,787,514,360,1,1
+50542,26,787,514,360,1,1
+50543,25,787,514,175,1,1
+50544,26,787,514,175,1,1
+50545,4,253,515,74,3,3
+50546,4,253,516,41,2,2
+50547,4,253,517,74,2,2
+50548,4,253,518,74,4,4
+50549,4,253,519,41,3,3
+50550,4,253,520,41,4,4
+50551,4,253,521,206,4,4
+50552,4,253,515,74,3,3
+50553,4,253,516,206,3,3
+50554,4,253,517,41,2,2
+50555,4,253,518,74,2,2
+50556,4,253,519,206,2,2
+50557,4,253,520,206,4,4
+50558,4,253,521,206,4,4
+50559,4,254,515,74,23,23
+50560,4,254,516,41,23,23
+50561,4,254,517,75,25,25
+50562,4,254,518,202,20,20
+50563,4,254,519,202,25,25
+50564,4,254,520,42,23,23
+50565,4,254,521,42,23,23
+50566,4,204,515,10,5,5
+50567,4,204,516,10,6,6
+50568,4,204,517,11,5,5
+50569,4,204,518,11,6,6
+50570,4,204,519,41,5,5
+50571,4,204,520,46,6,6
+50572,4,204,521,46,6,6
+50573,4,204,515,10,5,5
+50574,4,204,516,11,6,6
+50575,4,204,517,10,5,5
+50576,4,204,518,46,5,5
+50577,4,204,519,41,5,5
+50578,4,204,520,46,6,6
+50579,4,204,521,46,6,6
+50580,4,204,515,43,5,5
+50581,4,204,516,43,6,6
+50582,4,204,517,41,6,6
+50583,4,204,518,46,5,5
+50584,4,204,519,41,5,5
+50585,4,204,520,46,6,6
+50586,4,204,521,46,6,6
+50587,4,317,515,50,15,15
+50588,4,317,516,50,17,17
+50589,4,317,517,50,19,19
+50590,4,317,518,50,13,13
+50591,4,317,519,51,19,19
+50592,4,317,520,51,24,24
+50593,4,317,521,51,29,29
+50594,4,198,515,74,6,6
+50595,4,198,516,27,6,6
+50596,4,198,517,41,5,5
+50597,4,198,518,19,4,4
+50598,4,198,519,41,7,7
+50599,4,198,520,95,6,6
+50600,4,198,521,95,6,6
+50601,4,199,515,74,8,8
+50602,4,199,516,27,8,8
+50603,4,199,517,41,7,7
+50604,4,199,518,95,8,8
+50605,4,199,519,41,9,9
+50606,4,199,520,19,6,6
+50607,4,199,521,19,6,6
+50608,4,200,515,41,22,22
+50609,4,200,516,20,22,22
+50610,4,200,517,42,22,22
+50611,4,200,518,74,21,21
+50612,4,200,519,19,20,20
+50613,4,200,520,95,23,23
+50614,4,200,521,95,23,23
+50615,4,316,515,41,22,22
+50616,4,316,516,20,22,22
+50617,4,316,517,42,22,22
+50618,4,316,518,79,21,21
+50619,4,316,519,19,20,20
+50620,4,316,520,79,23,23
+50621,4,316,521,79,23,23
+50622,4,292,515,104,10,10
+50623,4,292,516,74,10,10
+50624,4,292,517,66,12,12
+50625,4,292,518,41,8,8
+50626,4,292,519,67,14,14
+50627,4,292,520,104,13,13
+50628,4,292,521,104,13,13
+50629,4,293,515,104,12,12
+50630,4,293,516,74,12,12
+50631,4,293,517,95,16,16
+50632,4,293,518,41,10,10
+50633,4,293,519,105,14,14
+50634,4,293,520,115,14,14
+50635,4,293,521,115,14,14
+50636,4,269,515,114,41,41
+50637,4,269,516,77,42,42
+50638,4,269,517,217,42,42
+50639,4,269,518,78,44,44
+50640,4,269,519,84,41,41
+50641,4,269,520,85,43,43
+50642,4,269,521,85,43,43
+50643,4,269,515,114,41,41
+50644,4,269,516,77,42,42
+50645,4,269,517,217,42,42
+50646,4,269,518,78,44,44
+50647,4,269,519,84,41,41
+50648,4,269,520,85,43,43
+50649,4,269,521,85,43,43
+50650,4,269,515,114,41,41
+50651,4,269,516,77,42,42
+50652,4,269,517,217,42,42
+50653,4,269,518,78,44,44
+50654,4,269,519,215,38,38
+50655,4,269,520,215,42,42
+50656,4,269,521,215,42,42
+50657,4,270,515,95,42,42
+50658,4,270,516,217,44,44
+50659,4,270,517,75,43,43
+50660,4,270,518,75,43,43
+50661,4,270,519,42,45,45
+50662,4,270,520,246,20,20
+50663,4,270,521,246,15,15
+50664,4,263,515,195,45,45
+50665,4,263,516,55,48,48
+50666,4,263,517,217,47,47
+50667,4,263,518,195,45,45
+50668,4,263,519,42,48,48
+50669,4,263,520,246,20,20
+50670,4,263,521,246,15,15
+50671,4,263,515,195,45,45
+50672,4,263,516,55,48,48
+50673,4,263,517,217,47,47
+50674,4,263,518,195,45,45
+50675,4,263,519,42,48,48
+50676,4,263,520,246,20,20
+50677,4,263,521,246,15,15
+50678,4,263,515,195,45,45
+50679,4,263,516,55,48,48
+50680,4,263,517,217,47,47
+50681,4,263,518,200,45,45
+50682,4,263,519,42,48,48
+50683,4,263,520,246,20,20
+50684,4,263,521,246,15,15
+50685,4,273,515,42,51,51
+50686,4,273,516,95,48,48
+50687,4,273,517,42,48,48
+50688,4,273,518,217,50,50
+50689,4,273,519,55,51,51
+50690,4,273,520,246,20,20
+50691,4,273,521,246,15,15
+50692,4,237,515,41,13,13
+50693,4,237,516,41,15,15
+50694,4,237,517,66,14,14
+50695,4,237,518,19,14,14
+50696,4,237,519,74,14,14
+50697,4,237,520,19,16,16
+50698,4,237,521,183,15,15
+50699,4,237,515,183,13,13
+50700,4,237,516,41,15,15
+50701,4,237,517,66,14,14
+50702,4,237,518,183,15,15
+50703,4,237,519,74,14,14
+50704,4,237,520,19,16,16
+50705,4,237,521,19,16,16
+50706,4,238,515,74,13,13
+50707,4,238,516,66,13,13
+50708,4,238,517,74,15,15
+50709,4,238,518,19,14,14
+50710,4,238,519,66,15,15
+50711,4,238,520,41,14,14
+50712,4,238,521,41,14,14
+50713,4,240,515,41,15,15
+50714,4,240,516,41,17,17
+50715,4,240,517,66,16,16
+50716,4,240,518,19,16,16
+50717,4,240,519,74,16,16
+50718,4,240,520,20,16,16
+50719,4,240,521,20,16,16
+50720,4,239,515,75,31,31
+50721,4,239,516,67,32,32
+50722,4,239,517,74,31,31
+50723,4,239,518,20,30,30
+50724,4,239,519,66,28,28
+50725,4,239,520,42,30,30
+50726,4,239,521,42,30,30
+50727,4,290,515,41,6,6
+50728,4,290,516,74,8,8
+50729,4,290,517,27,8,8
+50730,4,290,518,46,12,12
+50731,4,290,519,28,10,10
+50732,4,290,520,35,8,8
+50733,4,290,521,35,8,8
+50734,4,207,515,10,10,10
+50735,4,207,516,11,10,10
+50736,4,207,517,191,12,12
+50737,4,207,518,16,12,12
+50738,4,207,519,191,13,13
+50739,4,207,520,16,14,14
+50740,4,207,521,16,14,14
+50741,4,207,515,10,10,10
+50742,4,207,516,11,10,10
+50743,4,207,517,10,12,12
+50744,4,207,518,16,12,12
+50745,4,207,519,16,10,10
+50746,4,207,520,16,14,14
+50747,4,207,521,16,14,14
+50748,4,207,515,163,10,10
+50749,4,207,516,163,10,10
+50750,4,207,517,163,12,12
+50751,4,207,518,163,12,12
+50752,4,207,519,163,10,10
+50753,4,207,520,163,14,14
+50754,4,207,521,163,14,14
+50755,4,202,515,41,5,5
+50756,4,202,516,41,6,6
+50757,4,202,517,41,7,7
+50758,4,202,518,79,6,6
+50759,4,202,519,41,8,8
+50760,4,202,520,79,8,8
+50761,4,202,521,79,8,8
+50762,4,203,515,41,21,21
+50763,4,203,516,41,23,23
+50764,4,203,517,41,19,19
+50765,4,203,518,79,21,21
+50766,4,203,519,42,23,23
+50767,4,203,520,79,23,23
+50768,4,203,521,79,23,23
+50769,4,295,515,16,2,2
+50770,4,295,516,19,2,2
+50771,4,295,517,161,3,3
+50772,4,295,518,16,3,3
+50773,4,295,519,162,6,6
+50774,4,295,520,16,4,4
+50775,4,295,521,16,4,4
+50776,4,295,515,16,2,2
+50777,4,295,516,19,2,2
+50778,4,295,517,161,3,3
+50779,4,295,518,16,3,3
+50780,4,295,519,162,6,6
+50781,4,295,520,16,4,4
+50782,4,295,521,16,4,4
+50783,4,295,515,163,2,2
+50784,4,295,516,19,2,2
+50785,4,295,517,19,3,3
+50786,4,295,518,163,3,3
+50787,4,295,519,19,6,6
+50788,4,295,520,163,4,4
+50789,4,295,521,163,4,4
+50790,4,296,515,10,3,3
+50791,4,296,516,16,3,3
+50792,4,296,517,11,5,5
+50793,4,296,518,16,7,7
+50794,4,296,519,17,7,7
+50795,4,296,520,25,4,4
+50796,4,296,521,25,4,4
+50797,4,296,515,10,3,3
+50798,4,296,516,16,3,3
+50799,4,296,517,11,5,5
+50800,4,296,518,12,7,7
+50801,4,296,519,17,7,7
+50802,4,296,520,25,4,4
+50803,4,296,521,25,4,4
+50804,4,296,515,163,3,3
+50805,4,296,516,167,3,3
+50806,4,296,517,163,5,5
+50807,4,296,518,164,7,7
+50808,4,296,519,168,7,7
+50809,4,296,520,25,4,4
+50810,4,296,521,25,4,4
+50811,4,297,515,21,5,5
+50812,4,297,516,19,5,5
+50813,4,297,517,21,8,8
+50814,4,297,518,39,6,6
+50815,4,297,519,19,10,10
+50816,4,297,520,21,8,8
+50817,4,297,521,21,8,8
+50818,4,297,515,21,5,5
+50819,4,297,516,19,5,5
+50820,4,297,517,21,8,8
+50821,4,297,518,39,6,6
+50822,4,297,519,19,10,10
+50823,4,297,520,21,8,8
+50824,4,297,521,21,8,8
+50825,4,297,515,19,5,5
+50826,4,297,516,41,5,5
+50827,4,297,517,19,8,8
+50828,4,297,518,39,6,6
+50829,4,297,519,19,10,10
+50830,4,297,520,19,8,8
+50831,4,297,521,19,8,8
+50832,4,298,515,21,5,5
+50833,4,298,516,19,5,5
+50834,4,298,517,21,8,8
+50835,4,298,518,39,6,6
+50836,4,298,519,19,10,10
+50837,4,298,520,21,8,8
+50838,4,298,521,21,8,8
+50839,4,298,515,21,5,5
+50840,4,298,516,19,5,5
+50841,4,298,517,21,8,8
+50842,4,298,518,39,6,6
+50843,4,298,519,19,10,10
+50844,4,298,520,21,8,8
+50845,4,298,521,21,8,8
+50846,4,298,515,19,5,5
+50847,4,298,516,41,5,5
+50848,4,298,517,19,8,8
+50849,4,298,518,39,6,6
+50850,4,298,519,19,10,10
+50851,4,298,520,19,8,8
+50852,4,298,521,19,8,8
+50853,4,299,515,16,13,13
+50854,4,299,516,69,13,13
+50855,4,299,517,16,14,14
+50856,4,299,518,16,15,15
+50857,4,299,519,63,12,12
+50858,4,299,520,63,14,14
+50859,4,299,521,63,14,14
+50860,4,299,515,16,13,13
+50861,4,299,516,69,13,13
+50862,4,299,517,16,14,14
+50863,4,299,518,16,15,15
+50864,4,299,519,63,12,12
+50865,4,299,520,63,14,14
+50866,4,299,521,63,14,14
+50867,4,299,515,43,13,13
+50868,4,299,516,43,14,14
+50869,4,299,517,69,13,13
+50870,4,299,518,44,15,15
+50871,4,299,519,63,12,12
+50872,4,299,520,63,14,14
+50873,4,299,521,63,14,14
+50874,4,300,515,16,13,13
+50875,4,300,516,69,13,13
+50876,4,300,517,16,14,14
+50877,4,300,518,81,15,15
+50878,4,300,519,63,12,12
+50879,4,300,520,63,14,14
+50880,4,300,521,63,14,14
+50881,4,300,515,16,13,13
+50882,4,300,516,69,13,13
+50883,4,300,517,16,14,14
+50884,4,300,518,81,15,15
+50885,4,300,519,63,12,12
+50886,4,300,520,63,14,14
+50887,4,300,521,63,14,14
+50888,4,300,515,43,13,13
+50889,4,300,516,43,14,14
+50890,4,300,517,69,13,13
+50891,4,300,518,81,15,15
+50892,4,300,519,63,12,12
+50893,4,300,520,63,14,14
+50894,4,300,521,63,14,14
+50895,4,301,515,19,17,17
+50896,4,301,516,21,17,17
+50897,4,301,517,58,18,18
+50898,4,301,518,20,19,19
+50899,4,301,519,19,19,19
+50900,4,301,520,58,15,15
+50901,4,301,521,58,15,15
+50902,4,301,515,19,17,17
+50903,4,301,516,21,17,17
+50904,4,301,517,58,18,18
+50905,4,301,518,20,19,19
+50906,4,301,519,19,19,19
+50907,4,301,520,19,15,15
+50908,4,301,521,19,15,15
+50909,4,301,515,19,17,17
+50910,4,301,516,198,17,17
+50911,4,301,517,58,18,18
+50912,4,301,518,20,19,19
+50913,4,301,519,198,19,19
+50914,4,301,520,228,15,15
+50915,4,301,521,228,15,15
+50916,4,302,515,17,17,17
+50917,4,302,516,17,19,19
+50918,4,302,517,63,15,15
+50919,4,302,518,58,18,18
+50920,4,302,519,19,17,17
+50921,4,302,520,64,15,15
+50922,4,302,521,64,15,15
+50923,4,302,515,17,17,17
+50924,4,302,516,17,19,19
+50925,4,302,517,63,15,15
+50926,4,302,518,58,18,18
+50927,4,302,519,19,17,17
+50928,4,302,520,64,15,15
+50929,4,302,521,64,15,15
+50930,4,302,515,164,17,17
+50931,4,302,516,93,20,20
+50932,4,302,517,63,15,15
+50933,4,302,518,164,19,19
+50934,4,302,519,58,18,18
+50935,4,302,520,64,15,15
+50936,4,302,521,64,15,15
+50937,4,303,515,56,13,13
+50938,4,303,516,19,15,15
+50939,4,303,517,21,13,13
+50940,4,303,518,20,15,15
+50941,4,303,519,22,15,15
+50942,4,303,520,57,15,15
+50943,4,303,521,57,15,15
+50944,4,303,515,56,13,13
+50945,4,303,516,19,15,15
+50946,4,303,517,21,13,13
+50947,4,303,518,20,15,15
+50948,4,303,519,22,15,15
+50949,4,303,520,57,15,15
+50950,4,303,521,57,15,15
+50951,4,303,515,56,13,13
+50952,4,303,516,19,15,15
+50953,4,303,517,20,15,15
+50954,4,303,518,19,13,13
+50955,4,303,519,20,15,15
+50956,4,303,520,57,15,15
+50957,4,303,521,57,15,15
+50958,4,304,515,21,16,16
+50959,4,304,516,100,17,17
+50960,4,304,517,20,17,17
+50961,4,304,518,22,18,18
+50962,4,304,519,125,15,15
+50963,4,304,520,125,17,17
+50964,4,304,521,125,17,17
+50965,4,304,515,21,16,16
+50966,4,304,516,100,17,17
+50967,4,304,517,20,16,16
+50968,4,304,518,22,18,18
+50969,4,304,519,195,16,16
+50970,4,304,520,125,15,15
+50971,4,304,521,125,15,15
+50972,4,304,515,195,16,16
+50973,4,304,516,100,17,17
+50974,4,304,517,20,16,16
+50975,4,304,518,195,17,17
+50976,4,304,519,20,18,18
+50977,4,304,520,125,15,15
+50978,4,304,521,125,15,15
+50979,4,305,515,96,14,14
+50980,4,305,516,19,15,15
+50981,4,305,517,81,15,15
+50982,4,305,518,96,16,16
+50983,4,305,519,97,16,16
+50984,4,305,520,97,16,16
+50985,4,305,521,97,16,16
+50986,4,306,515,30,23,23
+50987,4,306,516,33,23,23
+50988,4,306,517,17,25,25
+50989,4,306,518,187,22,22
+50990,4,306,519,187,24,24
+50991,4,306,520,187,24,24
+50992,4,306,521,113,25,25
+50993,4,306,515,30,23,23
+50994,4,306,516,33,23,23
+50995,4,306,517,17,25,25
+50996,4,306,518,187,22,22
+50997,4,306,519,187,24,24
+50998,4,306,520,195,22,22
+50999,4,306,521,113,25,25
+51000,4,306,515,30,23,23
+51001,4,306,516,33,23,23
+51002,4,306,517,164,25,25
+51003,4,306,518,195,22,22
+51004,4,306,519,195,24,24
+51005,4,306,520,195,24,24
+51006,4,306,521,113,25,25
+51007,4,307,515,30,23,23
+51008,4,307,516,33,23,23
+51009,4,307,517,17,25,25
+51010,4,307,518,187,24,24
+51011,4,307,519,188,26,26
+51012,4,307,520,188,26,26
+51013,4,307,521,113,25,25
+51014,4,307,515,30,23,23
+51015,4,307,516,33,23,23
+51016,4,307,517,17,25,25
+51017,4,307,518,187,24,24
+51018,4,307,519,188,26,26
+51019,4,307,520,195,22,22
+51020,4,307,521,113,25,25
+51021,4,307,515,30,23,23
+51022,4,307,516,33,23,23
+51023,4,307,517,164,25,25
+51024,4,307,518,195,22,22
+51025,4,307,519,195,24,24
+51026,4,307,520,195,24,24
+51027,4,307,521,113,25,25
+51028,4,308,515,30,23,23
+51029,4,308,516,33,23,23
+51030,4,308,517,17,25,25
+51031,4,308,518,187,22,22
+51032,4,308,519,187,24,24
+51033,4,308,520,187,24,24
+51034,4,308,521,113,25,25
+51035,4,308,515,30,23,23
+51036,4,308,516,33,23,23
+51037,4,308,517,17,25,25
+51038,4,308,518,187,22,22
+51039,4,308,519,187,24,24
+51040,4,308,520,195,22,22
+51041,4,308,521,113,25,25
+51042,4,308,515,30,23,23
+51043,4,308,516,33,23,23
+51044,4,308,517,164,25,25
+51045,4,308,518,195,22,22
+51046,4,308,519,195,24,24
+51047,4,308,520,195,24,24
+51048,4,308,521,113,25,25
+51049,4,309,515,88,26,26
+51050,4,309,516,22,27,27
+51051,4,309,517,88,28,28
+51052,4,309,518,22,29,29
+51053,4,309,519,218,27,27
+51054,4,309,520,89,30,30
+51055,4,309,521,89,30,30
+51056,4,309,515,88,26,26
+51057,4,309,516,22,27,27
+51058,4,309,517,88,28,28
+51059,4,309,518,22,29,29
+51060,4,309,519,218,27,27
+51061,4,309,520,89,30,30
+51062,4,309,521,89,30,30
+51063,4,309,515,88,26,26
+51064,4,309,516,88,27,27
+51065,4,309,517,88,28,28
+51066,4,309,518,198,28,28
+51067,4,309,519,218,27,27
+51068,4,309,520,89,30,30
+51069,4,309,521,89,30,30
+51070,4,310,515,22,28,28
+51071,4,310,516,218,27,27
+51072,4,310,517,88,29,29
+51073,4,310,518,22,30,30
+51074,4,310,519,218,29,29
+51075,4,310,520,89,32,32
+51076,4,310,521,89,32,32
+51077,4,310,515,22,28,28
+51078,4,310,516,88,27,27
+51079,4,310,517,88,29,29
+51080,4,310,518,22,30,30
+51081,4,310,519,218,29,29
+51082,4,310,520,89,32,32
+51083,4,310,521,89,32,32
+51084,4,310,515,88,28,28
+51085,4,310,516,88,27,27
+51086,4,310,517,88,29,29
+51087,4,310,518,89,30,30
+51088,4,310,519,218,29,29
+51089,4,310,520,89,32,32
+51090,4,310,521,89,32,32
+51091,4,311,515,88,26,26
+51092,4,311,516,22,27,27
+51093,4,311,517,88,28,28
+51094,4,311,518,22,29,29
+51095,4,311,519,218,27,27
+51096,4,311,520,89,30,30
+51097,4,311,521,89,30,30
+51098,4,311,515,88,26,26
+51099,4,311,516,22,27,27
+51100,4,311,517,88,28,28
+51101,4,311,518,22,29,29
+51102,4,311,519,218,27,27
+51103,4,311,520,89,30,30
+51104,4,311,521,89,30,30
+51105,4,311,515,88,26,26
+51106,4,311,516,88,27,27
+51107,4,311,517,88,28,28
+51108,4,311,518,198,28,28
+51109,4,311,519,218,27,27
+51110,4,311,520,89,30,30
+51111,4,311,521,89,30,30
+51112,4,312,515,114,30,30
+51113,4,312,516,114,25,25
+51114,4,312,517,114,35,35
+51115,4,312,518,114,20,20
+51116,4,312,519,122,28,28
+51117,4,312,520,122,30,30
+51118,4,312,521,122,30,30
+51119,4,312,515,114,30,30
+51120,4,312,516,114,25,25
+51121,4,312,517,114,35,35
+51122,4,312,518,114,20,20
+51123,4,312,519,114,30,30
+51124,4,312,520,122,28,28
+51125,4,312,521,122,28,28
+51126,4,312,515,114,30,30
+51127,4,312,516,114,25,25
+51128,4,312,517,114,35,35
+51129,4,312,518,114,20,20
+51130,4,312,519,114,30,30
+51131,4,312,520,122,28,28
+51132,4,312,521,122,28,28
+51133,4,313,515,19,3,3
+51134,4,313,516,21,3,3
+51135,4,313,517,21,5,5
+51136,4,313,518,84,4,4
+51137,4,313,519,77,6,6
+51138,4,313,520,22,7,7
+51139,4,313,521,22,7,7
+51140,4,313,515,19,3,3
+51141,4,313,516,21,3,3
+51142,4,313,517,21,5,5
+51143,4,313,518,84,4,4
+51144,4,313,519,77,6,6
+51145,4,313,520,22,7,7
+51146,4,313,521,22,7,7
+51147,4,313,515,19,3,3
+51148,4,313,516,19,3,3
+51149,4,313,517,19,5,5
+51150,4,313,518,19,4,4
+51151,4,313,519,77,6,6
+51152,4,313,520,19,7,7
+51153,4,313,521,19,7,7
+51154,4,314,515,69,8,8
+51155,4,314,516,191,10,10
+51156,4,314,517,63,9,9
+51157,4,314,518,70,12,12
+51158,4,314,519,69,10,10
+51159,4,314,520,70,14,14
+51160,4,314,521,70,14,14
+51161,4,314,515,69,8,8
+51162,4,314,516,69,10,10
+51163,4,314,517,63,9,9
+51164,4,314,518,70,12,12
+51165,4,314,519,48,8,8
+51166,4,314,520,70,14,14
+51167,4,314,521,70,14,14
+51168,4,314,515,48,8,8
+51169,4,314,516,43,10,10
+51170,4,314,517,63,9,9
+51171,4,314,518,70,13,13
+51172,4,314,519,69,10,10
+51173,4,314,520,49,10,10
+51174,4,314,521,49,10,10
+51175,4,315,515,16,8,8
+51176,4,315,516,69,10,10
+51177,4,315,517,16,10,10
+51178,4,315,518,63,9,9
+51179,4,315,519,17,12,12
+51180,4,315,520,70,14,14
+51181,4,315,521,70,14,14
+51182,4,315,515,16,8,8
+51183,4,315,516,69,10,10
+51184,4,315,517,48,8,8
+51185,4,315,518,63,9,9
+51186,4,315,519,17,10,10
+51187,4,315,520,70,14,14
+51188,4,315,521,70,14,14
+51189,4,315,515,48,8,8
+51190,4,315,516,43,10,10
+51191,4,315,517,49,10,10
+51192,4,315,518,63,9,9
+51193,4,315,519,70,14,14
+51194,4,315,520,69,10,10
+51195,4,315,521,69,10,10
+51196,4,287,515,84,28,28
+51197,4,287,516,28,28,28
+51198,4,287,517,77,32,32
+51199,4,287,518,84,30,30
+51200,4,287,519,20,30,30
+51201,4,287,520,85,30,30
+51202,4,287,521,85,30,30
+51203,4,287,515,84,28,28
+51204,4,287,516,28,28,28
+51205,4,287,517,77,32,32
+51206,4,287,518,84,30,30
+51207,4,287,519,85,30,30
+51208,4,287,520,20,30,30
+51209,4,287,521,195,30,30
+51210,4,287,515,20,28,28
+51211,4,287,516,28,28,28
+51212,4,287,517,77,32,32
+51213,4,287,518,20,30,30
+51214,4,287,519,195,30,30
+51215,4,287,520,195,32,32
+51216,4,287,521,195,32,32
+51217,4,288,515,84,28,28
+51218,4,288,516,20,28,28
+51219,4,288,517,84,30,30
+51220,4,288,518,20,30,30
+51221,4,288,519,77,32,32
+51222,4,288,520,28,30,30
+51223,4,288,521,28,30,30
+51224,4,288,515,84,28,28
+51225,4,288,516,20,28,28
+51226,4,288,517,84,30,30
+51227,4,288,518,195,28,28
+51228,4,288,519,77,32,32
+51229,4,288,520,28,30,30
+51230,4,288,521,28,30,30
+51231,4,288,515,195,28,28
+51232,4,288,516,20,28,28
+51233,4,288,517,195,30,30
+51234,4,288,518,20,30,30
+51235,4,288,519,77,32,32
+51236,4,288,520,28,30,30
+51237,4,288,521,28,30,30
+51238,4,289,515,114,39,39
+51239,4,289,516,77,40,40
+51240,4,289,517,217,40,40
+51241,4,289,518,78,42,42
+51242,4,289,519,84,41,41
+51243,4,289,520,85,43,43
+51244,4,289,521,85,43,43
+51245,4,289,515,114,39,39
+51246,4,289,516,77,40,40
+51247,4,289,517,217,40,40
+51248,4,289,518,78,42,42
+51249,4,289,519,84,41,41
+51250,4,289,520,85,43,43
+51251,4,289,521,85,43,43
+51252,4,289,515,114,39,39
+51253,4,289,516,77,40,40
+51254,4,289,517,217,40,40
+51255,4,289,518,215,40,40
+51256,4,289,519,78,42,42
+51257,4,289,520,78,42,42
+51258,4,289,521,78,42,42
+51259,4,185,515,16,2,2
+51260,4,185,516,161,3,3
+51261,4,185,517,16,3,3
+51262,4,185,518,161,2,2
+51263,4,185,519,19,4,4
+51264,4,185,520,16,4,4
+51265,4,185,521,16,4,4
+51266,4,185,515,16,2,2
+51267,4,185,516,161,3,3
+51268,4,185,517,16,3,3
+51269,4,185,518,161,2,2
+51270,4,185,519,19,4,4
+51271,4,185,520,16,4,4
+51272,4,185,521,16,4,4
+51273,4,185,515,163,2,2
+51274,4,185,516,163,3,3
+51275,4,185,517,163,3,3
+51276,4,185,518,19,2,2
+51277,4,185,519,19,4,4
+51278,4,185,520,163,4,4
+51279,4,185,521,163,4,4
+51280,4,187,515,16,2,2
+51281,4,187,516,10,3,3
+51282,4,187,517,16,4,4
+51283,4,187,518,11,4,4
+51284,4,187,519,10,4,4
+51285,4,187,520,11,5,5
+51286,4,187,521,11,5,5
+51287,4,187,515,16,2,2
+51288,4,187,516,10,3,3
+51289,4,187,517,10,4,4
+51290,4,187,518,11,4,4
+51291,4,187,519,16,4,4
+51292,4,187,520,16,4,4
+51293,4,187,521,16,4,4
+51294,4,187,515,167,3,3
+51295,4,187,516,19,3,3
+51296,4,187,517,163,4,4
+51297,4,187,518,19,4,4
+51298,4,187,519,163,4,4
+51299,4,187,520,163,4,4
+51300,4,187,521,163,4,4
+51301,4,188,515,16,3,3
+51302,4,188,516,10,4,4
+51303,4,188,517,69,3,3
+51304,4,188,518,11,5,5
+51305,4,188,519,10,5,5
+51306,4,188,520,11,6,6
+51307,4,188,521,11,6,6
+51308,4,188,515,16,3,3
+51309,4,188,516,10,4,4
+51310,4,188,517,69,3,3
+51311,4,188,518,11,5,5
+51312,4,188,519,10,5,5
+51313,4,188,520,11,5,5
+51314,4,188,521,11,5,5
+51315,4,188,515,167,4,4
+51316,4,188,516,19,4,4
+51317,4,188,517,69,3,3
+51318,4,188,518,19,5,5
+51319,4,188,519,163,5,5
+51320,4,188,520,163,5,5
+51321,4,188,521,163,5,5
+51322,4,192,515,69,6,6
+51323,4,192,516,19,4,4
+51324,4,192,517,179,6,6
+51325,4,192,518,187,6,6
+51326,4,192,519,19,6,6
+51327,4,192,520,19,8,8
+51328,4,192,521,19,8,8
+51329,4,192,515,69,6,6
+51330,4,192,516,19,4,4
+51331,4,192,517,179,6,6
+51332,4,192,518,187,6,6
+51333,4,192,519,19,6,6
+51334,4,192,520,194,4,4
+51335,4,192,521,41,4,4
+51336,4,192,515,194,6,6
+51337,4,192,516,19,4,4
+51338,4,192,517,69,6,6
+51339,4,192,518,179,6,6
+51340,4,192,519,194,8,8
+51341,4,192,520,41,8,8
+51342,4,192,521,41,8,8
+51343,4,201,515,187,6,6
+51344,4,201,516,19,7,7
+51345,4,201,517,21,6,6
+51346,4,201,518,19,6,6
+51347,4,201,519,187,8,8
+51348,4,201,520,19,8,8
+51349,4,201,521,19,8,8
+51350,4,201,515,187,6,6
+51351,4,201,516,19,7,7
+51352,4,201,517,21,6,6
+51353,4,201,518,19,6,6
+51354,4,201,519,187,8,8
+51355,4,201,520,41,4,4
+51356,4,201,521,41,4,4
+51357,4,201,515,41,6,6
+51358,4,201,516,19,7,7
+51359,4,201,517,19,6,6
+51360,4,201,518,19,6,6
+51361,4,201,519,41,8,8
+51362,4,201,520,41,8,8
+51363,4,201,521,41,8,8
+51364,4,205,515,96,10,10
+51365,4,205,516,19,11,11
+51366,4,205,517,96,12,12
+51367,4,205,518,63,10,10
+51368,4,205,519,19,13,13
+51369,4,205,520,132,10,10
+51370,4,205,521,132,10,10
+51371,4,206,515,32,12,12
+51372,4,206,516,29,12,12
+51373,4,206,517,96,14,14
+51374,4,206,518,63,10,10
+51375,4,206,519,16,14,14
+51376,4,206,520,132,10,10
+51377,4,206,521,193,12,12
+51378,4,206,515,32,12,12
+51379,4,206,516,29,12,12
+51380,4,206,517,96,14,14
+51381,4,206,518,63,10,10
+51382,4,206,519,16,14,14
+51383,4,206,520,132,10,10
+51384,4,206,521,193,12,12
+51385,4,206,515,32,12,12
+51386,4,206,516,29,12,12
+51387,4,206,517,96,14,14
+51388,4,206,518,63,10,10
+51389,4,206,519,163,14,14
+51390,4,206,520,132,10,10
+51391,4,206,521,193,12,12
+51392,4,206,515,32,12,12
+51393,4,206,516,29,12,12
+51394,4,206,517,193,12,12
+51395,4,206,518,193,14,14
+51396,4,206,519,16,14,14
+51397,4,206,520,132,10,10
+51398,4,206,521,132,10,10
+51399,4,209,515,32,12,12
+51400,4,209,516,29,12,12
+51401,4,209,517,16,14,14
+51402,4,209,518,58,13,13
+51403,4,209,519,234,13,13
+51404,4,209,520,58,15,15
+51405,4,209,521,58,15,15
+51406,4,209,515,32,12,12
+51407,4,209,516,29,12,12
+51408,4,209,517,16,13,13
+51409,4,209,518,58,13,13
+51410,4,209,519,234,13,13
+51411,4,209,520,16,15,15
+51412,4,209,521,16,15,15
+51413,4,209,515,32,12,12
+51414,4,209,516,29,12,12
+51415,4,209,517,163,13,13
+51416,4,209,518,58,13,13
+51417,4,209,519,234,13,13
+51418,4,209,520,163,15,15
+51419,4,209,521,163,15,15
+51420,4,210,515,16,13,13
+51421,4,210,516,234,15,15
+51422,4,210,517,16,15,15
+51423,4,210,518,58,14,14
+51424,4,210,519,17,15,15
+51425,4,210,520,58,16,16
+51426,4,210,521,58,16,16
+51427,4,210,515,16,13,13
+51428,4,210,516,234,15,15
+51429,4,210,517,16,15,15
+51430,4,210,518,58,14,14
+51431,4,210,519,16,15,15
+51432,4,210,520,16,15,15
+51433,4,210,521,16,15,15
+51434,4,210,515,167,13,13
+51435,4,210,516,234,15,15
+51436,4,210,517,163,15,15
+51437,4,210,518,58,14,14
+51438,4,210,519,167,15,15
+51439,4,210,520,167,15,15
+51440,4,210,521,167,15,15
+51441,4,222,515,19,16,16
+51442,4,222,516,20,16,16
+51443,4,222,517,81,16,16
+51444,4,222,518,83,16,16
+51445,4,222,519,241,13,13
+51446,4,222,520,128,13,13
+51447,4,222,521,209,13,13
+51448,4,222,515,19,16,16
+51449,4,222,516,20,16,16
+51450,4,222,517,81,16,16
+51451,4,222,518,83,16,16
+51452,4,222,519,241,13,13
+51453,4,222,520,128,13,13
+51454,4,222,521,209,13,13
+51455,4,222,515,19,16,16
+51456,4,222,516,20,16,16
+51457,4,222,517,81,16,16
+51458,4,222,518,19,16,16
+51459,4,222,519,241,13,13
+51460,4,222,520,128,13,13
+51461,4,222,521,209,13,13
+51462,4,222,515,209,16,16
+51463,4,222,516,20,16,16
+51464,4,222,517,81,16,16
+51465,4,222,518,83,16,16
+51466,4,222,519,241,13,13
+51467,4,222,520,128,13,13
+51468,4,222,521,128,13,13
+51469,4,223,515,19,16,16
+51470,4,223,516,20,17,17
+51471,4,223,517,81,16,16
+51472,4,223,518,83,16,16
+51473,4,223,519,241,15,15
+51474,4,223,520,128,15,15
+51475,4,223,521,128,15,15
+51476,4,223,515,19,16,16
+51477,4,223,516,20,17,17
+51478,4,223,517,81,16,16
+51479,4,223,518,83,16,16
+51480,4,223,519,241,15,15
+51481,4,223,520,128,15,15
+51482,4,223,521,128,15,15
+51483,4,223,515,19,16,16
+51484,4,223,516,20,17,17
+51485,4,223,517,81,16,16
+51486,4,223,518,19,16,16
+51487,4,223,519,241,15,15
+51488,4,223,520,128,15,15
+51489,4,223,521,128,15,15
+51490,4,236,515,56,15,15
+51491,4,236,516,179,13,13
+51492,4,236,517,21,14,14
+51493,4,236,518,21,16,16
+51494,4,236,519,180,15,15
+51495,4,236,520,180,17,17
+51496,4,236,521,180,17,17
+51497,4,236,515,56,15,15
+51498,4,236,516,179,13,13
+51499,4,236,517,21,14,14
+51500,4,236,518,21,16,16
+51501,4,236,519,180,15,15
+51502,4,236,520,180,17,17
+51503,4,236,521,180,17,17
+51504,4,236,515,56,15,15
+51505,4,236,516,179,13,13
+51506,4,236,517,41,14,14
+51507,4,236,518,41,16,16
+51508,4,236,519,180,15,15
+51509,4,236,520,180,17,17
+51510,4,236,521,180,17,17
+51511,4,241,515,180,15,15
+51512,4,241,516,203,15,15
+51513,4,241,517,17,17,17
+51514,4,241,518,179,15,15
+51515,4,241,519,180,17,17
+51516,4,241,520,180,17,17
+51517,4,241,521,180,17,17
+51518,4,241,515,180,15,15
+51519,4,241,516,203,15,15
+51520,4,241,517,17,17,17
+51521,4,241,518,179,15,15
+51522,4,241,519,48,16,16
+51523,4,241,520,17,17,17
+51524,4,241,521,17,17,17
+51525,4,241,515,180,15,15
+51526,4,241,516,203,15,15
+51527,4,241,517,164,17,17
+51528,4,241,518,48,16,16
+51529,4,241,519,179,15,15
+51530,4,241,520,48,16,16
+51531,4,241,521,48,16,16
+51532,4,243,515,114,23,23
+51533,4,243,516,70,22,22
+51534,4,243,517,69,22,22
+51535,4,243,518,108,24,24
+51536,4,243,519,70,24,24
+51537,4,243,520,108,26,26
+51538,4,243,521,108,26,26
+51539,4,251,515,74,23,23
+51540,4,251,516,75,23,23
+51541,4,251,517,207,24,24
+51542,4,251,518,216,20,20
+51543,4,251,519,75,25,25
+51544,4,251,520,75,27,27
+51545,4,251,521,75,27,27
+51546,4,252,515,74,3,3
+51547,4,252,516,21,2,2
+51548,4,252,517,19,2,2
+51549,4,252,518,74,2,2
+51550,4,252,519,21,3,3
+51551,4,252,520,39,3,3
+51552,4,252,521,39,5,5
+51553,4,252,515,74,3,3
+51554,4,252,516,21,2,2
+51555,4,252,517,19,2,2
+51556,4,252,518,74,2,2
+51557,4,252,519,21,3,3
+51558,4,252,520,39,3,3
+51559,4,252,521,39,5,5
+51560,4,252,515,74,3,3
+51561,4,252,516,19,3,3
+51562,4,252,517,19,2,2
+51563,4,252,518,74,2,2
+51564,4,252,519,74,4,4
+51565,4,252,520,39,3,3
+51566,4,252,521,39,5,5
+51567,4,244,515,220,21,21
+51568,4,244,516,42,22,22
+51569,4,244,517,41,22,22
+51570,4,244,518,220,23,23
+51571,4,244,519,124,22,22
+51572,4,244,520,124,20,20
+51573,4,244,521,124,20,20
+51574,4,244,515,220,21,21
+51575,4,244,516,42,22,22
+51576,4,244,517,41,22,22
+51577,4,244,518,220,23,23
+51578,4,244,519,41,22,22
+51579,4,244,520,124,22,22
+51580,4,244,521,124,22,22
+51581,4,244,515,220,21,21
+51582,4,244,516,42,22,22
+51583,4,244,517,41,22,22
+51584,4,244,518,220,23,23
+51585,4,244,519,41,22,22
+51586,4,244,520,124,22,22
+51587,4,244,521,124,22,22
+51588,4,245,515,220,21,21
+51589,4,245,516,42,22,22
+51590,4,245,517,41,22,22
+51591,4,245,518,220,23,23
+51592,4,245,519,124,22,22
+51593,4,245,520,124,20,20
+51594,4,245,521,124,20,20
+51595,4,245,515,220,21,21
+51596,4,245,516,42,22,22
+51597,4,245,517,41,22,22
+51598,4,245,518,220,23,23
+51599,4,245,519,41,22,22
+51600,4,245,520,124,22,22
+51601,4,245,521,124,22,22
+51602,4,245,515,220,21,21
+51603,4,245,516,42,22,22
+51604,4,245,517,41,22,22
+51605,4,245,518,220,23,23
+51606,4,245,519,41,22,22
+51607,4,245,520,124,22,22
+51608,4,245,521,124,22,22
+51609,4,246,515,220,22,22
+51610,4,246,516,42,23,23
+51611,4,246,517,41,23,23
+51612,4,246,518,220,24,24
+51613,4,246,519,124,23,23
+51614,4,246,520,124,21,21
+51615,4,246,521,124,21,21
+51616,4,246,515,220,22,22
+51617,4,246,516,42,23,23
+51618,4,246,517,41,23,23
+51619,4,246,518,220,24,24
+51620,4,246,519,41,23,23
+51621,4,246,520,124,23,23
+51622,4,246,521,124,23,23
+51623,4,246,515,220,22,22
+51624,4,246,516,42,23,23
+51625,4,246,517,41,23,23
+51626,4,246,518,220,24,24
+51627,4,246,519,41,23,23
+51628,4,246,520,124,23,23
+51629,4,246,521,124,23,23
+51630,4,247,515,220,23,23
+51631,4,247,516,42,24,24
+51632,4,247,517,41,24,24
+51633,4,247,518,220,25,25
+51634,4,247,519,124,24,24
+51635,4,247,520,124,22,22
+51636,4,247,521,124,22,22
+51637,4,247,515,220,23,23
+51638,4,247,516,42,24,24
+51639,4,247,517,41,24,24
+51640,4,247,518,220,25,25
+51641,4,247,519,41,24,24
+51642,4,247,520,124,24,24
+51643,4,247,521,124,24,24
+51644,4,247,515,220,23,23
+51645,4,247,516,42,24,24
+51646,4,247,517,41,24,24
+51647,4,247,518,220,25,25
+51648,4,247,519,41,24,24
+51649,4,247,520,124,24,24
+51650,4,247,521,124,24,24
+51651,4,294,515,75,32,32
+51652,4,294,516,42,32,32
+51653,4,294,517,217,33,33
+51654,4,294,518,95,34,34
+51655,4,294,519,95,36,36
+51656,4,294,520,111,35,35
+51657,4,294,521,111,35,35
+51658,4,318,515,75,32,32
+51659,4,318,516,42,32,32
+51660,4,318,517,217,33,33
+51661,4,318,518,95,34,34
+51662,4,318,519,95,36,36
+51663,4,318,520,111,35,35
+51664,4,318,521,111,35,35
+51665,4,319,515,75,32,32
+51666,4,319,516,42,32,32
+51667,4,319,517,217,33,33
+51668,4,319,518,95,34,34
+51669,4,319,519,95,36,36
+51670,4,319,520,111,35,35
+51671,4,319,521,111,35,35
+51672,4,193,515,177,20,20
+51673,4,193,516,177,22,22
+51674,4,193,517,177,18,18
+51675,4,193,518,177,24,24
+51676,4,193,519,235,20,20
+51677,4,193,520,235,22,22
+51678,4,193,521,235,22,22
+51679,4,194,515,201,5,5
+51680,4,194,516,201,5,5
+51681,4,194,517,201,5,5
+51682,4,194,518,201,5,5
+51683,4,194,519,201,5,5
+51684,4,194,520,201,5,5
+51685,4,194,521,201,5,5
+51686,4,195,515,201,5,5
+51687,4,195,516,201,5,5
+51688,4,195,517,201,5,5
+51689,4,195,518,201,5,5
+51690,4,195,519,201,5,5
+51691,4,195,520,201,5,5
+51692,4,195,521,201,5,5
+51693,4,196,515,201,5,5
+51694,4,196,516,201,5,5
+51695,4,196,517,201,5,5
+51696,4,196,518,201,5,5
+51697,4,196,519,201,5,5
+51698,4,196,520,201,5,5
+51699,4,196,521,201,5,5
+51700,4,197,515,201,5,5
+51701,4,197,516,201,5,5
+51702,4,197,517,201,5,5
+51703,4,197,518,201,5,5
+51704,4,197,519,201,5,5
+51705,4,197,520,201,5,5
+51706,4,197,521,201,5,5
+51707,4,212,515,19,13,13
+51708,4,212,516,109,14,14
+51709,4,212,517,19,15,15
+51710,4,212,518,41,14,14
+51711,4,212,519,109,16,16
+51712,4,212,520,20,15,15
+51713,4,212,521,20,15,15
+51714,4,213,515,19,14,14
+51715,4,213,516,109,14,14
+51716,4,213,517,109,16,16
+51717,4,213,518,126,16,16
+51718,4,213,519,41,15,15
+51719,4,213,520,126,14,14
+51720,4,213,521,126,14,14
+51721,4,213,515,19,14,14
+51722,4,213,516,109,14,14
+51723,4,213,517,109,16,16
+51724,4,213,518,19,16,16
+51725,4,213,519,41,15,15
+51726,4,213,520,126,14,14
+51727,4,213,521,126,14,14
+51728,4,213,515,19,14,14
+51729,4,213,516,109,14,14
+51730,4,213,517,109,16,16
+51731,4,213,518,19,16,16
+51732,4,213,519,41,15,15
+51733,4,213,520,126,14,14
+51734,4,213,521,126,14,14
+51735,4,190,515,19,3,3
+51736,4,190,516,19,4,4
+51737,4,190,517,19,5,5
+51738,4,190,518,19,3,3
+51739,4,190,519,19,6,6
+51740,4,190,520,19,5,5
+51741,4,190,521,19,5,5
+51742,4,190,515,19,3,3
+51743,4,190,516,19,4,4
+51744,4,190,517,19,5,5
+51745,4,190,518,19,3,3
+51746,4,190,519,19,6,6
+51747,4,190,520,19,5,5
+51748,4,190,521,19,5,5
+51749,4,190,515,92,3,3
+51750,4,190,516,92,4,4
+51751,4,190,517,92,5,5
+51752,4,190,518,19,3,3
+51753,4,190,519,92,6,6
+51754,4,190,520,19,5,5
+51755,4,190,521,19,5,5
+51756,4,191,515,19,3,3
+51757,4,191,516,19,4,4
+51758,4,191,517,19,5,5
+51759,4,191,518,19,3,3
+51760,4,191,519,19,6,6
+51761,4,191,520,19,5,5
+51762,4,191,521,19,5,5
+51763,4,191,515,19,3,3
+51764,4,191,516,19,4,4
+51765,4,191,517,19,5,5
+51766,4,191,518,19,3,3
+51767,4,191,519,19,6,6
+51768,4,191,520,19,5,5
+51769,4,191,521,19,5,5
+51770,4,191,515,92,3,3
+51771,4,191,516,92,4,4
+51772,4,191,517,92,5,5
+51773,4,191,518,19,3,3
+51774,4,191,519,92,6,6
+51775,4,191,520,19,5,5
+51776,4,191,521,19,5,5
+51777,4,214,515,19,20,20
+51778,4,214,516,19,21,21
+51779,4,214,517,19,22,22
+51780,4,214,518,19,22,22
+51781,4,214,519,19,23,23
+51782,4,214,520,19,24,24
+51783,4,214,521,19,24,24
+51784,4,214,515,19,20,20
+51785,4,214,516,19,21,21
+51786,4,214,517,19,22,22
+51787,4,214,518,19,22,22
+51788,4,214,519,19,23,23
+51789,4,214,520,19,24,24
+51790,4,214,521,19,24,24
+51791,4,214,515,92,20,20
+51792,4,214,516,92,21,21
+51793,4,214,517,92,22,22
+51794,4,214,518,19,22,22
+51795,4,214,519,19,23,23
+51796,4,214,520,19,24,24
+51797,4,214,521,19,24,24
+51798,4,215,515,19,20,20
+51799,4,215,516,19,21,21
+51800,4,215,517,19,22,22
+51801,4,215,518,19,22,22
+51802,4,215,519,19,23,23
+51803,4,215,520,19,24,24
+51804,4,215,521,19,24,24
+51805,4,215,515,19,20,20
+51806,4,215,516,19,21,21
+51807,4,215,517,19,22,22
+51808,4,215,518,19,22,22
+51809,4,215,519,19,23,23
+51810,4,215,520,19,24,24
+51811,4,215,521,19,24,24
+51812,4,215,515,92,20,20
+51813,4,215,516,92,21,21
+51814,4,215,517,92,22,22
+51815,4,215,518,19,22,22
+51816,4,215,519,19,23,23
+51817,4,215,520,19,24,24
+51818,4,215,521,19,24,24
+51819,4,216,515,19,20,20
+51820,4,216,516,19,21,21
+51821,4,216,517,19,22,22
+51822,4,216,518,19,22,22
+51823,4,216,519,19,23,23
+51824,4,216,520,19,24,24
+51825,4,216,521,19,24,24
+51826,4,216,515,19,20,20
+51827,4,216,516,19,21,21
+51828,4,216,517,19,22,22
+51829,4,216,518,19,22,22
+51830,4,216,519,19,23,23
+51831,4,216,520,19,24,24
+51832,4,216,521,19,24,24
+51833,4,216,515,92,20,20
+51834,4,216,516,92,21,21
+51835,4,216,517,92,22,22
+51836,4,216,518,19,22,22
+51837,4,216,519,19,23,23
+51838,4,216,520,19,24,24
+51839,4,216,521,19,24,24
+51840,4,217,515,19,20,20
+51841,4,217,516,19,21,21
+51842,4,217,517,19,22,22
+51843,4,217,518,19,22,22
+51844,4,217,519,19,23,23
+51845,4,217,520,19,24,24
+51846,4,217,521,19,24,24
+51847,4,217,515,19,20,20
+51848,4,217,516,19,21,21
+51849,4,217,517,19,22,22
+51850,4,217,518,19,22,22
+51851,4,217,519,19,23,23
+51852,4,217,520,19,24,24
+51853,4,217,521,19,24,24
+51854,4,217,515,92,20,20
+51855,4,217,516,92,21,21
+51856,4,217,517,92,22,22
+51857,4,217,518,19,22,22
+51858,4,217,519,19,23,23
+51859,4,217,520,19,24,24
+51860,4,217,521,19,24,24
+51861,4,218,515,19,20,20
+51862,4,218,516,19,21,21
+51863,4,218,517,19,22,22
+51864,4,218,518,19,22,22
+51865,4,218,519,19,23,23
+51866,4,218,520,19,24,24
+51867,4,218,521,19,24,24
+51868,4,218,515,19,20,20
+51869,4,218,516,19,21,21
+51870,4,218,517,19,22,22
+51871,4,218,518,19,22,22
+51872,4,218,519,19,23,23
+51873,4,218,520,19,24,24
+51874,4,218,521,19,24,24
+51875,4,218,515,92,20,20
+51876,4,218,516,92,21,21
+51877,4,218,517,92,22,22
+51878,4,218,518,19,22,22
+51879,4,218,519,19,23,23
+51880,4,218,520,19,24,24
+51881,4,218,521,19,24,24
+51882,4,219,515,19,20,20
+51883,4,219,516,19,21,21
+51884,4,219,517,19,22,22
+51885,4,219,518,19,22,22
+51886,4,219,519,19,23,23
+51887,4,219,520,19,24,24
+51888,4,219,521,19,24,24
+51889,4,219,515,19,20,20
+51890,4,219,516,19,21,21
+51891,4,219,517,19,22,22
+51892,4,219,518,19,22,22
+51893,4,219,519,19,23,23
+51894,4,219,520,19,24,24
+51895,4,219,521,19,24,24
+51896,4,219,515,92,20,20
+51897,4,219,516,92,21,21
+51898,4,219,517,92,22,22
+51899,4,219,518,19,22,22
+51900,4,219,519,19,23,23
+51901,4,219,520,19,24,24
+51902,4,219,521,19,24,24
+51903,4,220,515,19,20,20
+51904,4,220,516,19,21,21
+51905,4,220,517,19,22,22
+51906,4,220,518,19,22,22
+51907,4,220,519,19,23,23
+51908,4,220,520,19,24,24
+51909,4,220,521,19,24,24
+51910,4,220,515,19,20,20
+51911,4,220,516,19,21,21
+51912,4,220,517,19,22,22
+51913,4,220,518,19,22,22
+51914,4,220,519,19,23,23
+51915,4,220,520,19,24,24
+51916,4,220,521,19,24,24
+51917,4,220,515,92,20,20
+51918,4,220,516,92,21,21
+51919,4,220,517,92,22,22
+51920,4,220,518,19,22,22
+51921,4,220,519,19,23,23
+51922,4,220,520,19,24,24
+51923,4,220,521,19,24,24
+51924,4,221,515,19,20,20
+51925,4,221,516,19,21,21
+51926,4,221,517,19,22,22
+51927,4,221,518,19,22,22
+51928,4,221,519,19,23,23
+51929,4,221,520,19,24,24
+51930,4,221,521,19,24,24
+51931,4,221,515,19,20,20
+51932,4,221,516,19,21,21
+51933,4,221,517,19,22,22
+51934,4,221,518,19,22,22
+51935,4,221,519,19,23,23
+51936,4,221,520,19,24,24
+51937,4,221,521,19,24,24
+51938,4,221,515,92,20,20
+51939,4,221,516,92,21,21
+51940,4,221,517,92,22,22
+51941,4,221,518,19,22,22
+51942,4,221,519,19,23,23
+51943,4,221,520,19,24,24
+51944,4,221,521,19,24,24
+51945,4,227,515,98,22,22
+51946,4,227,516,41,23,23
+51947,4,227,517,98,24,24
+51948,4,227,518,86,22,22
+51949,4,227,519,42,23,23
+51950,4,227,520,86,24,24
+51951,4,227,521,86,24,24
+51952,4,228,515,98,23,23
+51953,4,228,516,41,24,24
+51954,4,228,517,98,25,25
+51955,4,228,518,86,23,23
+51956,4,228,519,42,24,24
+51957,4,228,520,86,25,25
+51958,4,228,521,86,25,25
+51959,4,230,515,98,23,23
+51960,4,230,516,41,24,24
+51961,4,230,517,98,25,25
+51962,4,230,518,86,23,23
+51963,4,230,519,42,24,24
+51964,4,230,520,86,25,25
+51965,4,230,521,86,25,25
+51966,4,232,515,98,24,24
+51967,4,232,516,41,25,25
+51968,4,232,517,98,26,26
+51969,4,232,518,86,24,24
+51970,4,232,519,42,25,25
+51971,4,232,520,86,26,26
+51972,4,232,521,86,26,26
+51973,4,250,522,129,10,10
+51974,4,250,523,129,10,10
+51975,4,250,524,129,10,10
+51976,4,253,522,129,10,10
+51977,4,253,523,129,10,10
+51978,4,253,524,118,10,10
+51979,4,254,522,129,10,10
+51980,4,254,523,129,10,10
+51981,4,254,524,118,10,10
+51982,4,281,522,129,10,10
+51983,4,281,523,129,10,10
+51984,4,281,524,118,10,10
+51985,4,204,522,129,10,10
+51986,4,204,523,129,10,10
+51987,4,204,524,60,10,10
+51988,4,184,522,129,10,10
+51989,4,184,523,129,10,10
+51990,4,184,524,72,10,10
+51991,4,285,522,129,10,10
+51992,4,285,523,129,10,10
+51993,4,285,524,72,10,10
+51994,4,282,522,129,10,10
+51995,4,282,523,129,10,10
+51996,4,282,524,72,10,10
+51997,4,349,522,129,10,10
+51998,4,349,523,129,10,10
+51999,4,349,524,72,10,10
+52000,4,198,522,129,10,10
+52001,4,198,523,129,10,10
+52002,4,198,524,118,10,10
+52003,4,199,522,129,10,10
+52004,4,199,523,129,10,10
+52005,4,199,524,118,10,10
+52006,4,200,522,129,10,10
+52007,4,200,523,129,10,10
+52008,4,200,524,98,10,10
+52009,4,316,522,129,10,10
+52010,4,316,523,129,10,10
+52011,4,316,524,118,10,10
+52012,4,279,522,129,10,10
+52013,4,279,523,129,10,10
+52014,4,279,524,72,10,10
+52015,4,249,522,129,10,10
+52016,4,249,523,129,10,10
+52017,4,249,524,60,10,10
+52018,4,235,522,129,10,10
+52019,4,235,523,129,10,10
+52020,4,235,524,98,10,10
+52021,4,242,522,129,10,10
+52022,4,242,523,129,10,10
+52023,4,242,524,129,10,10
+52024,4,189,522,129,10,10
+52025,4,189,523,129,10,10
+52026,4,189,524,60,10,10
+52027,4,269,522,129,10,10
+52028,4,269,523,129,10,10
+52029,4,269,524,60,10,10
+52030,4,263,522,129,10,10
+52031,4,263,523,129,10,10
+52032,4,263,524,118,10,10
+52033,4,237,522,129,10,10
+52034,4,237,523,129,10,10
+52035,4,237,524,118,10,10
+52036,4,239,522,129,10,10
+52037,4,239,523,129,10,10
+52038,4,239,524,118,10,10
+52039,4,240,522,129,10,10
+52040,4,240,523,129,10,10
+52041,4,240,524,118,10,10
+52042,4,224,522,129,10,10
+52043,4,224,523,129,10,10
+52044,4,224,524,98,10,10
+52045,4,284,522,129,10,10
+52046,4,284,523,129,10,10
+52047,4,284,524,129,10,10
+52048,4,202,522,129,10,10
+52049,4,202,523,129,10,10
+52050,4,202,524,118,10,10
+52051,4,203,522,129,10,10
+52052,4,203,523,129,10,10
+52053,4,203,524,118,10,10
+52054,4,211,522,129,10,10
+52055,4,211,523,129,10,10
+52056,4,211,524,60,10,10
+52057,4,300,522,129,10,10
+52058,4,300,523,129,10,10
+52059,4,300,524,60,10,10
+52060,4,303,522,129,10,10
+52061,4,303,523,129,10,10
+52062,4,303,524,118,10,10
+52063,4,304,522,129,10,10
+52064,4,304,523,129,10,10
+52065,4,304,524,118,10,10
+52066,4,276,522,129,10,10
+52067,4,276,523,129,10,10
+52068,4,276,524,72,10,10
+52069,4,306,522,129,10,10
+52070,4,306,523,129,10,10
+52071,4,306,524,72,10,10
+52072,4,277,522,129,10,10
+52073,4,277,523,129,10,10
+52074,4,277,524,98,10,10
+52075,4,278,522,129,10,10
+52076,4,278,523,129,10,10
+52077,4,278,524,72,10,10
+52078,4,312,522,129,10,10
+52079,4,312,523,129,10,10
+52080,4,312,524,72,10,10
+52081,4,313,522,129,10,10
+52082,4,313,523,129,10,10
+52083,4,313,524,60,10,10
+52084,4,314,522,129,10,10
+52085,4,314,523,129,10,10
+52086,4,314,524,118,10,10
+52087,4,315,522,129,10,10
+52088,4,315,523,129,10,10
+52089,4,315,524,118,10,10
+52090,4,287,522,129,10,10
+52091,4,287,523,129,10,10
+52092,4,287,524,72,10,10
+52093,4,288,522,129,10,10
+52094,4,288,523,129,10,10
+52095,4,288,524,72,10,10
+52096,4,289,522,129,10,10
+52097,4,289,523,129,10,10
+52098,4,289,524,60,10,10
+52099,4,187,522,129,10,10
+52100,4,187,523,129,10,10
+52101,4,187,524,60,10,10
+52102,4,188,522,129,10,10
+52103,4,188,523,129,10,10
+52104,4,188,524,60,10,10
+52105,4,192,522,129,10,10
+52106,4,192,523,129,10,10
+52107,4,192,524,72,10,10
+52108,4,192,522,129,5,5
+52109,4,192,523,129,5,5
+52110,4,192,524,211,5,5
+52111,4,205,522,129,10,10
+52112,4,205,523,129,10,10
+52113,4,205,524,98,10,10
+52114,4,206,522,129,10,10
+52115,4,206,523,129,10,10
+52116,4,206,524,60,10,10
+52117,4,225,522,129,10,10
+52118,4,225,523,129,10,10
+52119,4,225,524,98,10,10
+52120,4,226,522,129,10,10
+52121,4,226,523,129,10,10
+52122,4,226,524,72,10,10
+52123,4,236,522,129,10,10
+52124,4,236,523,129,10,10
+52125,4,236,524,118,10,10
+52126,4,241,522,129,10,10
+52127,4,241,523,129,10,10
+52128,4,241,524,60,10,10
+52129,4,243,522,129,10,10
+52130,4,243,523,129,10,10
+52131,4,243,524,60,10,10
+52132,4,243,524,223,10,10
+52133,4,251,522,129,10,10
+52134,4,251,523,129,10,10
+52135,4,251,524,129,10,10
+52136,4,193,522,129,10,10
+52137,4,193,523,129,10,10
+52138,4,193,524,60,10,10
+52139,4,227,522,129,10,10
+52140,4,227,523,129,10,10
+52141,4,227,524,98,10,10
+52142,4,230,522,129,10,10
+52143,4,230,523,129,10,10
+52144,4,230,524,98,10,10
+52145,4,232,522,129,10,10
+52146,4,232,523,129,10,10
+52147,4,232,524,98,10,10
+52148,4,186,522,129,10,10
+52149,4,186,523,129,10,10
+52150,4,186,524,98,10,10
+52151,4,250,525,129,20,20
+52152,4,250,526,129,20,20
+52153,4,250,527,129,20,20
+52154,4,250,528,147,20,20
+52155,4,253,525,129,20,20
+52156,4,253,526,118,20,20
+52157,4,253,527,118,20,20
+52158,4,253,528,118,20,20
+52159,4,254,525,129,20,20
+52160,4,254,526,118,20,20
+52161,4,254,527,118,20,20
+52162,4,254,528,118,20,20
+52163,4,281,525,129,20,20
+52164,4,281,526,118,20,20
+52165,4,281,527,118,20,20
+52166,4,281,528,118,20,20
+52167,4,204,525,129,20,20
+52168,4,204,526,60,20,20
+52169,4,204,527,60,20,20
+52170,4,204,528,60,20,20
+52171,4,184,525,129,20,20
+52172,4,184,526,72,20,20
+52173,4,184,527,170,20,20
+52174,4,184,528,90,20,20
+52175,4,285,525,129,20,20
+52176,4,285,526,72,20,20
+52177,4,285,527,170,20,20
+52178,4,285,528,90,20,20
+52179,4,282,525,129,20,20
+52180,4,282,526,72,20,20
+52181,4,282,527,170,20,20
+52182,4,282,528,90,20,20
+52183,4,349,525,129,20,20
+52184,4,349,526,72,20,20
+52185,4,349,527,170,20,20
+52186,4,349,528,90,20,20
+52187,4,198,525,129,20,20
+52188,4,198,526,118,20,20
+52189,4,198,527,118,20,20
+52190,4,198,528,118,20,20
+52191,4,199,525,129,20,20
+52192,4,199,526,118,20,20
+52193,4,199,527,118,20,20
+52194,4,199,528,118,20,20
+52195,4,200,525,129,20,20
+52196,4,200,526,98,20,20
+52197,4,200,527,98,20,20
+52198,4,200,528,222,20,20
+52199,4,200,525,129,20,20
+52200,4,200,526,98,20,20
+52201,4,200,527,98,20,20
+52202,4,200,528,222,20,20
+52203,4,200,525,129,20,20
+52204,4,200,526,98,20,20
+52205,4,200,527,98,20,20
+52206,4,200,528,120,20,20
+52207,4,316,525,129,20,20
+52208,4,316,526,118,20,20
+52209,4,316,527,118,20,20
+52210,4,316,528,118,20,20
+52211,4,279,525,129,20,20
+52212,4,279,526,72,20,20
+52213,4,279,527,170,20,20
+52214,4,279,528,90,20,20
+52215,4,249,525,129,20,20
+52216,4,249,526,60,20,20
+52217,4,249,527,60,20,20
+52218,4,249,528,60,20,20
+52219,4,235,525,129,20,20
+52220,4,235,526,98,20,20
+52221,4,235,527,98,20,20
+52222,4,235,528,222,20,20
+52223,4,235,525,129,20,20
+52224,4,235,526,98,20,20
+52225,4,235,527,98,20,20
+52226,4,235,528,222,20,20
+52227,4,235,525,129,20,20
+52228,4,235,526,98,20,20
+52229,4,235,527,98,20,20
+52230,4,235,528,120,20,20
+52231,4,242,525,129,20,20
+52232,4,242,526,129,20,20
+52233,4,242,527,129,20,20
+52234,4,242,528,130,20,20
+52235,4,189,525,129,20,20
+52236,4,189,526,60,20,20
+52237,4,189,527,60,20,20
+52238,4,189,528,60,20,20
+52239,4,269,525,129,20,20
+52240,4,269,526,60,20,20
+52241,4,269,527,60,20,20
+52242,4,269,528,60,20,20
+52243,4,263,525,129,20,20
+52244,4,263,526,118,20,20
+52245,4,263,527,118,20,20
+52246,4,263,528,118,20,20
+52247,4,237,525,129,20,20
+52248,4,237,526,118,20,20
+52249,4,237,527,118,20,20
+52250,4,237,528,118,20,20
+52251,4,239,525,129,20,20
+52252,4,239,526,118,20,20
+52253,4,239,527,118,20,20
+52254,4,239,528,118,20,20
+52255,4,240,525,129,20,20
+52256,4,240,526,118,20,20
+52257,4,240,527,118,20,20
+52258,4,240,528,118,20,20
+52259,4,224,525,129,20,20
+52260,4,224,526,98,20,20
+52261,4,224,527,98,20,20
+52262,4,224,528,222,20,20
+52263,4,224,525,129,20,20
+52264,4,224,526,98,20,20
+52265,4,224,527,98,20,20
+52266,4,224,528,222,20,20
+52267,4,224,525,129,20,20
+52268,4,224,526,98,20,20
+52269,4,224,527,98,20,20
+52270,4,224,528,120,20,20
+52271,4,284,525,129,20,20
+52272,4,284,526,129,20,20
+52273,4,284,527,129,20,20
+52274,4,284,528,130,20,20
+52275,4,202,525,129,20,20
+52276,4,202,526,118,20,20
+52277,4,202,527,118,20,20
+52278,4,202,528,118,20,20
+52279,4,203,525,129,20,20
+52280,4,203,526,118,20,20
+52281,4,203,527,118,20,20
+52282,4,203,528,118,20,20
+52283,4,211,525,129,20,20
+52284,4,211,526,60,20,20
+52285,4,211,527,60,20,20
+52286,4,211,528,60,20,20
+52287,4,300,525,129,20,20
+52288,4,300,526,60,20,20
+52289,4,300,527,60,20,20
+52290,4,300,528,60,20,20
+52291,4,303,525,129,20,20
+52292,4,303,526,118,20,20
+52293,4,303,527,118,20,20
+52294,4,303,528,118,20,20
+52295,4,304,525,129,20,20
+52296,4,304,526,118,20,20
+52297,4,304,527,118,20,20
+52298,4,304,528,118,20,20
+52299,4,276,525,129,20,20
+52300,4,276,526,72,20,20
+52301,4,276,527,72,20,20
+52302,4,276,528,72,20,20
+52303,4,306,525,129,20,20
+52304,4,306,526,72,20,20
+52305,4,306,527,72,20,20
+52306,4,306,528,72,20,20
+52307,4,277,525,129,20,20
+52308,4,277,526,98,20,20
+52309,4,277,527,98,20,20
+52310,4,277,528,222,20,20
+52311,4,277,525,129,20,20
+52312,4,277,526,98,20,20
+52313,4,277,527,98,20,20
+52314,4,277,528,222,20,20
+52315,4,277,525,129,20,20
+52316,4,277,526,98,20,20
+52317,4,277,527,98,20,20
+52318,4,277,528,120,20,20
+52319,4,278,525,129,20,20
+52320,4,278,526,72,20,20
+52321,4,278,527,170,20,20
+52322,4,278,528,90,20,20
+52323,4,312,525,129,20,20
+52324,4,312,526,72,20,20
+52325,4,312,527,170,20,20
+52326,4,312,528,90,20,20
+52327,4,313,525,129,20,20
+52328,4,313,526,60,20,20
+52329,4,313,527,60,20,20
+52330,4,313,528,60,20,20
+52331,4,314,525,129,20,20
+52332,4,314,526,118,20,20
+52333,4,314,527,118,20,20
+52334,4,314,528,118,20,20
+52335,4,315,525,129,20,20
+52336,4,315,526,118,20,20
+52337,4,315,527,118,20,20
+52338,4,315,528,118,20,20
+52339,4,287,525,129,20,20
+52340,4,287,526,72,20,20
+52341,4,287,527,170,20,20
+52342,4,287,528,90,20,20
+52343,4,288,525,129,20,20
+52344,4,288,526,72,20,20
+52345,4,288,527,170,20,20
+52346,4,288,528,90,20,20
+52347,4,289,525,129,20,20
+52348,4,289,526,60,20,20
+52349,4,289,527,60,20,20
+52350,4,289,528,60,20,20
+52351,4,187,525,129,20,20
+52352,4,187,526,60,20,20
+52353,4,187,527,60,20,20
+52354,4,187,528,60,20,20
+52355,4,188,525,129,20,20
+52356,4,188,526,60,20,20
+52357,4,188,527,60,20,20
+52358,4,188,528,60,20,20
+52359,4,192,525,129,20,20
+52360,4,192,526,72,20,20
+52361,4,192,527,72,20,20
+52362,4,192,528,72,20,20
+52363,4,192,526,211,20,20
+52364,4,192,527,211,20,20
+52365,4,192,528,211,20,20
+52366,4,205,525,129,20,20
+52367,4,205,526,98,20,20
+52368,4,205,527,98,20,20
+52369,4,205,528,222,20,20
+52370,4,205,525,129,20,20
+52371,4,205,526,98,20,20
+52372,4,205,527,98,20,20
+52373,4,205,528,222,20,20
+52374,4,205,525,129,20,20
+52375,4,205,526,98,20,20
+52376,4,205,527,98,20,20
+52377,4,205,528,120,20,20
+52378,4,206,525,129,20,20
+52379,4,206,526,60,20,20
+52380,4,206,527,60,20,20
+52381,4,206,528,60,20,20
+52382,4,225,525,129,20,20
+52383,4,225,526,98,20,20
+52384,4,225,527,98,20,20
+52385,4,225,528,222,20,20
+52386,4,225,525,129,20,20
+52387,4,225,526,98,20,20
+52388,4,225,527,98,20,20
+52389,4,225,528,222,20,20
+52390,4,225,525,129,20,20
+52391,4,225,526,98,20,20
+52392,4,225,527,98,20,20
+52393,4,225,528,120,20,20
+52394,4,226,525,129,20,20
+52395,4,226,526,72,20,20
+52396,4,226,527,170,20,20
+52397,4,226,528,90,20,20
+52398,4,236,525,129,20,20
+52399,4,236,526,118,20,20
+52400,4,236,527,118,20,20
+52401,4,236,528,118,20,20
+52402,4,241,525,129,20,20
+52403,4,241,526,60,20,20
+52404,4,241,527,60,20,20
+52405,4,241,528,60,20,20
+52406,4,243,525,129,20,20
+52407,4,243,526,60,20,20
+52408,4,243,527,60,20,20
+52409,4,243,528,60,20,20
+52410,4,243,526,223,20,20
+52411,4,243,527,223,20,20
+52412,4,243,528,223,20,20
+52413,4,251,525,129,20,20
+52414,4,251,526,129,20,20
+52415,4,251,527,129,20,20
+52416,4,251,528,147,20,20
+52417,4,193,525,129,20,20
+52418,4,193,526,60,20,20
+52419,4,193,527,60,20,20
+52420,4,193,528,60,20,20
+52421,4,227,525,129,20,20
+52422,4,227,526,98,20,20
+52423,4,227,527,98,20,20
+52424,4,227,528,116,20,20
+52425,4,230,525,129,20,20
+52426,4,230,526,98,20,20
+52427,4,230,527,98,20,20
+52428,4,230,528,116,20,20
+52429,4,232,525,129,20,20
+52430,4,232,526,98,20,20
+52431,4,232,527,98,20,20
+52432,4,232,528,116,20,20
+52433,4,186,525,129,20,20
+52434,4,186,526,98,20,20
+52435,4,186,527,98,20,20
+52436,4,186,528,222,20,20
+52437,4,186,525,129,20,20
+52438,4,186,526,98,20,20
+52439,4,186,527,98,20,20
+52440,4,186,528,222,20,20
+52441,4,186,525,129,20,20
+52442,4,186,526,98,20,20
+52443,4,186,527,98,20,20
+52444,4,186,528,120,20,20
+52445,4,250,529,129,40,40
+52446,4,250,530,147,40,40
+52447,4,250,531,129,40,40
+52448,4,250,532,148,40,40
+52449,4,253,529,118,40,40
+52450,4,253,530,118,40,40
+52451,4,253,531,129,40,40
+52452,4,253,532,119,40,40
+52453,4,254,529,118,40,40
+52454,4,254,530,118,40,40
+52455,4,254,531,129,40,40
+52456,4,254,532,119,40,40
+52457,4,281,529,118,40,40
+52458,4,281,530,118,40,40
+52459,4,281,531,129,40,40
+52460,4,281,532,119,40,40
+52461,4,204,529,60,40,40
+52462,4,204,530,60,40,40
+52463,4,204,531,129,40,40
+52464,4,204,532,60,40,40
+52465,4,184,529,170,40,40
+52466,4,184,530,90,40,40
+52467,4,184,531,73,40,40
+52468,4,184,532,171,40,40
+52469,4,285,529,170,40,40
+52470,4,285,530,90,40,40
+52471,4,285,531,73,40,40
+52472,4,285,532,171,40,40
+52473,4,282,529,170,40,40
+52474,4,282,530,90,40,40
+52475,4,282,531,73,40,40
+52476,4,282,532,171,40,40
+52477,4,349,529,170,40,40
+52478,4,349,530,90,40,40
+52479,4,349,531,73,40,40
+52480,4,349,532,171,40,40
+52481,4,198,529,118,40,40
+52482,4,198,530,118,40,40
+52483,4,198,531,129,40,40
+52484,4,198,532,119,40,40
+52485,4,199,529,118,40,40
+52486,4,199,530,118,40,40
+52487,4,199,531,129,40,40
+52488,4,199,532,119,40,40
+52489,4,200,529,98,40,40
+52490,4,200,530,222,40,40
+52491,4,200,531,98,40,40
+52492,4,200,532,99,40,40
+52493,4,200,529,98,40,40
+52494,4,200,530,222,40,40
+52495,4,200,531,98,40,40
+52496,4,200,532,99,40,40
+52497,4,200,529,98,40,40
+52498,4,200,530,120,40,40
+52499,4,200,531,98,40,40
+52500,4,200,532,99,40,40
+52501,4,316,529,118,40,40
+52502,4,316,530,118,40,40
+52503,4,316,531,129,40,40
+52504,4,316,532,119,40,40
+52505,4,279,529,170,40,40
+52506,4,279,530,90,40,40
+52507,4,279,531,73,40,40
+52508,4,279,532,171,40,40
+52509,4,249,529,60,40,40
+52510,4,249,530,60,40,40
+52511,4,249,531,129,40,40
+52512,4,249,532,60,40,40
+52513,4,235,529,98,40,40
+52514,4,235,530,222,40,40
+52515,4,235,531,98,40,40
+52516,4,235,532,99,40,40
+52517,4,235,529,98,40,40
+52518,4,235,530,222,40,40
+52519,4,235,531,98,40,40
+52520,4,235,532,99,40,40
+52521,4,235,529,98,40,40
+52522,4,235,530,120,40,40
+52523,4,235,531,98,40,40
+52524,4,235,532,99,40,40
+52525,4,242,529,129,40,40
+52526,4,242,530,130,40,40
+52527,4,242,531,129,40,40
+52528,4,242,532,129,40,40
+52529,4,189,529,60,40,40
+52530,4,189,530,60,40,40
+52531,4,189,531,129,40,40
+52532,4,189,532,60,40,40
+52533,4,269,529,60,40,40
+52534,4,269,530,60,40,40
+52535,4,269,531,129,40,40
+52536,4,269,532,60,40,40
+52537,4,263,529,118,40,40
+52538,4,263,530,118,40,40
+52539,4,263,531,129,40,40
+52540,4,263,532,119,40,40
+52541,4,237,529,118,40,40
+52542,4,237,530,118,40,40
+52543,4,237,531,129,40,40
+52544,4,237,532,119,40,40
+52545,4,239,529,118,40,40
+52546,4,239,530,118,40,40
+52547,4,239,531,129,40,40
+52548,4,239,532,119,40,40
+52549,4,240,529,118,40,40
+52550,4,240,530,118,40,40
+52551,4,240,531,129,40,40
+52552,4,240,532,119,40,40
+52553,4,224,529,98,40,40
+52554,4,224,530,222,40,40
+52555,4,224,531,98,40,40
+52556,4,224,532,99,40,40
+52557,4,224,529,98,40,40
+52558,4,224,530,222,40,40
+52559,4,224,531,98,40,40
+52560,4,224,532,99,40,40
+52561,4,224,529,98,40,40
+52562,4,224,530,120,40,40
+52563,4,224,531,98,40,40
+52564,4,224,532,99,40,40
+52565,4,284,529,129,40,40
+52566,4,284,530,130,40,40
+52567,4,284,531,129,40,40
+52568,4,284,532,129,40,40
+52569,4,202,529,118,40,40
+52570,4,202,530,118,40,40
+52571,4,202,531,129,40,40
+52572,4,202,532,119,40,40
+52573,4,203,529,118,40,40
+52574,4,203,530,118,40,40
+52575,4,203,531,129,40,40
+52576,4,203,532,119,40,40
+52577,4,211,529,60,40,40
+52578,4,211,530,60,40,40
+52579,4,211,531,129,40,40
+52580,4,211,532,60,40,40
+52581,4,300,529,60,40,40
+52582,4,300,530,60,40,40
+52583,4,300,531,129,40,40
+52584,4,300,532,60,40,40
+52585,4,303,529,118,40,40
+52586,4,303,530,118,40,40
+52587,4,303,531,129,40,40
+52588,4,303,532,119,40,40
+52589,4,304,529,118,40,40
+52590,4,304,530,118,40,40
+52591,4,304,531,129,40,40
+52592,4,304,532,119,40,40
+52593,4,276,529,72,40,40
+52594,4,276,530,72,40,40
+52595,4,276,531,129,40,40
+52596,4,276,532,211,40,40
+52597,4,306,529,72,40,40
+52598,4,306,530,72,40,40
+52599,4,306,531,129,40,40
+52600,4,306,532,211,40,40
+52601,4,277,529,98,40,40
+52602,4,277,530,222,40,40
+52603,4,277,531,98,40,40
+52604,4,277,532,99,40,40
+52605,4,277,529,98,40,40
+52606,4,277,530,222,40,40
+52607,4,277,531,98,40,40
+52608,4,277,532,99,40,40
+52609,4,277,529,98,40,40
+52610,4,277,530,120,40,40
+52611,4,277,531,98,40,40
+52612,4,277,532,99,40,40
+52613,4,278,529,170,40,40
+52614,4,278,530,90,40,40
+52615,4,278,531,73,40,40
+52616,4,278,532,171,40,40
+52617,4,312,529,170,40,40
+52618,4,312,530,90,40,40
+52619,4,312,531,73,40,40
+52620,4,312,532,171,40,40
+52621,4,313,529,60,40,40
+52622,4,313,530,60,40,40
+52623,4,313,531,129,40,40
+52624,4,313,532,60,40,40
+52625,4,314,529,118,40,40
+52626,4,314,530,118,40,40
+52627,4,314,531,129,40,40
+52628,4,314,532,119,40,40
+52629,4,315,529,118,40,40
+52630,4,315,530,118,40,40
+52631,4,315,531,129,40,40
+52632,4,315,532,119,40,40
+52633,4,287,529,170,40,40
+52634,4,287,530,90,40,40
+52635,4,287,531,73,40,40
+52636,4,287,532,171,40,40
+52637,4,288,529,170,40,40
+52638,4,288,530,90,40,40
+52639,4,288,531,73,40,40
+52640,4,288,532,171,40,40
+52641,4,289,529,60,40,40
+52642,4,289,530,60,40,40
+52643,4,289,531,129,40,40
+52644,4,289,532,60,40,40
+52645,4,187,529,60,40,40
+52646,4,187,530,60,40,40
+52647,4,187,531,129,40,40
+52648,4,187,532,60,40,40
+52649,4,188,529,60,40,40
+52650,4,188,530,60,40,40
+52651,4,188,531,129,40,40
+52652,4,188,532,60,40,40
+52653,4,192,529,72,40,40
+52654,4,192,530,72,40,40
+52655,4,192,531,129,40,40
+52656,4,192,532,211,40,40
+52657,4,192,529,211,40,40
+52658,4,192,530,211,40,40
+52659,4,192,531,211,40,40
+52660,4,192,532,211,40,40
+52661,4,205,529,98,40,40
+52662,4,205,530,222,40,40
+52663,4,205,531,98,40,40
+52664,4,205,532,99,40,40
+52665,4,205,529,98,40,40
+52666,4,205,530,222,40,40
+52667,4,205,531,98,40,40
+52668,4,205,532,99,40,40
+52669,4,205,529,98,40,40
+52670,4,205,530,120,40,40
+52671,4,205,531,98,40,40
+52672,4,205,532,99,40,40
+52673,4,206,529,60,40,40
+52674,4,206,530,60,40,40
+52675,4,206,531,129,40,40
+52676,4,206,532,60,40,40
+52677,4,225,529,98,40,40
+52678,4,225,530,222,40,40
+52679,4,225,531,98,40,40
+52680,4,225,532,99,40,40
+52681,4,225,529,98,40,40
+52682,4,225,530,222,40,40
+52683,4,225,531,98,40,40
+52684,4,225,532,99,40,40
+52685,4,225,529,98,40,40
+52686,4,225,530,120,40,40
+52687,4,225,531,98,40,40
+52688,4,225,532,99,40,40
+52689,4,226,529,170,40,40
+52690,4,226,530,90,40,40
+52691,4,226,531,73,40,40
+52692,4,226,532,171,40,40
+52693,4,236,529,118,40,40
+52694,4,236,530,118,40,40
+52695,4,236,531,129,40,40
+52696,4,236,532,119,40,40
+52697,4,241,529,60,40,40
+52698,4,241,530,60,40,40
+52699,4,241,531,129,40,40
+52700,4,241,532,60,40,40
+52701,4,243,529,60,40,40
+52702,4,243,530,60,40,40
+52703,4,243,531,129,40,40
+52704,4,243,532,223,40,40
+52705,4,243,529,223,40,40
+52706,4,243,530,223,40,40
+52707,4,243,531,223,40,40
+52708,4,243,532,223,40,40
+52709,4,251,529,129,40,40
+52710,4,251,530,147,40,40
+52711,4,251,531,129,40,40
+52712,4,251,532,148,40,40
+52713,4,193,529,60,40,40
+52714,4,193,530,60,40,40
+52715,4,193,531,129,40,40
+52716,4,193,532,60,40,40
+52717,4,227,529,98,40,40
+52718,4,227,530,116,40,40
+52719,4,227,531,99,40,40
+52720,4,227,532,117,40,40
+52721,4,230,529,98,40,40
+52722,4,230,530,116,40,40
+52723,4,230,531,99,40,40
+52724,4,230,532,117,40,40
+52725,4,232,529,98,40,40
+52726,4,232,530,116,40,40
+52727,4,232,531,99,40,40
+52728,4,232,532,117,40,40
+52729,4,186,529,98,40,40
+52730,4,186,530,222,40,40
+52731,4,186,531,98,40,40
+52732,4,186,532,99,40,40
+52733,4,186,529,98,40,40
+52734,4,186,530,222,40,40
+52735,4,186,531,98,40,40
+52736,4,186,532,99,40,40
+52737,4,186,529,98,40,40
+52738,4,186,530,120,40,40
+52739,4,186,531,98,40,40
+52740,4,186,532,99,40,40
+52741,4,250,533,129,15,19
+52742,4,250,534,129,10,14
+52743,4,250,535,147,10,14
+52744,4,253,533,129,15,19
+52745,4,253,534,129,10,14
+52746,4,253,535,129,5,9
+52747,4,254,533,129,15,19
+52748,4,254,534,129,10,14
+52749,4,254,535,129,5,9
+52750,4,281,533,118,10,14
+52751,4,281,534,118,5,9
+52752,4,281,535,119,10,14
+52753,4,204,533,54,15,19
+52754,4,204,534,54,10,14
+52755,4,204,535,55,15,19
+52756,4,184,533,72,20,24
+52757,4,184,534,72,15,19
+52758,4,184,535,73,20,24
+52759,4,285,533,72,35,39
+52760,4,285,534,72,30,34
+52761,4,285,535,73,35,39
+52762,4,282,533,72,35,39
+52763,4,282,534,72,30,34
+52764,4,282,535,73,35,39
+52765,4,349,533,72,35,39
+52766,4,349,534,72,30,34
+52767,4,349,535,73,35,39
+52768,4,198,533,194,15,19
+52769,4,198,534,195,20,24
+52770,4,198,535,195,15,19
+52771,4,199,533,194,15,19
+52772,4,199,534,195,20,24
+52773,4,199,535,195,15,19
+52774,4,200,533,72,15,19
+52775,4,200,534,195,20,24
+52776,4,200,535,73,20,24
+52777,4,283,533,88,20,24
+52778,4,283,534,88,15,19
+52779,4,283,535,89,15,19
+52780,4,316,533,118,20,24
+52781,4,316,534,79,20,24
+52782,4,316,535,119,20,24
+52783,4,279,533,72,35,39
+52784,4,279,534,72,30,34
+52785,4,279,535,73,35,39
+52786,4,249,533,129,15,19
+52787,4,249,534,129,10,14
+52788,4,249,535,129,5,9
+52789,4,235,533,72,20,24
+52790,4,235,534,72,15,29
+52791,4,235,535,73,20,24
+52792,4,280,533,60,10,14
+52793,4,280,534,60,5,9
+52794,4,280,535,61,10,14
+52795,4,242,533,129,15,19
+52796,4,242,534,129,10,14
+52797,4,242,535,130,15,19
+52798,4,189,533,60,20,24
+52799,4,189,534,60,15,19
+52800,4,189,535,61,20,24
+52801,4,269,533,61,35,39
+52802,4,269,534,61,40,44
+52803,4,269,535,60,35,39
+52804,4,263,533,119,35,39
+52805,4,263,534,119,40,44
+52806,4,263,535,118,35,39
+52807,4,237,533,118,20,24
+52808,4,237,534,118,15,19
+52809,4,237,535,119,20,24
+52810,4,237,533,118,20,20
+52811,4,237,534,183,20,20
+52812,4,237,535,119,20,20
+52813,4,239,533,118,20,24
+52814,4,239,534,118,25,29
+52815,4,239,535,119,25,29
+52816,4,240,533,118,20,24
+52817,4,240,534,118,15,19
+52818,4,240,535,119,20,24
+52819,4,224,533,72,20,24
+52820,4,224,534,72,15,19
+52821,4,224,535,73,20,24
+52822,4,284,533,129,20,24
+52823,4,284,534,129,15,19
+52824,4,284,535,129,10,14
+52825,4,202,533,79,15,19
+52826,4,202,534,79,20,24
+52827,4,202,535,79,10,14
+52828,4,203,533,79,15,19
+52829,4,203,534,79,20,24
+52830,4,203,535,80,20,24
+52831,4,211,533,60,20,24
+52832,4,211,534,60,15,19
+52833,4,211,535,61,20,24
+52834,4,298,533,118,10,14
+52835,4,298,534,118,5,9
+52836,4,298,535,119,10,14
+52837,4,300,533,54,10,14
+52838,4,300,534,54,5,9
+52839,4,300,535,55,10,14
+52840,4,303,533,118,15,19
+52841,4,303,534,118,10,14
+52842,4,303,535,119,15,19
+52843,4,304,533,118,15,19
+52844,4,304,534,118,10,14
+52845,4,304,535,119,15,19
+52846,4,276,533,72,25,29
+52847,4,276,534,195,25,29
+52848,4,276,535,73,25,29
+52849,4,306,533,72,25,29
+52850,4,306,534,195,25,29
+52851,4,306,535,73,25,29
+52852,4,277,533,72,35,39
+52853,4,277,534,72,30,34
+52854,4,277,535,73,35,39
+52855,4,278,533,72,35,39
+52856,4,278,534,72,30,34
+52857,4,278,535,73,35,39
+52858,4,312,533,72,35,39
+52859,4,312,534,72,30,34
+52860,4,312,535,73,35,39
+52861,4,313,533,60,10,14
+52862,4,313,534,60,4,9
+52863,4,313,535,61,10,14
+52864,4,314,533,118,10,14
+52865,4,314,534,118,4,9
+52866,4,314,535,119,10,14
+52867,4,315,533,118,10,14
+52868,4,315,534,118,4,9
+52869,4,315,535,119,10,14
+52870,4,287,533,72,30,34
+52871,4,287,534,72,25,29
+52872,4,287,535,73,30,34
+52873,4,288,533,72,20,24
+52874,4,288,534,72,15,19
+52875,4,288,535,73,20,24
+52876,4,289,533,60,40,44
+52877,4,289,534,60,35,39
+52878,4,289,535,61,40,44
+52879,4,187,533,60,20,24
+52880,4,187,534,60,15,19
+52881,4,187,535,61,20,24
+52882,4,188,533,60,20,24
+52883,4,188,534,60,15,19
+52884,4,188,535,61,20,24
+52885,4,192,533,72,15,19
+52886,4,192,534,195,20,24
+52887,4,192,535,73,20,24
+52888,4,205,533,72,20,24
+52889,4,205,534,72,15,19
+52890,4,205,535,73,20,24
+52891,4,206,533,54,20,24
+52892,4,206,534,54,15,19
+52893,4,206,535,55,20,24
+52894,4,225,533,72,20,24
+52895,4,225,534,72,15,19
+52896,4,225,535,73,20,24
+52897,4,226,533,72,20,24
+52898,4,226,534,73,20,24
+52899,4,226,535,226,20,24
+52900,4,236,533,118,20,24
+52901,4,236,534,118,15,19
+52902,4,236,535,119,20,24
+52903,4,241,533,129,20,24
+52904,4,241,534,129,15,19
+52905,4,241,535,129,10,14
+52906,4,243,533,60,25,29
+52907,4,243,534,60,20,24
+52908,4,243,535,61,25,29
+52909,4,251,533,129,20,24
+52910,4,251,534,129,15,19
+52911,4,251,535,129,5,9
+52912,4,193,533,194,15,19
+52913,4,193,534,195,20,24
+52914,4,193,535,195,14,19
+52915,4,227,533,72,20,24
+52916,4,227,534,116,15,19
+52917,4,227,535,73,20,24
+52918,4,230,533,116,15,19
+52919,4,230,534,116,20,24
+52920,4,230,535,73,20,24
+52921,4,232,533,116,15,19
+52922,4,232,534,116,20,24
+52923,4,232,535,73,20,24
+52924,4,186,533,72,20,24
+52925,4,186,534,72,15,19
+52926,4,186,535,73,20,24
+52927,4,253,536,98,15,15
+52928,4,253,537,213,15,15
+52929,4,235,536,98,15,15
+52930,4,235,537,213,15,15
+52931,4,225,536,98,15,15
+52932,4,225,537,213,15,15
+52933,5,253,515,74,3,3
+52934,5,253,516,41,2,2
+52935,5,253,517,74,2,2
+52936,5,253,518,74,4,4
+52937,5,253,519,41,3,3
+52938,5,253,520,41,4,4
+52939,5,253,521,206,4,4
+52940,5,253,515,74,3,3
+52941,5,253,516,206,3,3
+52942,5,253,517,41,2,2
+52943,5,253,518,74,2,2
+52944,5,253,519,206,2,2
+52945,5,253,520,206,4,4
+52946,5,253,521,206,4,4
+52947,5,254,515,74,23,23
+52948,5,254,516,41,23,23
+52949,5,254,517,75,25,25
+52950,5,254,518,202,20,20
+52951,5,254,519,202,25,25
+52952,5,254,520,42,23,23
+52953,5,254,521,42,23,23
+52954,5,204,515,13,5,5
+52955,5,204,516,13,6,6
+52956,5,204,517,14,5,5
+52957,5,204,518,14,6,6
+52958,5,204,519,41,5,5
+52959,5,204,520,46,6,6
+52960,5,204,521,46,6,6
+52961,5,204,515,13,5,5
+52962,5,204,516,14,6,6
+52963,5,204,517,13,5,5
+52964,5,204,518,46,5,5
+52965,5,204,519,41,5,5
+52966,5,204,520,46,6,6
+52967,5,204,521,46,6,6
+52968,5,204,515,43,5,5
+52969,5,204,516,43,6,6
+52970,5,204,517,41,6,6
+52971,5,204,518,46,5,5
+52972,5,204,519,41,5,5
+52973,5,204,520,46,6,6
+52974,5,204,521,46,6,6
+52975,5,317,515,50,15,15
+52976,5,317,516,50,17,17
+52977,5,317,517,50,19,19
+52978,5,317,518,50,13,13
+52979,5,317,519,51,19,19
+52980,5,317,520,51,24,24
+52981,5,317,521,51,29,29
+52982,5,198,515,74,6,6
+52983,5,198,516,19,6,6
+52984,5,198,517,41,5,5
+52985,5,198,518,19,4,4
+52986,5,198,519,41,7,7
+52987,5,198,520,95,6,6
+52988,5,198,521,95,6,6
+52989,5,199,515,74,8,8
+52990,5,199,516,19,8,8
+52991,5,199,517,41,7,7
+52992,5,199,518,95,8,8
+52993,5,199,519,41,9,9
+52994,5,199,520,19,6,6
+52995,5,199,521,19,6,6
+52996,5,200,515,41,22,22
+52997,5,200,516,20,22,22
+52998,5,200,517,42,22,22
+52999,5,200,518,74,21,21
+53000,5,200,519,19,20,20
+53001,5,200,520,95,23,23
+53002,5,200,521,95,23,23
+53003,5,316,515,41,22,22
+53004,5,316,516,20,22,22
+53005,5,316,517,42,22,22
+53006,5,316,518,79,21,21
+53007,5,316,519,19,20,20
+53008,5,316,520,79,23,23
+53009,5,316,521,79,23,23
+53010,5,292,515,104,10,10
+53011,5,292,516,74,10,10
+53012,5,292,517,66,12,12
+53013,5,292,518,41,8,8
+53014,5,292,519,67,14,14
+53015,5,292,520,104,13,13
+53016,5,292,521,104,13,13
+53017,5,293,515,104,12,12
+53018,5,293,516,74,12,12
+53019,5,293,517,95,16,16
+53020,5,293,518,41,10,10
+53021,5,293,519,105,14,14
+53022,5,293,520,115,14,14
+53023,5,293,521,115,14,14
+53024,5,269,515,114,41,41
+53025,5,269,516,77,42,42
+53026,5,269,517,232,42,42
+53027,5,269,518,78,44,44
+53028,5,269,519,84,41,41
+53029,5,269,520,85,43,43
+53030,5,269,521,85,43,43
+53031,5,269,515,114,41,41
+53032,5,269,516,77,42,42
+53033,5,269,517,232,42,42
+53034,5,269,518,78,44,44
+53035,5,269,519,84,41,41
+53036,5,269,520,85,43,43
+53037,5,269,521,85,43,43
+53038,5,269,515,114,41,41
+53039,5,269,516,77,42,42
+53040,5,269,517,232,42,42
+53041,5,269,518,78,44,44
+53042,5,269,519,215,38,38
+53043,5,269,520,215,42,42
+53044,5,269,521,215,42,42
+53045,5,270,515,95,42,42
+53046,5,270,516,232,44,44
+53047,5,270,517,75,43,43
+53048,5,270,518,75,43,43
+53049,5,270,519,42,45,45
+53050,5,270,520,246,20,20
+53051,5,270,521,246,15,15
+53052,5,263,515,195,45,45
+53053,5,263,516,55,48,48
+53054,5,263,517,232,47,47
+53055,5,263,518,195,45,45
+53056,5,263,519,42,48,48
+53057,5,263,520,246,20,20
+53058,5,263,521,246,15,15
+53059,5,263,515,195,45,45
+53060,5,263,516,55,48,48
+53061,5,263,517,232,47,47
+53062,5,263,518,195,45,45
+53063,5,263,519,42,48,48
+53064,5,263,520,246,20,20
+53065,5,263,521,246,15,15
+53066,5,263,515,195,45,45
+53067,5,263,516,55,48,48
+53068,5,263,517,232,47,47
+53069,5,263,518,200,45,45
+53070,5,263,519,42,48,48
+53071,5,263,520,246,20,20
+53072,5,263,521,246,15,15
+53073,5,273,515,42,51,51
+53074,5,273,516,95,48,48
+53075,5,273,517,42,48,48
+53076,5,273,518,232,50,50
+53077,5,273,519,55,51,51
+53078,5,273,520,246,20,20
+53079,5,273,521,246,15,15
+53080,5,237,515,41,13,13
+53081,5,237,516,41,15,15
+53082,5,237,517,66,14,14
+53083,5,237,518,19,14,14
+53084,5,237,519,74,14,14
+53085,5,237,520,19,16,16
+53086,5,237,521,183,15,15
+53087,5,237,515,183,13,13
+53088,5,237,516,41,15,15
+53089,5,237,517,66,14,14
+53090,5,237,518,183,15,15
+53091,5,237,519,74,14,14
+53092,5,237,520,19,16,16
+53093,5,237,521,19,16,16
+53094,5,238,515,74,13,13
+53095,5,238,516,66,13,13
+53096,5,238,517,74,15,15
+53097,5,238,518,19,14,14
+53098,5,238,519,66,15,15
+53099,5,238,520,41,14,14
+53100,5,238,521,41,14,14
+53101,5,240,515,41,15,15
+53102,5,240,516,41,17,17
+53103,5,240,517,66,16,16
+53104,5,240,518,19,16,16
+53105,5,240,519,74,16,16
+53106,5,240,520,20,16,16
+53107,5,240,521,20,16,16
+53108,5,239,515,75,31,31
+53109,5,239,516,67,32,32
+53110,5,239,517,74,31,31
+53111,5,239,518,20,30,30
+53112,5,239,519,66,28,28
+53113,5,239,520,42,30,30
+53114,5,239,521,42,30,30
+53115,5,290,515,41,6,6
+53116,5,290,516,74,8,8
+53117,5,290,517,41,8,8
+53118,5,290,518,46,12,12
+53119,5,290,519,74,10,10
+53120,5,290,520,35,8,8
+53121,5,290,521,35,8,8
+53122,5,207,515,13,10,10
+53123,5,207,516,14,10,10
+53124,5,207,517,191,12,12
+53125,5,207,518,16,12,12
+53126,5,207,519,191,13,13
+53127,5,207,520,16,14,14
+53128,5,207,521,16,14,14
+53129,5,207,515,13,10,10
+53130,5,207,516,14,10,10
+53131,5,207,517,13,12,12
+53132,5,207,518,16,12,12
+53133,5,207,519,16,10,10
+53134,5,207,520,16,14,14
+53135,5,207,521,16,14,14
+53136,5,207,515,163,10,10
+53137,5,207,516,163,10,10
+53138,5,207,517,163,12,12
+53139,5,207,518,163,12,12
+53140,5,207,519,163,10,10
+53141,5,207,520,163,14,14
+53142,5,207,521,163,14,14
+53143,5,202,515,41,5,5
+53144,5,202,516,41,6,6
+53145,5,202,517,41,7,7
+53146,5,202,518,79,6,6
+53147,5,202,519,41,8,8
+53148,5,202,520,79,8,8
+53149,5,202,521,79,8,8
+53150,5,203,515,41,21,21
+53151,5,203,516,41,23,23
+53152,5,203,517,41,19,19
+53153,5,203,518,79,21,21
+53154,5,203,519,42,23,23
+53155,5,203,520,79,23,23
+53156,5,203,521,79,23,23
+53157,5,295,515,16,2,2
+53158,5,295,516,19,2,2
+53159,5,295,517,161,3,3
+53160,5,295,518,16,3,3
+53161,5,295,519,162,6,6
+53162,5,295,520,16,4,4
+53163,5,295,521,16,4,4
+53164,5,295,515,16,2,2
+53165,5,295,516,19,2,2
+53166,5,295,517,161,3,3
+53167,5,295,518,16,3,3
+53168,5,295,519,162,6,6
+53169,5,295,520,16,4,4
+53170,5,295,521,16,4,4
+53171,5,295,515,163,2,2
+53172,5,295,516,19,2,2
+53173,5,295,517,19,3,3
+53174,5,295,518,163,3,3
+53175,5,295,519,19,6,6
+53176,5,295,520,163,4,4
+53177,5,295,521,163,4,4
+53178,5,296,515,13,3,3
+53179,5,296,516,16,3,3
+53180,5,296,517,14,5,5
+53181,5,296,518,16,7,7
+53182,5,296,519,17,7,7
+53183,5,296,520,25,4,4
+53184,5,296,521,25,4,4
+53185,5,296,515,13,3,3
+53186,5,296,516,165,3,3
+53187,5,296,517,14,5,5
+53188,5,296,518,15,7,7
+53189,5,296,519,166,7,7
+53190,5,296,520,25,4,4
+53191,5,296,521,25,4,4
+53192,5,296,515,163,3,3
+53193,5,296,516,163,3,3
+53194,5,296,517,163,5,5
+53195,5,296,518,164,7,7
+53196,5,296,519,164,7,7
+53197,5,296,520,25,4,4
+53198,5,296,521,25,4,4
+53199,5,297,515,21,5,5
+53200,5,297,516,19,5,5
+53201,5,297,517,23,8,8
+53202,5,297,518,39,6,6
+53203,5,297,519,24,10,10
+53204,5,297,520,21,8,8
+53205,5,297,521,21,8,8
+53206,5,297,515,21,5,5
+53207,5,297,516,19,5,5
+53208,5,297,517,23,8,8
+53209,5,297,518,39,6,6
+53210,5,297,519,24,10,10
+53211,5,297,520,21,8,8
+53212,5,297,521,21,8,8
+53213,5,297,515,19,5,5
+53214,5,297,516,41,5,5
+53215,5,297,517,23,8,8
+53216,5,297,518,39,6,6
+53217,5,297,519,24,10,10
+53218,5,297,520,19,8,8
+53219,5,297,521,19,8,8
+53220,5,298,515,21,5,5
+53221,5,298,516,19,5,5
+53222,5,298,517,23,8,8
+53223,5,298,518,39,6,6
+53224,5,298,519,24,10,10
+53225,5,298,520,21,8,8
+53226,5,298,521,21,8,8
+53227,5,298,515,21,5,5
+53228,5,298,516,19,5,5
+53229,5,298,517,23,8,8
+53230,5,298,518,39,6,6
+53231,5,298,519,24,10,10
+53232,5,298,520,21,8,8
+53233,5,298,521,21,8,8
+53234,5,298,515,19,5,5
+53235,5,298,516,41,5,5
+53236,5,298,517,23,8,8
+53237,5,298,518,39,6,6
+53238,5,298,519,24,10,10
+53239,5,298,520,19,8,8
+53240,5,298,521,19,8,8
+53241,5,299,515,16,13,13
+53242,5,299,516,69,13,13
+53243,5,299,517,52,14,14
+53244,5,299,518,16,15,15
+53245,5,299,519,63,12,12
+53246,5,299,520,63,14,14
+53247,5,299,521,63,14,14
+53248,5,299,515,16,13,13
+53249,5,299,516,69,13,13
+53250,5,299,517,52,14,14
+53251,5,299,518,16,15,15
+53252,5,299,519,63,12,12
+53253,5,299,520,63,14,14
+53254,5,299,521,63,14,14
+53255,5,299,515,43,13,13
+53256,5,299,516,52,14,14
+53257,5,299,517,69,13,13
+53258,5,299,518,44,15,15
+53259,5,299,519,63,12,12
+53260,5,299,520,63,14,14
+53261,5,299,521,63,14,14
+53262,5,300,515,16,13,13
+53263,5,300,516,69,13,13
+53264,5,300,517,52,14,14
+53265,5,300,518,81,15,15
+53266,5,300,519,63,12,12
+53267,5,300,520,63,14,14
+53268,5,300,521,63,14,14
+53269,5,300,515,16,13,13
+53270,5,300,516,69,13,13
+53271,5,300,517,52,14,14
+53272,5,300,518,81,15,15
+53273,5,300,519,63,12,12
+53274,5,300,520,63,14,14
+53275,5,300,521,63,14,14
+53276,5,300,515,43,13,13
+53277,5,300,516,52,14,14
+53278,5,300,517,69,13,13
+53279,5,300,518,81,15,15
+53280,5,300,519,63,12,12
+53281,5,300,520,63,14,14
+53282,5,300,521,63,14,14
+53283,5,301,515,52,17,17
+53284,5,301,516,21,17,17
+53285,5,301,517,37,18,18
+53286,5,301,518,20,19,19
+53287,5,301,519,53,19,19
+53288,5,301,520,37,15,15
+53289,5,301,521,37,15,15
+53290,5,301,515,52,17,17
+53291,5,301,516,21,17,17
+53292,5,301,517,37,18,18
+53293,5,301,518,20,19,19
+53294,5,301,519,53,19,19
+53295,5,301,520,19,15,15
+53296,5,301,521,19,15,15
+53297,5,301,515,52,17,17
+53298,5,301,516,198,17,17
+53299,5,301,517,37,18,18
+53300,5,301,518,20,19,19
+53301,5,301,519,53,19,19
+53302,5,301,520,228,15,15
+53303,5,301,521,228,15,15
+53304,5,302,515,52,17,17
+53305,5,302,516,17,19,19
+53306,5,302,517,63,15,15
+53307,5,302,518,37,18,18
+53308,5,302,519,19,17,17
+53309,5,302,520,64,15,15
+53310,5,302,521,64,15,15
+53311,5,302,515,52,17,17
+53312,5,302,516,17,19,19
+53313,5,302,517,63,15,15
+53314,5,302,518,37,18,18
+53315,5,302,519,19,17,17
+53316,5,302,520,64,15,15
+53317,5,302,521,64,15,15
+53318,5,302,515,52,17,17
+53319,5,302,516,93,20,20
+53320,5,302,517,63,15,15
+53321,5,302,518,164,19,19
+53322,5,302,519,37,18,18
+53323,5,302,520,64,15,15
+53324,5,302,521,64,15,15
+53325,5,303,515,19,13,13
+53326,5,303,516,19,15,15
+53327,5,303,517,21,13,13
+53328,5,303,518,20,15,15
+53329,5,303,519,22,15,15
+53330,5,303,520,20,15,15
+53331,5,303,521,20,15,15
+53332,5,303,515,19,13,13
+53333,5,303,516,19,15,15
+53334,5,303,517,21,13,13
+53335,5,303,518,20,15,15
+53336,5,303,519,22,15,15
+53337,5,303,520,20,15,15
+53338,5,303,521,20,15,15
+53339,5,303,515,19,13,13
+53340,5,303,516,19,15,15
+53341,5,303,517,20,15,15
+53342,5,303,518,19,13,13
+53343,5,303,519,20,15,15
+53344,5,303,520,20,15,15
+53345,5,303,521,20,15,15
+53346,5,304,515,21,16,16
+53347,5,304,516,100,17,17
+53348,5,304,517,20,17,17
+53349,5,304,518,22,18,18
+53350,5,304,519,125,15,15
+53351,5,304,520,125,17,17
+53352,5,304,521,125,17,17
+53353,5,304,515,21,16,16
+53354,5,304,516,100,17,17
+53355,5,304,517,20,16,16
+53356,5,304,518,22,18,18
+53357,5,304,519,195,16,16
+53358,5,304,520,125,15,15
+53359,5,304,521,125,15,15
+53360,5,304,515,195,16,16
+53361,5,304,516,100,17,17
+53362,5,304,517,20,16,16
+53363,5,304,518,195,17,17
+53364,5,304,519,20,18,18
+53365,5,304,520,125,15,15
+53366,5,304,521,125,15,15
+53367,5,305,515,96,14,14
+53368,5,305,516,19,15,15
+53369,5,305,517,81,15,15
+53370,5,305,518,96,16,16
+53371,5,305,519,97,16,16
+53372,5,305,520,97,16,16
+53373,5,305,521,97,16,16
+53374,5,306,515,30,23,23
+53375,5,306,516,33,23,23
+53376,5,306,517,17,25,25
+53377,5,306,518,187,22,22
+53378,5,306,519,187,24,24
+53379,5,306,520,187,24,24
+53380,5,306,521,113,25,25
+53381,5,306,515,30,23,23
+53382,5,306,516,33,23,23
+53383,5,306,517,17,25,25
+53384,5,306,518,187,22,22
+53385,5,306,519,187,24,24
+53386,5,306,520,195,22,22
+53387,5,306,521,113,25,25
+53388,5,306,515,30,23,23
+53389,5,306,516,33,23,23
+53390,5,306,517,164,25,25
+53391,5,306,518,195,22,22
+53392,5,306,519,195,24,24
+53393,5,306,520,195,24,24
+53394,5,306,521,113,25,25
+53395,5,307,515,30,23,23
+53396,5,307,516,33,23,23
+53397,5,307,517,17,25,25
+53398,5,307,518,187,24,24
+53399,5,307,519,188,26,26
+53400,5,307,520,188,26,26
+53401,5,307,521,113,25,25
+53402,5,307,515,30,23,23
+53403,5,307,516,33,23,23
+53404,5,307,517,17,25,25
+53405,5,307,518,187,24,24
+53406,5,307,519,188,26,26
+53407,5,307,520,195,22,22
+53408,5,307,521,113,25,25
+53409,5,307,515,30,23,23
+53410,5,307,516,33,23,23
+53411,5,307,517,164,25,25
+53412,5,307,518,195,22,22
+53413,5,307,519,195,24,24
+53414,5,307,520,195,24,24
+53415,5,307,521,113,25,25
+53416,5,308,515,30,23,23
+53417,5,308,516,33,23,23
+53418,5,308,517,17,25,25
+53419,5,308,518,187,22,22
+53420,5,308,519,187,24,24
+53421,5,308,520,187,24,24
+53422,5,308,521,113,25,25
+53423,5,308,515,30,23,23
+53424,5,308,516,33,23,23
+53425,5,308,517,17,25,25
+53426,5,308,518,187,22,22
+53427,5,308,519,187,24,24
+53428,5,308,520,195,22,22
+53429,5,308,521,113,25,25
+53430,5,308,515,30,23,23
+53431,5,308,516,33,23,23
+53432,5,308,517,164,25,25
+53433,5,308,518,195,22,22
+53434,5,308,519,195,24,24
+53435,5,308,520,195,24,24
+53436,5,308,521,113,25,25
+53437,5,309,515,88,26,26
+53438,5,309,516,22,27,27
+53439,5,309,517,88,28,28
+53440,5,309,518,22,29,29
+53441,5,309,519,218,27,27
+53442,5,309,520,89,30,30
+53443,5,309,521,89,30,30
+53444,5,309,515,88,26,26
+53445,5,309,516,22,27,27
+53446,5,309,517,88,28,28
+53447,5,309,518,22,29,29
+53448,5,309,519,218,27,27
+53449,5,309,520,89,30,30
+53450,5,309,521,89,30,30
+53451,5,309,515,88,26,26
+53452,5,309,516,88,27,27
+53453,5,309,517,88,28,28
+53454,5,309,518,198,28,28
+53455,5,309,519,218,27,27
+53456,5,309,520,89,30,30
+53457,5,309,521,89,30,30
+53458,5,310,515,22,28,28
+53459,5,310,516,218,27,27
+53460,5,310,517,88,29,29
+53461,5,310,518,22,30,30
+53462,5,310,519,218,29,29
+53463,5,310,520,89,32,32
+53464,5,310,521,89,32,32
+53465,5,310,515,22,28,28
+53466,5,310,516,88,27,27
+53467,5,310,517,88,29,29
+53468,5,310,518,22,30,30
+53469,5,310,519,218,29,29
+53470,5,310,520,89,32,32
+53471,5,310,521,89,32,32
+53472,5,310,515,88,28,28
+53473,5,310,516,88,27,27
+53474,5,310,517,88,29,29
+53475,5,310,518,89,30,30
+53476,5,310,519,218,29,29
+53477,5,310,520,89,32,32
+53478,5,310,521,89,32,32
+53479,5,311,515,88,26,26
+53480,5,311,516,22,27,27
+53481,5,311,517,88,28,28
+53482,5,311,518,22,29,29
+53483,5,311,519,218,27,27
+53484,5,311,520,89,30,30
+53485,5,311,521,89,30,30
+53486,5,311,515,88,26,26
+53487,5,311,516,22,27,27
+53488,5,311,517,88,28,28
+53489,5,311,518,22,29,29
+53490,5,311,519,218,27,27
+53491,5,311,520,89,30,30
+53492,5,311,521,89,30,30
+53493,5,311,515,88,26,26
+53494,5,311,516,88,27,27
+53495,5,311,517,88,28,28
+53496,5,311,518,198,28,28
+53497,5,311,519,218,27,27
+53498,5,311,520,89,30,30
+53499,5,311,521,89,30,30
+53500,5,312,515,114,30,30
+53501,5,312,516,114,25,25
+53502,5,312,517,114,35,35
+53503,5,312,518,114,20,20
+53504,5,312,519,122,28,28
+53505,5,312,520,122,30,30
+53506,5,312,521,122,30,30
+53507,5,312,515,114,30,30
+53508,5,312,516,114,25,25
+53509,5,312,517,114,35,35
+53510,5,312,518,114,20,20
+53511,5,312,519,114,30,30
+53512,5,312,520,122,28,28
+53513,5,312,521,122,28,28
+53514,5,312,515,114,30,30
+53515,5,312,516,114,25,25
+53516,5,312,517,114,35,35
+53517,5,312,518,114,20,20
+53518,5,312,519,114,30,30
+53519,5,312,520,122,28,28
+53520,5,312,521,122,28,28
+53521,5,313,515,19,3,3
+53522,5,313,516,21,3,3
+53523,5,313,517,21,5,5
+53524,5,313,518,84,4,4
+53525,5,313,519,77,6,6
+53526,5,313,520,22,7,7
+53527,5,313,521,22,7,7
+53528,5,313,515,19,3,3
+53529,5,313,516,21,3,3
+53530,5,313,517,21,5,5
+53531,5,313,518,84,4,4
+53532,5,313,519,77,6,6
+53533,5,313,520,22,7,7
+53534,5,313,521,22,7,7
+53535,5,313,515,19,3,3
+53536,5,313,516,19,3,3
+53537,5,313,517,19,5,5
+53538,5,313,518,19,4,4
+53539,5,313,519,77,6,6
+53540,5,313,520,19,7,7
+53541,5,313,521,19,7,7
+53542,5,314,515,69,8,8
+53543,5,314,516,191,10,10
+53544,5,314,517,63,9,9
+53545,5,314,518,70,12,12
+53546,5,314,519,69,10,10
+53547,5,314,520,70,14,14
+53548,5,314,521,70,14,14
+53549,5,314,515,69,8,8
+53550,5,314,516,69,10,10
+53551,5,314,517,63,9,9
+53552,5,314,518,70,12,12
+53553,5,314,519,48,8,8
+53554,5,314,520,70,14,14
+53555,5,314,521,70,14,14
+53556,5,314,515,48,8,8
+53557,5,314,516,43,10,10
+53558,5,314,517,63,9,9
+53559,5,314,518,70,13,13
+53560,5,314,519,69,10,10
+53561,5,314,520,49,10,10
+53562,5,314,521,49,10,10
+53563,5,315,515,16,8,8
+53564,5,315,516,69,10,10
+53565,5,315,517,16,10,10
+53566,5,315,518,63,9,9
+53567,5,315,519,17,12,12
+53568,5,315,520,70,14,14
+53569,5,315,521,70,14,14
+53570,5,315,515,16,8,8
+53571,5,315,516,69,10,10
+53572,5,315,517,48,8,8
+53573,5,315,518,63,9,9
+53574,5,315,519,17,10,10
+53575,5,315,520,70,14,14
+53576,5,315,521,70,14,14
+53577,5,315,515,48,8,8
+53578,5,315,516,43,10,10
+53579,5,315,517,49,10,10
+53580,5,315,518,63,9,9
+53581,5,315,519,70,14,14
+53582,5,315,520,69,10,10
+53583,5,315,521,69,10,10
+53584,5,287,515,84,28,28
+53585,5,287,516,20,28,28
+53586,5,287,517,77,32,32
+53587,5,287,518,84,30,30
+53588,5,287,519,20,30,30
+53589,5,287,520,24,30,30
+53590,5,287,521,24,30,30
+53591,5,287,515,84,28,28
+53592,5,287,516,20,28,28
+53593,5,287,517,77,32,32
+53594,5,287,518,84,30,30
+53595,5,287,519,24,30,30
+53596,5,287,520,20,30,30
+53597,5,287,521,195,30,30
+53598,5,287,515,20,28,28
+53599,5,287,516,20,28,28
+53600,5,287,517,77,32,32
+53601,5,287,518,20,30,30
+53602,5,287,519,195,30,30
+53603,5,287,520,24,30,30
+53604,5,287,521,24,30,30
+53605,5,288,515,84,28,28
+53606,5,288,516,24,28,28
+53607,5,288,517,84,30,30
+53608,5,288,518,20,30,30
+53609,5,288,519,77,32,32
+53610,5,288,520,85,30,30
+53611,5,288,521,85,30,30
+53612,5,288,515,84,28,28
+53613,5,288,516,24,28,28
+53614,5,288,517,84,30,30
+53615,5,288,518,195,28,28
+53616,5,288,519,77,32,32
+53617,5,288,520,85,30,30
+53618,5,288,521,85,30,30
+53619,5,288,515,195,28,28
+53620,5,288,516,24,28,28
+53621,5,288,517,195,30,30
+53622,5,288,518,20,30,30
+53623,5,288,519,77,32,32
+53624,5,288,520,195,32,32
+53625,5,288,521,195,32,32
+53626,5,289,515,114,39,39
+53627,5,289,516,77,40,40
+53628,5,289,517,232,40,40
+53629,5,289,518,78,42,42
+53630,5,289,519,84,41,41
+53631,5,289,520,85,43,43
+53632,5,289,521,85,43,43
+53633,5,289,515,114,39,39
+53634,5,289,516,77,40,40
+53635,5,289,517,232,40,40
+53636,5,289,518,78,42,42
+53637,5,289,519,84,41,41
+53638,5,289,520,85,43,43
+53639,5,289,521,85,43,43
+53640,5,289,515,114,39,39
+53641,5,289,516,77,40,40
+53642,5,289,517,232,40,40
+53643,5,289,518,215,40,40
+53644,5,289,519,78,42,42
+53645,5,289,520,78,42,42
+53646,5,289,521,78,42,42
+53647,5,185,515,16,2,2
+53648,5,185,516,161,3,3
+53649,5,185,517,16,3,3
+53650,5,185,518,161,2,2
+53651,5,185,519,19,4,4
+53652,5,185,520,16,4,4
+53653,5,185,521,16,4,4
+53654,5,185,515,16,2,2
+53655,5,185,516,161,3,3
+53656,5,185,517,16,3,3
+53657,5,185,518,161,2,2
+53658,5,185,519,19,4,4
+53659,5,185,520,16,4,4
+53660,5,185,521,16,4,4
+53661,5,185,515,163,2,2
+53662,5,185,516,163,3,3
+53663,5,185,517,163,3,3
+53664,5,185,518,19,2,2
+53665,5,185,519,19,4,4
+53666,5,185,520,163,4,4
+53667,5,185,521,163,4,4
+53668,5,187,515,16,2,2
+53669,5,187,516,13,3,3
+53670,5,187,517,16,4,4
+53671,5,187,518,14,4,4
+53672,5,187,519,13,4,4
+53673,5,187,520,14,5,5
+53674,5,187,521,14,5,5
+53675,5,187,515,165,3,3
+53676,5,187,516,13,3,3
+53677,5,187,517,13,4,4
+53678,5,187,518,14,4,4
+53679,5,187,519,16,4,4
+53680,5,187,520,16,4,4
+53681,5,187,521,16,4,4
+53682,5,187,515,163,2,2
+53683,5,187,516,19,3,3
+53684,5,187,517,163,4,4
+53685,5,187,518,19,4,4
+53686,5,187,519,163,4,4
+53687,5,187,520,163,4,4
+53688,5,187,521,163,4,4
+53689,5,188,515,16,3,3
+53690,5,188,516,13,4,4
+53691,5,188,517,69,3,3
+53692,5,188,518,14,5,5
+53693,5,188,519,13,5,5
+53694,5,188,520,14,6,6
+53695,5,188,521,14,6,6
+53696,5,188,515,165,4,4
+53697,5,188,516,13,4,4
+53698,5,188,517,69,3,3
+53699,5,188,518,14,5,5
+53700,5,188,519,16,5,5
+53701,5,188,520,16,5,5
+53702,5,188,521,16,5,5
+53703,5,188,515,163,3,3
+53704,5,188,516,19,4,4
+53705,5,188,517,69,3,3
+53706,5,188,518,19,5,5
+53707,5,188,519,163,5,5
+53708,5,188,520,163,5,5
+53709,5,188,521,163,5,5
+53710,5,192,515,69,6,6
+53711,5,192,516,23,4,4
+53712,5,192,517,179,6,6
+53713,5,192,518,187,6,6
+53714,5,192,519,19,6,6
+53715,5,192,520,19,8,8
+53716,5,192,521,19,8,8
+53717,5,192,515,69,6,6
+53718,5,192,516,23,4,4
+53719,5,192,517,179,6,6
+53720,5,192,518,187,6,6
+53721,5,192,519,19,6,6
+53722,5,192,520,194,4,4
+53723,5,192,521,41,4,4
+53724,5,192,515,194,6,6
+53725,5,192,516,23,4,4
+53726,5,192,517,69,6,6
+53727,5,192,518,179,6,6
+53728,5,192,519,194,8,8
+53729,5,192,520,41,8,8
+53730,5,192,521,41,8,8
+53731,5,201,515,187,6,6
+53732,5,201,516,23,7,7
+53733,5,201,517,21,6,6
+53734,5,201,518,19,6,6
+53735,5,201,519,187,8,8
+53736,5,201,520,19,8,8
+53737,5,201,521,19,8,8
+53738,5,201,515,187,6,6
+53739,5,201,516,23,7,7
+53740,5,201,517,21,6,6
+53741,5,201,518,19,6,6
+53742,5,201,519,187,8,8
+53743,5,201,520,41,4,4
+53744,5,201,521,41,4,4
+53745,5,201,515,41,6,6
+53746,5,201,516,23,7,7
+53747,5,201,517,19,6,6
+53748,5,201,518,19,6,6
+53749,5,201,519,41,8,8
+53750,5,201,520,41,8,8
+53751,5,201,521,41,8,8
+53752,5,205,515,96,10,10
+53753,5,205,516,19,11,11
+53754,5,205,517,96,12,12
+53755,5,205,518,63,10,10
+53756,5,205,519,19,13,13
+53757,5,205,520,132,10,10
+53758,5,205,521,132,10,10
+53759,5,206,515,32,12,12
+53760,5,206,516,29,12,12
+53761,5,206,517,96,14,14
+53762,5,206,518,63,10,10
+53763,5,206,519,16,14,14
+53764,5,206,520,132,10,10
+53765,5,206,521,193,12,12
+53766,5,206,515,32,12,12
+53767,5,206,516,29,12,12
+53768,5,206,517,96,14,14
+53769,5,206,518,63,10,10
+53770,5,206,519,16,14,14
+53771,5,206,520,132,10,10
+53772,5,206,521,193,12,12
+53773,5,206,515,32,12,12
+53774,5,206,516,29,12,12
+53775,5,206,517,96,14,14
+53776,5,206,518,63,10,10
+53777,5,206,519,163,14,14
+53778,5,206,520,132,10,10
+53779,5,206,521,193,12,12
+53780,5,206,515,32,12,12
+53781,5,206,516,29,12,12
+53782,5,206,517,193,12,12
+53783,5,206,518,193,14,14
+53784,5,206,519,16,14,14
+53785,5,206,520,132,10,10
+53786,5,206,521,132,10,10
+53787,5,209,515,32,12,12
+53788,5,209,516,29,12,12
+53789,5,209,517,16,14,14
+53790,5,209,518,37,13,13
+53791,5,209,519,234,13,13
+53792,5,209,520,37,15,15
+53793,5,209,521,37,15,15
+53794,5,209,515,32,12,12
+53795,5,209,516,29,12,12
+53796,5,209,517,16,13,13
+53797,5,209,518,37,13,13
+53798,5,209,519,234,13,13
+53799,5,209,520,16,15,15
+53800,5,209,521,16,15,15
+53801,5,209,515,32,12,12
+53802,5,209,516,29,12,12
+53803,5,209,517,163,13,13
+53804,5,209,518,37,13,13
+53805,5,209,519,234,13,13
+53806,5,209,520,163,15,15
+53807,5,209,521,163,15,15
+53808,5,210,515,16,13,13
+53809,5,210,516,234,15,15
+53810,5,210,517,16,15,15
+53811,5,210,518,37,14,14
+53812,5,210,519,17,15,15
+53813,5,210,520,37,16,16
+53814,5,210,521,37,16,16
+53815,5,210,515,165,13,13
+53816,5,210,516,234,15,15
+53817,5,210,517,16,15,15
+53818,5,210,518,37,14,14
+53819,5,210,519,165,15,15
+53820,5,210,520,165,15,15
+53821,5,210,521,165,15,15
+53822,5,210,515,163,13,13
+53823,5,210,516,234,15,15
+53824,5,210,517,163,15,15
+53825,5,210,518,37,14,14
+53826,5,210,519,163,15,15
+53827,5,210,520,163,15,15
+53828,5,210,521,163,15,15
+53829,5,222,515,52,16,16
+53830,5,222,516,20,16,16
+53831,5,222,517,81,16,16
+53832,5,222,518,83,16,16
+53833,5,222,519,241,13,13
+53834,5,222,520,128,13,13
+53835,5,222,521,209,13,13
+53836,5,222,515,52,16,16
+53837,5,222,516,20,16,16
+53838,5,222,517,81,16,16
+53839,5,222,518,83,16,16
+53840,5,222,519,241,13,13
+53841,5,222,520,128,13,13
+53842,5,222,521,209,13,13
+53843,5,222,515,19,16,16
+53844,5,222,516,20,16,16
+53845,5,222,517,81,16,16
+53846,5,222,518,52,16,16
+53847,5,222,519,241,13,13
+53848,5,222,520,128,13,13
+53849,5,222,521,209,13,13
+53850,5,222,515,209,16,16
+53851,5,222,516,20,16,16
+53852,5,222,517,81,16,16
+53853,5,222,518,83,16,16
+53854,5,222,519,241,13,13
+53855,5,222,520,128,13,13
+53856,5,222,521,128,13,13
+53857,5,223,515,52,16,16
+53858,5,223,516,20,17,17
+53859,5,223,517,81,16,16
+53860,5,223,518,83,16,16
+53861,5,223,519,241,15,15
+53862,5,223,520,128,15,15
+53863,5,223,521,128,15,15
+53864,5,223,515,52,16,16
+53865,5,223,516,20,17,17
+53866,5,223,517,81,16,16
+53867,5,223,518,83,16,16
+53868,5,223,519,241,15,15
+53869,5,223,520,128,15,15
+53870,5,223,521,128,15,15
+53871,5,223,515,19,16,16
+53872,5,223,516,20,17,17
+53873,5,223,517,81,16,16
+53874,5,223,518,52,16,16
+53875,5,223,519,241,15,15
+53876,5,223,520,128,15,15
+53877,5,223,521,128,15,15
+53878,5,236,515,179,13,13
+53879,5,236,516,21,14,14
+53880,5,236,517,179,15,15
+53881,5,236,518,21,16,16
+53882,5,236,519,180,15,15
+53883,5,236,520,180,17,17
+53884,5,236,521,180,17,17
+53885,5,236,515,179,13,13
+53886,5,236,516,21,14,14
+53887,5,236,517,179,15,15
+53888,5,236,518,21,16,16
+53889,5,236,519,180,15,15
+53890,5,236,520,180,17,17
+53891,5,236,521,180,17,17
+53892,5,236,515,179,13,13
+53893,5,236,516,41,14,14
+53894,5,236,517,179,15,15
+53895,5,236,518,41,16,16
+53896,5,236,519,180,15,15
+53897,5,236,520,180,17,17
+53898,5,236,521,180,17,17
+53899,5,241,515,180,15,15
+53900,5,241,516,203,15,15
+53901,5,241,517,17,17,17
+53902,5,241,518,179,15,15
+53903,5,241,519,180,17,17
+53904,5,241,520,180,17,17
+53905,5,241,521,180,17,17
+53906,5,241,515,180,15,15
+53907,5,241,516,203,15,15
+53908,5,241,517,17,17,17
+53909,5,241,518,179,15,15
+53910,5,241,519,48,16,16
+53911,5,241,520,17,17,17
+53912,5,241,521,17,17,17
+53913,5,241,515,180,15,15
+53914,5,241,516,203,15,15
+53915,5,241,517,164,17,17
+53916,5,241,518,48,16,16
+53917,5,241,519,179,15,15
+53918,5,241,520,48,16,16
+53919,5,241,521,48,16,16
+53920,5,243,515,114,23,23
+53921,5,243,516,70,22,22
+53922,5,243,517,69,22,22
+53923,5,243,518,108,24,24
+53924,5,243,519,70,24,24
+53925,5,243,520,108,26,26
+53926,5,243,521,108,26,26
+53927,5,251,515,74,23,23
+53928,5,251,516,75,23,23
+53929,5,251,517,75,24,24
+53930,5,251,518,231,20,20
+53931,5,251,519,75,25,25
+53932,5,251,520,227,27,27
+53933,5,251,521,227,27,27
+53934,5,252,515,74,3,3
+53935,5,252,516,21,2,2
+53936,5,252,517,19,2,2
+53937,5,252,518,74,2,2
+53938,5,252,519,21,3,3
+53939,5,252,520,39,3,3
+53940,5,252,521,39,5,5
+53941,5,252,515,74,3,3
+53942,5,252,516,21,2,2
+53943,5,252,517,19,2,2
+53944,5,252,518,74,2,2
+53945,5,252,519,21,3,3
+53946,5,252,520,39,3,3
+53947,5,252,521,39,5,5
+53948,5,252,515,74,3,3
+53949,5,252,516,19,3,3
+53950,5,252,517,19,2,2
+53951,5,252,518,74,2,2
+53952,5,252,519,74,4,4
+53953,5,252,520,39,3,3
+53954,5,252,521,39,5,5
+53955,5,244,515,220,21,21
+53956,5,244,516,42,22,22
+53957,5,244,517,225,22,22
+53958,5,244,518,220,23,23
+53959,5,244,519,124,22,22
+53960,5,244,520,124,20,20
+53961,5,244,521,124,20,20
+53962,5,244,515,220,21,21
+53963,5,244,516,42,22,22
+53964,5,244,517,225,22,22
+53965,5,244,518,220,23,23
+53966,5,244,519,41,22,22
+53967,5,244,520,124,22,22
+53968,5,244,521,124,22,22
+53969,5,244,515,220,21,21
+53970,5,244,516,42,22,22
+53971,5,244,517,225,22,22
+53972,5,244,518,220,23,23
+53973,5,244,519,41,22,22
+53974,5,244,520,124,22,22
+53975,5,244,521,124,22,22
+53976,5,245,515,220,21,21
+53977,5,245,516,42,22,22
+53978,5,245,517,225,22,22
+53979,5,245,518,220,23,23
+53980,5,245,519,124,22,22
+53981,5,245,520,124,20,20
+53982,5,245,521,124,20,20
+53983,5,245,515,220,21,21
+53984,5,245,516,42,22,22
+53985,5,245,517,225,22,22
+53986,5,245,518,220,23,23
+53987,5,245,519,41,22,22
+53988,5,245,520,124,22,22
+53989,5,245,521,124,22,22
+53990,5,245,515,220,21,21
+53991,5,245,516,42,22,22
+53992,5,245,517,225,22,22
+53993,5,245,518,220,23,23
+53994,5,245,519,41,22,22
+53995,5,245,520,124,22,22
+53996,5,245,521,124,22,22
+53997,5,246,515,220,22,22
+53998,5,246,516,42,23,23
+53999,5,246,517,225,23,23
+54000,5,246,518,220,24,24
+54001,5,246,519,124,23,23
+54002,5,246,520,124,21,21
+54003,5,246,521,124,21,21
+54004,5,246,515,220,22,22
+54005,5,246,516,42,23,23
+54006,5,246,517,225,23,23
+54007,5,246,518,220,24,24
+54008,5,246,519,41,23,23
+54009,5,246,520,124,23,23
+54010,5,246,521,124,23,23
+54011,5,246,515,220,22,22
+54012,5,246,516,42,23,23
+54013,5,246,517,225,23,23
+54014,5,246,518,220,24,24
+54015,5,246,519,41,23,23
+54016,5,246,520,124,23,23
+54017,5,246,521,124,23,23
+54018,5,247,515,220,23,23
+54019,5,247,516,42,24,24
+54020,5,247,517,225,24,24
+54021,5,247,518,220,25,25
+54022,5,247,519,124,24,24
+54023,5,247,520,124,22,22
+54024,5,247,521,124,22,22
+54025,5,247,515,220,23,23
+54026,5,247,516,42,24,24
+54027,5,247,517,225,24,24
+54028,5,247,518,220,25,25
+54029,5,247,519,41,24,24
+54030,5,247,520,124,24,24
+54031,5,247,521,124,24,24
+54032,5,247,515,220,23,23
+54033,5,247,516,42,24,24
+54034,5,247,517,225,24,24
+54035,5,247,518,220,25,25
+54036,5,247,519,41,24,24
+54037,5,247,520,124,24,24
+54038,5,247,521,124,24,24
+54039,5,294,515,75,32,32
+54040,5,294,516,42,32,32
+54041,5,294,517,232,33,33
+54042,5,294,518,95,34,34
+54043,5,294,519,95,36,36
+54044,5,294,520,111,35,35
+54045,5,294,521,111,35,35
+54046,5,318,515,75,32,32
+54047,5,318,516,42,32,32
+54048,5,318,517,232,33,33
+54049,5,318,518,95,34,34
+54050,5,318,519,95,36,36
+54051,5,318,520,111,35,35
+54052,5,318,521,111,35,35
+54053,5,319,515,75,32,32
+54054,5,319,516,42,32,32
+54055,5,319,517,232,33,33
+54056,5,319,518,95,34,34
+54057,5,319,519,95,36,36
+54058,5,319,520,111,35,35
+54059,5,319,521,111,35,35
+54060,5,193,515,177,20,20
+54061,5,193,516,177,22,22
+54062,5,193,517,177,18,18
+54063,5,193,518,177,24,24
+54064,5,193,519,235,20,20
+54065,5,193,520,235,22,22
+54066,5,193,521,235,22,22
+54067,5,194,515,201,5,5
+54068,5,194,516,201,5,5
+54069,5,194,517,201,5,5
+54070,5,194,518,201,5,5
+54071,5,194,519,201,5,5
+54072,5,194,520,201,5,5
+54073,5,194,521,201,5,5
+54074,5,195,515,201,5,5
+54075,5,195,516,201,5,5
+54076,5,195,517,201,5,5
+54077,5,195,518,201,5,5
+54078,5,195,519,201,5,5
+54079,5,195,520,201,5,5
+54080,5,195,521,201,5,5
+54081,5,196,515,201,5,5
+54082,5,196,516,201,5,5
+54083,5,196,517,201,5,5
+54084,5,196,518,201,5,5
+54085,5,196,519,201,5,5
+54086,5,196,520,201,5,5
+54087,5,196,521,201,5,5
+54088,5,197,515,201,5,5
+54089,5,197,516,201,5,5
+54090,5,197,517,201,5,5
+54091,5,197,518,201,5,5
+54092,5,197,519,201,5,5
+54093,5,197,520,201,5,5
+54094,5,197,521,201,5,5
+54095,5,212,515,19,13,13
+54096,5,212,516,109,14,14
+54097,5,212,517,19,15,15
+54098,5,212,518,41,14,14
+54099,5,212,519,109,16,16
+54100,5,212,520,20,15,15
+54101,5,212,521,20,15,15
+54102,5,213,515,19,14,14
+54103,5,213,516,109,14,14
+54104,5,213,517,109,16,16
+54105,5,213,518,126,16,16
+54106,5,213,519,41,15,15
+54107,5,213,520,126,14,14
+54108,5,213,521,126,14,14
+54109,5,213,515,19,14,14
+54110,5,213,516,109,14,14
+54111,5,213,517,109,16,16
+54112,5,213,518,19,16,16
+54113,5,213,519,41,15,15
+54114,5,213,520,126,14,14
+54115,5,213,521,126,14,14
+54116,5,213,515,19,14,14
+54117,5,213,516,109,14,14
+54118,5,213,517,109,16,16
+54119,5,213,518,19,16,16
+54120,5,213,519,41,15,15
+54121,5,213,520,126,14,14
+54122,5,213,521,126,14,14
+54123,5,190,515,19,3,3
+54124,5,190,516,19,4,4
+54125,5,190,517,19,5,5
+54126,5,190,518,19,3,3
+54127,5,190,519,19,6,6
+54128,5,190,520,19,5,5
+54129,5,190,521,19,5,5
+54130,5,190,515,19,3,3
+54131,5,190,516,19,4,4
+54132,5,190,517,19,5,5
+54133,5,190,518,19,3,3
+54134,5,190,519,19,6,6
+54135,5,190,520,19,5,5
+54136,5,190,521,19,5,5
+54137,5,190,515,92,3,3
+54138,5,190,516,92,4,4
+54139,5,190,517,92,5,5
+54140,5,190,518,19,3,3
+54141,5,190,519,92,6,6
+54142,5,190,520,19,5,5
+54143,5,190,521,19,5,5
+54144,5,191,515,19,3,3
+54145,5,191,516,19,4,4
+54146,5,191,517,19,5,5
+54147,5,191,518,19,3,3
+54148,5,191,519,19,6,6
+54149,5,191,520,19,5,5
+54150,5,191,521,19,5,5
+54151,5,191,515,19,3,3
+54152,5,191,516,19,4,4
+54153,5,191,517,19,5,5
+54154,5,191,518,19,3,3
+54155,5,191,519,19,6,6
+54156,5,191,520,19,5,5
+54157,5,191,521,19,5,5
+54158,5,191,515,92,3,3
+54159,5,191,516,92,4,4
+54160,5,191,517,92,5,5
+54161,5,191,518,19,3,3
+54162,5,191,519,92,6,6
+54163,5,191,520,19,5,5
+54164,5,191,521,19,5,5
+54165,5,214,515,19,20,20
+54166,5,214,516,19,21,21
+54167,5,214,517,19,22,22
+54168,5,214,518,19,22,22
+54169,5,214,519,19,23,23
+54170,5,214,520,19,24,24
+54171,5,214,521,19,24,24
+54172,5,214,515,19,20,20
+54173,5,214,516,19,21,21
+54174,5,214,517,19,22,22
+54175,5,214,518,19,22,22
+54176,5,214,519,19,23,23
+54177,5,214,520,19,24,24
+54178,5,214,521,19,24,24
+54179,5,214,515,92,20,20
+54180,5,214,516,92,21,21
+54181,5,214,517,92,22,22
+54182,5,214,518,19,22,22
+54183,5,214,519,19,23,23
+54184,5,214,520,19,24,24
+54185,5,214,521,19,24,24
+54186,5,215,515,19,20,20
+54187,5,215,516,19,21,21
+54188,5,215,517,19,22,22
+54189,5,215,518,19,22,22
+54190,5,215,519,19,23,23
+54191,5,215,520,19,24,24
+54192,5,215,521,19,24,24
+54193,5,215,515,19,20,20
+54194,5,215,516,19,21,21
+54195,5,215,517,19,22,22
+54196,5,215,518,19,22,22
+54197,5,215,519,19,23,23
+54198,5,215,520,19,24,24
+54199,5,215,521,19,24,24
+54200,5,215,515,92,20,20
+54201,5,215,516,92,21,21
+54202,5,215,517,92,22,22
+54203,5,215,518,19,22,22
+54204,5,215,519,19,23,23
+54205,5,215,520,19,24,24
+54206,5,215,521,19,24,24
+54207,5,216,515,19,20,20
+54208,5,216,516,19,21,21
+54209,5,216,517,19,22,22
+54210,5,216,518,19,22,22
+54211,5,216,519,19,23,23
+54212,5,216,520,19,24,24
+54213,5,216,521,19,24,24
+54214,5,216,515,19,20,20
+54215,5,216,516,19,21,21
+54216,5,216,517,19,22,22
+54217,5,216,518,19,22,22
+54218,5,216,519,19,23,23
+54219,5,216,520,19,24,24
+54220,5,216,521,19,24,24
+54221,5,216,515,92,20,20
+54222,5,216,516,92,21,21
+54223,5,216,517,92,22,22
+54224,5,216,518,19,22,22
+54225,5,216,519,19,23,23
+54226,5,216,520,19,24,24
+54227,5,216,521,19,24,24
+54228,5,217,515,19,20,20
+54229,5,217,516,19,21,21
+54230,5,217,517,19,22,22
+54231,5,217,518,19,22,22
+54232,5,217,519,19,23,23
+54233,5,217,520,19,24,24
+54234,5,217,521,19,24,24
+54235,5,217,515,19,20,20
+54236,5,217,516,19,21,21
+54237,5,217,517,19,22,22
+54238,5,217,518,19,22,22
+54239,5,217,519,19,23,23
+54240,5,217,520,19,24,24
+54241,5,217,521,19,24,24
+54242,5,217,515,92,20,20
+54243,5,217,516,92,21,21
+54244,5,217,517,92,22,22
+54245,5,217,518,19,22,22
+54246,5,217,519,19,23,23
+54247,5,217,520,19,24,24
+54248,5,217,521,19,24,24
+54249,5,218,515,19,20,20
+54250,5,218,516,19,21,21
+54251,5,218,517,19,22,22
+54252,5,218,518,19,22,22
+54253,5,218,519,19,23,23
+54254,5,218,520,19,24,24
+54255,5,218,521,19,24,24
+54256,5,218,515,19,20,20
+54257,5,218,516,19,21,21
+54258,5,218,517,19,22,22
+54259,5,218,518,19,22,22
+54260,5,218,519,19,23,23
+54261,5,218,520,19,24,24
+54262,5,218,521,19,24,24
+54263,5,218,515,92,20,20
+54264,5,218,516,92,21,21
+54265,5,218,517,92,22,22
+54266,5,218,518,19,22,22
+54267,5,218,519,19,23,23
+54268,5,218,520,19,24,24
+54269,5,218,521,19,24,24
+54270,5,219,515,19,20,20
+54271,5,219,516,19,21,21
+54272,5,219,517,19,22,22
+54273,5,219,518,19,22,22
+54274,5,219,519,19,23,23
+54275,5,219,520,19,24,24
+54276,5,219,521,19,24,24
+54277,5,219,515,19,20,20
+54278,5,219,516,19,21,21
+54279,5,219,517,19,22,22
+54280,5,219,518,19,22,22
+54281,5,219,519,19,23,23
+54282,5,219,520,19,24,24
+54283,5,219,521,19,24,24
+54284,5,219,515,92,20,20
+54285,5,219,516,92,21,21
+54286,5,219,517,92,22,22
+54287,5,219,518,19,22,22
+54288,5,219,519,19,23,23
+54289,5,219,520,19,24,24
+54290,5,219,521,19,24,24
+54291,5,220,515,19,20,20
+54292,5,220,516,19,21,21
+54293,5,220,517,19,22,22
+54294,5,220,518,19,22,22
+54295,5,220,519,19,23,23
+54296,5,220,520,19,24,24
+54297,5,220,521,19,24,24
+54298,5,220,515,19,20,20
+54299,5,220,516,19,21,21
+54300,5,220,517,19,22,22
+54301,5,220,518,19,22,22
+54302,5,220,519,19,23,23
+54303,5,220,520,19,24,24
+54304,5,220,521,19,24,24
+54305,5,220,515,92,20,20
+54306,5,220,516,92,21,21
+54307,5,220,517,92,22,22
+54308,5,220,518,19,22,22
+54309,5,220,519,19,23,23
+54310,5,220,520,19,24,24
+54311,5,220,521,19,24,24
+54312,5,221,515,19,20,20
+54313,5,221,516,19,21,21
+54314,5,221,517,19,22,22
+54315,5,221,518,19,22,22
+54316,5,221,519,19,23,23
+54317,5,221,520,19,24,24
+54318,5,221,521,19,24,24
+54319,5,221,515,19,20,20
+54320,5,221,516,19,21,21
+54321,5,221,517,19,22,22
+54322,5,221,518,19,22,22
+54323,5,221,519,19,23,23
+54324,5,221,520,19,24,24
+54325,5,221,521,19,24,24
+54326,5,221,515,92,20,20
+54327,5,221,516,92,21,21
+54328,5,221,517,92,22,22
+54329,5,221,518,19,22,22
+54330,5,221,519,19,23,23
+54331,5,221,520,19,24,24
+54332,5,221,521,19,24,24
+54333,5,227,515,98,22,22
+54334,5,227,516,41,23,23
+54335,5,227,517,98,24,24
+54336,5,227,518,86,22,22
+54337,5,227,519,42,23,23
+54338,5,227,520,86,24,24
+54339,5,227,521,86,24,24
+54340,5,228,515,98,23,23
+54341,5,228,516,41,24,24
+54342,5,228,517,98,25,25
+54343,5,228,518,86,23,23
+54344,5,228,519,42,24,24
+54345,5,228,520,86,25,25
+54346,5,228,521,86,25,25
+54347,5,230,515,98,23,23
+54348,5,230,516,41,24,24
+54349,5,230,517,98,25,25
+54350,5,230,518,86,23,23
+54351,5,230,519,42,24,24
+54352,5,230,520,86,25,25
+54353,5,230,521,86,25,25
+54354,5,232,515,98,24,24
+54355,5,232,516,41,25,25
+54356,5,232,517,98,26,26
+54357,5,232,518,86,24,24
+54358,5,232,519,42,25,25
+54359,5,232,520,86,26,26
+54360,5,232,521,86,26,26
+54361,5,250,522,129,10,10
+54362,5,250,523,129,10,10
+54363,5,250,524,129,10,10
+54364,5,253,522,129,10,10
+54365,5,253,523,129,10,10
+54366,5,253,524,118,10,10
+54367,5,254,522,129,10,10
+54368,5,254,523,129,10,10
+54369,5,254,524,118,10,10
+54370,5,281,522,129,10,10
+54371,5,281,523,129,10,10
+54372,5,281,524,118,10,10
+54373,5,204,522,129,10,10
+54374,5,204,523,129,10,10
+54375,5,204,524,60,10,10
+54376,5,184,522,129,10,10
+54377,5,184,523,129,10,10
+54378,5,184,524,72,10,10
+54379,5,285,522,129,10,10
+54380,5,285,523,129,10,10
+54381,5,285,524,72,10,10
+54382,5,282,522,129,10,10
+54383,5,282,523,129,10,10
+54384,5,282,524,72,10,10
+54385,5,349,522,129,10,10
+54386,5,349,523,129,10,10
+54387,5,349,524,72,10,10
+54388,5,198,522,129,10,10
+54389,5,198,523,129,10,10
+54390,5,198,524,118,10,10
+54391,5,199,522,129,10,10
+54392,5,199,523,129,10,10
+54393,5,199,524,118,10,10
+54394,5,200,522,129,10,10
+54395,5,200,523,129,10,10
+54396,5,200,524,98,10,10
+54397,5,316,522,129,10,10
+54398,5,316,523,129,10,10
+54399,5,316,524,118,10,10
+54400,5,279,522,129,10,10
+54401,5,279,523,129,10,10
+54402,5,279,524,72,10,10
+54403,5,249,522,129,10,10
+54404,5,249,523,129,10,10
+54405,5,249,524,60,10,10
+54406,5,235,522,129,10,10
+54407,5,235,523,129,10,10
+54408,5,235,524,98,10,10
+54409,5,242,522,129,10,10
+54410,5,242,523,129,10,10
+54411,5,242,524,129,10,10
+54412,5,189,522,129,10,10
+54413,5,189,523,129,10,10
+54414,5,189,524,60,10,10
+54415,5,269,522,129,10,10
+54416,5,269,523,129,10,10
+54417,5,269,524,60,10,10
+54418,5,263,522,129,10,10
+54419,5,263,523,129,10,10
+54420,5,263,524,118,10,10
+54421,5,237,522,129,10,10
+54422,5,237,523,129,10,10
+54423,5,237,524,118,10,10
+54424,5,239,522,129,10,10
+54425,5,239,523,129,10,10
+54426,5,239,524,118,10,10
+54427,5,240,522,129,10,10
+54428,5,240,523,129,10,10
+54429,5,240,524,118,10,10
+54430,5,224,522,129,10,10
+54431,5,224,523,129,10,10
+54432,5,224,524,98,10,10
+54433,5,284,522,129,10,10
+54434,5,284,523,129,10,10
+54435,5,284,524,129,10,10
+54436,5,202,522,129,10,10
+54437,5,202,523,129,10,10
+54438,5,202,524,118,10,10
+54439,5,203,522,129,10,10
+54440,5,203,523,129,10,10
+54441,5,203,524,118,10,10
+54442,5,211,522,129,10,10
+54443,5,211,523,129,10,10
+54444,5,211,524,60,10,10
+54445,5,300,522,129,10,10
+54446,5,300,523,129,10,10
+54447,5,300,524,60,10,10
+54448,5,303,522,129,10,10
+54449,5,303,523,129,10,10
+54450,5,303,524,118,10,10
+54451,5,304,522,129,10,10
+54452,5,304,523,129,10,10
+54453,5,304,524,118,10,10
+54454,5,276,522,129,10,10
+54455,5,276,523,129,10,10
+54456,5,276,524,72,10,10
+54457,5,306,522,129,10,10
+54458,5,306,523,129,10,10
+54459,5,306,524,72,10,10
+54460,5,277,522,129,10,10
+54461,5,277,523,129,10,10
+54462,5,277,524,98,10,10
+54463,5,278,522,129,10,10
+54464,5,278,523,129,10,10
+54465,5,278,524,72,10,10
+54466,5,312,522,129,10,10
+54467,5,312,523,129,10,10
+54468,5,312,524,72,10,10
+54469,5,313,522,129,10,10
+54470,5,313,523,129,10,10
+54471,5,313,524,60,10,10
+54472,5,314,522,129,10,10
+54473,5,314,523,129,10,10
+54474,5,314,524,118,10,10
+54475,5,315,522,129,10,10
+54476,5,315,523,129,10,10
+54477,5,315,524,118,10,10
+54478,5,287,522,129,10,10
+54479,5,287,523,129,10,10
+54480,5,287,524,72,10,10
+54481,5,288,522,129,10,10
+54482,5,288,523,129,10,10
+54483,5,288,524,72,10,10
+54484,5,289,522,129,10,10
+54485,5,289,523,129,10,10
+54486,5,289,524,60,10,10
+54487,5,187,522,129,10,10
+54488,5,187,523,129,10,10
+54489,5,187,524,60,10,10
+54490,5,188,522,129,10,10
+54491,5,188,523,129,10,10
+54492,5,188,524,60,10,10
+54493,5,192,522,129,10,10
+54494,5,192,523,129,10,10
+54495,5,192,524,72,10,10
+54496,5,192,522,129,5,5
+54497,5,192,523,129,5,5
+54498,5,192,524,211,5,5
+54499,5,205,522,129,10,10
+54500,5,205,523,129,10,10
+54501,5,205,524,98,10,10
+54502,5,206,522,129,10,10
+54503,5,206,523,129,10,10
+54504,5,206,524,60,10,10
+54505,5,225,522,129,10,10
+54506,5,225,523,129,10,10
+54507,5,225,524,98,10,10
+54508,5,226,522,129,10,10
+54509,5,226,523,129,10,10
+54510,5,226,524,72,10,10
+54511,5,236,522,129,10,10
+54512,5,236,523,129,10,10
+54513,5,236,524,118,10,10
+54514,5,241,522,129,10,10
+54515,5,241,523,129,10,10
+54516,5,241,524,60,10,10
+54517,5,243,522,129,10,10
+54518,5,243,523,129,10,10
+54519,5,243,524,60,10,10
+54520,5,243,524,223,10,10
+54521,5,251,522,129,10,10
+54522,5,251,523,129,10,10
+54523,5,251,524,129,10,10
+54524,5,193,522,129,10,10
+54525,5,193,523,129,10,10
+54526,5,193,524,60,10,10
+54527,5,227,522,129,10,10
+54528,5,227,523,129,10,10
+54529,5,227,524,98,10,10
+54530,5,230,522,129,10,10
+54531,5,230,523,129,10,10
+54532,5,230,524,98,10,10
+54533,5,232,522,129,10,10
+54534,5,232,523,129,10,10
+54535,5,232,524,98,10,10
+54536,5,186,522,129,10,10
+54537,5,186,523,129,10,10
+54538,5,186,524,98,10,10
+54539,5,250,525,129,20,20
+54540,5,250,526,129,20,20
+54541,5,250,527,129,20,20
+54542,5,250,528,147,20,20
+54543,5,253,525,129,20,20
+54544,5,253,526,118,20,20
+54545,5,253,527,118,20,20
+54546,5,253,528,118,20,20
+54547,5,254,525,129,20,20
+54548,5,254,526,118,20,20
+54549,5,254,527,118,20,20
+54550,5,254,528,118,20,20
+54551,5,281,525,129,20,20
+54552,5,281,526,118,20,20
+54553,5,281,527,118,20,20
+54554,5,281,528,118,20,20
+54555,5,204,525,129,20,20
+54556,5,204,526,60,20,20
+54557,5,204,527,60,20,20
+54558,5,204,528,60,20,20
+54559,5,184,525,129,20,20
+54560,5,184,526,72,20,20
+54561,5,184,527,170,20,20
+54562,5,184,528,90,20,20
+54563,5,285,525,129,20,20
+54564,5,285,526,72,20,20
+54565,5,285,527,170,20,20
+54566,5,285,528,90,20,20
+54567,5,282,525,129,20,20
+54568,5,282,526,72,20,20
+54569,5,282,527,170,20,20
+54570,5,282,528,90,20,20
+54571,5,349,525,129,20,20
+54572,5,349,526,72,20,20
+54573,5,349,527,170,20,20
+54574,5,349,528,90,20,20
+54575,5,198,525,129,20,20
+54576,5,198,526,118,20,20
+54577,5,198,527,118,20,20
+54578,5,198,528,118,20,20
+54579,5,199,525,129,20,20
+54580,5,199,526,118,20,20
+54581,5,199,527,118,20,20
+54582,5,199,528,118,20,20
+54583,5,200,525,129,20,20
+54584,5,200,526,98,20,20
+54585,5,200,527,98,20,20
+54586,5,200,528,222,20,20
+54587,5,200,525,129,20,20
+54588,5,200,526,98,20,20
+54589,5,200,527,98,20,20
+54590,5,200,528,222,20,20
+54591,5,200,525,129,20,20
+54592,5,200,526,98,20,20
+54593,5,200,527,98,20,20
+54594,5,200,528,120,20,20
+54595,5,316,525,129,20,20
+54596,5,316,526,118,20,20
+54597,5,316,527,118,20,20
+54598,5,316,528,118,20,20
+54599,5,279,525,129,20,20
+54600,5,279,526,72,20,20
+54601,5,279,527,170,20,20
+54602,5,279,528,90,20,20
+54603,5,249,525,129,20,20
+54604,5,249,526,60,20,20
+54605,5,249,527,60,20,20
+54606,5,249,528,60,20,20
+54607,5,235,525,129,20,20
+54608,5,235,526,98,20,20
+54609,5,235,527,98,20,20
+54610,5,235,528,222,20,20
+54611,5,235,525,129,20,20
+54612,5,235,526,98,20,20
+54613,5,235,527,98,20,20
+54614,5,235,528,222,20,20
+54615,5,235,525,129,20,20
+54616,5,235,526,98,20,20
+54617,5,235,527,98,20,20
+54618,5,235,528,120,20,20
+54619,5,242,525,129,20,20
+54620,5,242,526,129,20,20
+54621,5,242,527,129,20,20
+54622,5,242,528,130,20,20
+54623,5,189,525,129,20,20
+54624,5,189,526,60,20,20
+54625,5,189,527,60,20,20
+54626,5,189,528,60,20,20
+54627,5,269,525,129,20,20
+54628,5,269,526,60,20,20
+54629,5,269,527,60,20,20
+54630,5,269,528,60,20,20
+54631,5,263,525,129,20,20
+54632,5,263,526,118,20,20
+54633,5,263,527,118,20,20
+54634,5,263,528,118,20,20
+54635,5,237,525,129,20,20
+54636,5,237,526,118,20,20
+54637,5,237,527,118,20,20
+54638,5,237,528,118,20,20
+54639,5,239,525,129,20,20
+54640,5,239,526,118,20,20
+54641,5,239,527,118,20,20
+54642,5,239,528,118,20,20
+54643,5,240,525,129,20,20
+54644,5,240,526,118,20,20
+54645,5,240,527,118,20,20
+54646,5,240,528,118,20,20
+54647,5,224,525,129,20,20
+54648,5,224,526,98,20,20
+54649,5,224,527,98,20,20
+54650,5,224,528,222,20,20
+54651,5,224,525,129,20,20
+54652,5,224,526,98,20,20
+54653,5,224,527,98,20,20
+54654,5,224,528,222,20,20
+54655,5,224,525,129,20,20
+54656,5,224,526,98,20,20
+54657,5,224,527,98,20,20
+54658,5,224,528,120,20,20
+54659,5,284,525,129,20,20
+54660,5,284,526,129,20,20
+54661,5,284,527,129,20,20
+54662,5,284,528,130,20,20
+54663,5,202,525,129,20,20
+54664,5,202,526,118,20,20
+54665,5,202,527,118,20,20
+54666,5,202,528,118,20,20
+54667,5,203,525,129,20,20
+54668,5,203,526,118,20,20
+54669,5,203,527,118,20,20
+54670,5,203,528,118,20,20
+54671,5,211,525,129,20,20
+54672,5,211,526,60,20,20
+54673,5,211,527,60,20,20
+54674,5,211,528,60,20,20
+54675,5,300,525,129,20,20
+54676,5,300,526,60,20,20
+54677,5,300,527,60,20,20
+54678,5,300,528,60,20,20
+54679,5,303,525,129,20,20
+54680,5,303,526,118,20,20
+54681,5,303,527,118,20,20
+54682,5,303,528,118,20,20
+54683,5,304,525,129,20,20
+54684,5,304,526,118,20,20
+54685,5,304,527,118,20,20
+54686,5,304,528,118,20,20
+54687,5,276,525,129,20,20
+54688,5,276,526,72,20,20
+54689,5,276,527,72,20,20
+54690,5,276,528,72,20,20
+54691,5,306,525,129,20,20
+54692,5,306,526,72,20,20
+54693,5,306,527,72,20,20
+54694,5,306,528,72,20,20
+54695,5,277,525,129,20,20
+54696,5,277,526,98,20,20
+54697,5,277,527,98,20,20
+54698,5,277,528,222,20,20
+54699,5,277,525,129,20,20
+54700,5,277,526,98,20,20
+54701,5,277,527,98,20,20
+54702,5,277,528,222,20,20
+54703,5,277,525,129,20,20
+54704,5,277,526,98,20,20
+54705,5,277,527,98,20,20
+54706,5,277,528,120,20,20
+54707,5,278,525,129,20,20
+54708,5,278,526,72,20,20
+54709,5,278,527,170,20,20
+54710,5,278,528,90,20,20
+54711,5,312,525,129,20,20
+54712,5,312,526,72,20,20
+54713,5,312,527,170,20,20
+54714,5,312,528,90,20,20
+54715,5,313,525,129,20,20
+54716,5,313,526,60,20,20
+54717,5,313,527,60,20,20
+54718,5,313,528,60,20,20
+54719,5,314,525,129,20,20
+54720,5,314,526,118,20,20
+54721,5,314,527,118,20,20
+54722,5,314,528,118,20,20
+54723,5,315,525,129,20,20
+54724,5,315,526,118,20,20
+54725,5,315,527,118,20,20
+54726,5,315,528,118,20,20
+54727,5,287,525,129,20,20
+54728,5,287,526,72,20,20
+54729,5,287,527,170,20,20
+54730,5,287,528,90,20,20
+54731,5,288,525,129,20,20
+54732,5,288,526,72,20,20
+54733,5,288,527,170,20,20
+54734,5,288,528,90,20,20
+54735,5,289,525,129,20,20
+54736,5,289,526,60,20,20
+54737,5,289,527,60,20,20
+54738,5,289,528,60,20,20
+54739,5,187,525,129,20,20
+54740,5,187,526,60,20,20
+54741,5,187,527,60,20,20
+54742,5,187,528,60,20,20
+54743,5,188,525,129,20,20
+54744,5,188,526,60,20,20
+54745,5,188,527,60,20,20
+54746,5,188,528,60,20,20
+54747,5,192,525,129,20,20
+54748,5,192,526,72,20,20
+54749,5,192,527,72,20,20
+54750,5,192,528,72,20,20
+54751,5,192,526,211,20,20
+54752,5,192,527,211,20,20
+54753,5,192,528,211,20,20
+54754,5,205,525,129,20,20
+54755,5,205,526,98,20,20
+54756,5,205,527,98,20,20
+54757,5,205,528,222,20,20
+54758,5,205,525,129,20,20
+54759,5,205,526,98,20,20
+54760,5,205,527,98,20,20
+54761,5,205,528,222,20,20
+54762,5,205,525,129,20,20
+54763,5,205,526,98,20,20
+54764,5,205,527,98,20,20
+54765,5,205,528,120,20,20
+54766,5,206,525,129,20,20
+54767,5,206,526,60,20,20
+54768,5,206,527,60,20,20
+54769,5,206,528,60,20,20
+54770,5,225,525,129,20,20
+54771,5,225,526,98,20,20
+54772,5,225,527,98,20,20
+54773,5,225,528,222,20,20
+54774,5,225,525,129,20,20
+54775,5,225,526,98,20,20
+54776,5,225,527,98,20,20
+54777,5,225,528,222,20,20
+54778,5,225,525,129,20,20
+54779,5,225,526,98,20,20
+54780,5,225,527,98,20,20
+54781,5,225,528,120,20,20
+54782,5,226,525,129,20,20
+54783,5,226,526,72,20,20
+54784,5,226,527,170,20,20
+54785,5,226,528,90,20,20
+54786,5,236,525,129,20,20
+54787,5,236,526,118,20,20
+54788,5,236,527,118,20,20
+54789,5,236,528,118,20,20
+54790,5,241,525,129,20,20
+54791,5,241,526,60,20,20
+54792,5,241,527,60,20,20
+54793,5,241,528,60,20,20
+54794,5,243,525,129,20,20
+54795,5,243,526,60,20,20
+54796,5,243,527,60,20,20
+54797,5,243,528,60,20,20
+54798,5,243,526,223,20,20
+54799,5,243,527,223,20,20
+54800,5,243,528,223,20,20
+54801,5,251,525,129,20,20
+54802,5,251,526,129,20,20
+54803,5,251,527,129,20,20
+54804,5,251,528,147,20,20
+54805,5,193,525,129,20,20
+54806,5,193,526,60,20,20
+54807,5,193,527,60,20,20
+54808,5,193,528,60,20,20
+54809,5,227,525,129,20,20
+54810,5,227,526,98,20,20
+54811,5,227,527,98,20,20
+54812,5,227,528,116,20,20
+54813,5,230,525,129,20,20
+54814,5,230,526,98,20,20
+54815,5,230,527,98,20,20
+54816,5,230,528,116,20,20
+54817,5,232,525,129,20,20
+54818,5,232,526,98,20,20
+54819,5,232,527,98,20,20
+54820,5,232,528,116,20,20
+54821,5,186,525,129,20,20
+54822,5,186,526,98,20,20
+54823,5,186,527,98,20,20
+54824,5,186,528,222,20,20
+54825,5,186,525,129,20,20
+54826,5,186,526,98,20,20
+54827,5,186,527,98,20,20
+54828,5,186,528,222,20,20
+54829,5,186,525,129,20,20
+54830,5,186,526,98,20,20
+54831,5,186,527,98,20,20
+54832,5,186,528,120,20,20
+54833,5,250,529,129,40,40
+54834,5,250,530,147,40,40
+54835,5,250,531,129,40,40
+54836,5,250,532,148,40,40
+54837,5,253,529,118,40,40
+54838,5,253,530,118,40,40
+54839,5,253,531,129,40,40
+54840,5,253,532,119,40,40
+54841,5,254,529,118,40,40
+54842,5,254,530,118,40,40
+54843,5,254,531,129,40,40
+54844,5,254,532,119,40,40
+54845,5,281,529,118,40,40
+54846,5,281,530,118,40,40
+54847,5,281,531,129,40,40
+54848,5,281,532,119,40,40
+54849,5,204,529,60,40,40
+54850,5,204,530,60,40,40
+54851,5,204,531,129,40,40
+54852,5,204,532,60,40,40
+54853,5,184,529,170,40,40
+54854,5,184,530,90,40,40
+54855,5,184,531,73,40,40
+54856,5,184,532,171,40,40
+54857,5,285,529,170,40,40
+54858,5,285,530,90,40,40
+54859,5,285,531,73,40,40
+54860,5,285,532,171,40,40
+54861,5,282,529,170,40,40
+54862,5,282,530,90,40,40
+54863,5,282,531,73,40,40
+54864,5,282,532,171,40,40
+54865,5,349,529,170,40,40
+54866,5,349,530,90,40,40
+54867,5,349,531,73,40,40
+54868,5,349,532,171,40,40
+54869,5,198,529,118,40,40
+54870,5,198,530,118,40,40
+54871,5,198,531,129,40,40
+54872,5,198,532,119,40,40
+54873,5,199,529,118,40,40
+54874,5,199,530,118,40,40
+54875,5,199,531,129,40,40
+54876,5,199,532,119,40,40
+54877,5,200,529,98,40,40
+54878,5,200,530,222,40,40
+54879,5,200,531,98,40,40
+54880,5,200,532,99,40,40
+54881,5,200,529,98,40,40
+54882,5,200,530,222,40,40
+54883,5,200,531,98,40,40
+54884,5,200,532,99,40,40
+54885,5,200,529,98,40,40
+54886,5,200,530,120,40,40
+54887,5,200,531,98,40,40
+54888,5,200,532,99,40,40
+54889,5,316,529,118,40,40
+54890,5,316,530,118,40,40
+54891,5,316,531,129,40,40
+54892,5,316,532,119,40,40
+54893,5,279,529,170,40,40
+54894,5,279,530,90,40,40
+54895,5,279,531,73,40,40
+54896,5,279,532,171,40,40
+54897,5,249,529,60,40,40
+54898,5,249,530,60,40,40
+54899,5,249,531,129,40,40
+54900,5,249,532,60,40,40
+54901,5,235,529,98,40,40
+54902,5,235,530,222,40,40
+54903,5,235,531,98,40,40
+54904,5,235,532,99,40,40
+54905,5,235,529,98,40,40
+54906,5,235,530,222,40,40
+54907,5,235,531,98,40,40
+54908,5,235,532,99,40,40
+54909,5,235,529,98,40,40
+54910,5,235,530,120,40,40
+54911,5,235,531,98,40,40
+54912,5,235,532,99,40,40
+54913,5,242,529,129,40,40
+54914,5,242,530,130,40,40
+54915,5,242,531,129,40,40
+54916,5,242,532,129,40,40
+54917,5,189,529,60,40,40
+54918,5,189,530,60,40,40
+54919,5,189,531,129,40,40
+54920,5,189,532,60,40,40
+54921,5,269,529,60,40,40
+54922,5,269,530,60,40,40
+54923,5,269,531,129,40,40
+54924,5,269,532,60,40,40
+54925,5,263,529,118,40,40
+54926,5,263,530,118,40,40
+54927,5,263,531,129,40,40
+54928,5,263,532,119,40,40
+54929,5,237,529,118,40,40
+54930,5,237,530,118,40,40
+54931,5,237,531,129,40,40
+54932,5,237,532,119,40,40
+54933,5,239,529,118,40,40
+54934,5,239,530,118,40,40
+54935,5,239,531,129,40,40
+54936,5,239,532,119,40,40
+54937,5,240,529,118,40,40
+54938,5,240,530,118,40,40
+54939,5,240,531,129,40,40
+54940,5,240,532,119,40,40
+54941,5,224,529,98,40,40
+54942,5,224,530,222,40,40
+54943,5,224,531,98,40,40
+54944,5,224,532,99,40,40
+54945,5,224,529,98,40,40
+54946,5,224,530,222,40,40
+54947,5,224,531,98,40,40
+54948,5,224,532,99,40,40
+54949,5,224,529,98,40,40
+54950,5,224,530,120,40,40
+54951,5,224,531,98,40,40
+54952,5,224,532,99,40,40
+54953,5,284,529,129,40,40
+54954,5,284,530,130,40,40
+54955,5,284,531,129,40,40
+54956,5,284,532,129,40,40
+54957,5,202,529,118,40,40
+54958,5,202,530,118,40,40
+54959,5,202,531,129,40,40
+54960,5,202,532,119,40,40
+54961,5,203,529,118,40,40
+54962,5,203,530,118,40,40
+54963,5,203,531,129,40,40
+54964,5,203,532,119,40,40
+54965,5,211,529,60,40,40
+54966,5,211,530,60,40,40
+54967,5,211,531,129,40,40
+54968,5,211,532,60,40,40
+54969,5,300,529,60,40,40
+54970,5,300,530,60,40,40
+54971,5,300,531,129,40,40
+54972,5,300,532,60,40,40
+54973,5,303,529,118,40,40
+54974,5,303,530,118,40,40
+54975,5,303,531,129,40,40
+54976,5,303,532,119,40,40
+54977,5,304,529,118,40,40
+54978,5,304,530,118,40,40
+54979,5,304,531,129,40,40
+54980,5,304,532,119,40,40
+54981,5,276,529,72,40,40
+54982,5,276,530,72,40,40
+54983,5,276,531,129,40,40
+54984,5,276,532,211,40,40
+54985,5,306,529,72,40,40
+54986,5,306,530,72,40,40
+54987,5,306,531,129,40,40
+54988,5,306,532,211,40,40
+54989,5,277,529,98,40,40
+54990,5,277,530,222,40,40
+54991,5,277,531,98,40,40
+54992,5,277,532,99,40,40
+54993,5,277,529,98,40,40
+54994,5,277,530,222,40,40
+54995,5,277,531,98,40,40
+54996,5,277,532,99,40,40
+54997,5,277,529,98,40,40
+54998,5,277,530,120,40,40
+54999,5,277,531,98,40,40
+55000,5,277,532,99,40,40
+55001,5,278,529,170,40,40
+55002,5,278,530,90,40,40
+55003,5,278,531,73,40,40
+55004,5,278,532,171,40,40
+55005,5,312,529,170,40,40
+55006,5,312,530,90,40,40
+55007,5,312,531,73,40,40
+55008,5,312,532,171,40,40
+55009,5,313,529,60,40,40
+55010,5,313,530,60,40,40
+55011,5,313,531,129,40,40
+55012,5,313,532,60,40,40
+55013,5,314,529,118,40,40
+55014,5,314,530,118,40,40
+55015,5,314,531,129,40,40
+55016,5,314,532,119,40,40
+55017,5,315,529,118,40,40
+55018,5,315,530,118,40,40
+55019,5,315,531,129,40,40
+55020,5,315,532,119,40,40
+55021,5,287,529,170,40,40
+55022,5,287,530,90,40,40
+55023,5,287,531,73,40,40
+55024,5,287,532,171,40,40
+55025,5,288,529,170,40,40
+55026,5,288,530,90,40,40
+55027,5,288,531,73,40,40
+55028,5,288,532,171,40,40
+55029,5,289,529,60,40,40
+55030,5,289,530,60,40,40
+55031,5,289,531,129,40,40
+55032,5,289,532,60,40,40
+55033,5,187,529,60,40,40
+55034,5,187,530,60,40,40
+55035,5,187,531,129,40,40
+55036,5,187,532,60,40,40
+55037,5,188,529,60,40,40
+55038,5,188,530,60,40,40
+55039,5,188,531,129,40,40
+55040,5,188,532,60,40,40
+55041,5,192,529,72,40,40
+55042,5,192,530,72,40,40
+55043,5,192,531,129,40,40
+55044,5,192,532,211,40,40
+55045,5,192,529,211,40,40
+55046,5,192,530,211,40,40
+55047,5,192,531,211,40,40
+55048,5,192,532,211,40,40
+55049,5,205,529,98,40,40
+55050,5,205,530,222,40,40
+55051,5,205,531,98,40,40
+55052,5,205,532,99,40,40
+55053,5,205,529,98,40,40
+55054,5,205,530,222,40,40
+55055,5,205,531,98,40,40
+55056,5,205,532,99,40,40
+55057,5,205,529,98,40,40
+55058,5,205,530,120,40,40
+55059,5,205,531,98,40,40
+55060,5,205,532,99,40,40
+55061,5,206,529,60,40,40
+55062,5,206,530,60,40,40
+55063,5,206,531,129,40,40
+55064,5,206,532,60,40,40
+55065,5,225,529,98,40,40
+55066,5,225,530,222,40,40
+55067,5,225,531,98,40,40
+55068,5,225,532,99,40,40
+55069,5,225,529,98,40,40
+55070,5,225,530,222,40,40
+55071,5,225,531,98,40,40
+55072,5,225,532,99,40,40
+55073,5,225,529,98,40,40
+55074,5,225,530,120,40,40
+55075,5,225,531,98,40,40
+55076,5,225,532,99,40,40
+55077,5,226,529,170,40,40
+55078,5,226,530,90,40,40
+55079,5,226,531,73,40,40
+55080,5,226,532,171,40,40
+55081,5,236,529,118,40,40
+55082,5,236,530,118,40,40
+55083,5,236,531,129,40,40
+55084,5,236,532,119,40,40
+55085,5,241,529,60,40,40
+55086,5,241,530,60,40,40
+55087,5,241,531,129,40,40
+55088,5,241,532,60,40,40
+55089,5,243,529,60,40,40
+55090,5,243,530,60,40,40
+55091,5,243,531,129,40,40
+55092,5,243,532,223,40,40
+55093,5,243,529,223,40,40
+55094,5,243,530,223,40,40
+55095,5,243,531,223,40,40
+55096,5,243,532,223,40,40
+55097,5,251,529,129,40,40
+55098,5,251,530,147,40,40
+55099,5,251,531,129,40,40
+55100,5,251,532,148,40,40
+55101,5,193,529,60,40,40
+55102,5,193,530,60,40,40
+55103,5,193,531,129,40,40
+55104,5,193,532,60,40,40
+55105,5,227,529,98,40,40
+55106,5,227,530,116,40,40
+55107,5,227,531,99,40,40
+55108,5,227,532,117,40,40
+55109,5,230,529,98,40,40
+55110,5,230,530,116,40,40
+55111,5,230,531,99,40,40
+55112,5,230,532,117,40,40
+55113,5,232,529,98,40,40
+55114,5,232,530,116,40,40
+55115,5,232,531,99,40,40
+55116,5,232,532,117,40,40
+55117,5,186,529,98,40,40
+55118,5,186,530,222,40,40
+55119,5,186,531,98,40,40
+55120,5,186,532,99,40,40
+55121,5,186,529,98,40,40
+55122,5,186,530,222,40,40
+55123,5,186,531,98,40,40
+55124,5,186,532,99,40,40
+55125,5,186,529,98,40,40
+55126,5,186,530,120,40,40
+55127,5,186,531,98,40,40
+55128,5,186,532,99,40,40
+55129,5,250,533,129,15,19
+55130,5,250,534,129,10,14
+55131,5,250,535,147,10,14
+55132,5,253,533,129,15,19
+55133,5,253,534,129,10,14
+55134,5,253,535,129,5,9
+55135,5,254,533,129,15,19
+55136,5,254,534,129,10,14
+55137,5,254,535,129,5,9
+55138,5,281,533,118,10,14
+55139,5,281,534,118,5,9
+55140,5,281,535,119,10,14
+55141,5,204,533,54,15,19
+55142,5,204,534,54,10,14
+55143,5,204,535,55,15,19
+55144,5,184,533,72,20,24
+55145,5,184,534,72,15,19
+55146,5,184,535,73,20,24
+55147,5,285,533,72,35,39
+55148,5,285,534,72,30,34
+55149,5,285,535,73,35,39
+55150,5,282,533,72,35,39
+55151,5,282,534,72,30,34
+55152,5,282,535,73,35,39
+55153,5,349,533,72,35,39
+55154,5,349,534,72,30,34
+55155,5,349,535,73,35,39
+55156,5,198,533,194,15,19
+55157,5,198,534,195,20,24
+55158,5,198,535,195,15,19
+55159,5,199,533,194,15,19
+55160,5,199,534,195,20,24
+55161,5,199,535,195,15,19
+55162,5,200,533,72,15,19
+55163,5,200,534,195,20,24
+55164,5,200,535,73,20,24
+55165,5,283,533,88,20,24
+55166,5,283,534,88,15,19
+55167,5,283,535,89,15,19
+55168,5,316,533,118,20,24
+55169,5,316,534,79,20,24
+55170,5,316,535,119,20,24
+55171,5,279,533,72,35,39
+55172,5,279,534,72,30,34
+55173,5,279,535,73,35,39
+55174,5,249,533,129,15,19
+55175,5,249,534,129,10,14
+55176,5,249,535,129,5,9
+55177,5,235,533,72,20,24
+55178,5,235,534,72,15,29
+55179,5,235,535,73,20,24
+55180,5,280,533,60,10,14
+55181,5,280,534,60,5,9
+55182,5,280,535,61,10,14
+55183,5,242,533,129,15,19
+55184,5,242,534,129,10,14
+55185,5,242,535,130,15,19
+55186,5,189,533,60,20,24
+55187,5,189,534,60,15,19
+55188,5,189,535,61,20,24
+55189,5,269,533,61,35,39
+55190,5,269,534,61,40,44
+55191,5,269,535,60,35,39
+55192,5,263,533,119,35,39
+55193,5,263,534,119,40,44
+55194,5,263,535,118,35,39
+55195,5,237,533,118,20,24
+55196,5,237,534,118,15,19
+55197,5,237,535,119,20,24
+55198,5,237,533,118,20,20
+55199,5,237,534,183,20,20
+55200,5,237,535,119,20,20
+55201,5,239,533,118,20,24
+55202,5,239,534,118,25,29
+55203,5,239,535,119,25,29
+55204,5,240,533,118,20,24
+55205,5,240,534,118,15,19
+55206,5,240,535,119,20,24
+55207,5,224,533,72,20,24
+55208,5,224,534,72,15,19
+55209,5,224,535,73,20,24
+55210,5,284,533,129,20,24
+55211,5,284,534,129,15,19
+55212,5,284,535,129,10,14
+55213,5,202,533,79,15,19
+55214,5,202,534,79,20,24
+55215,5,202,535,79,10,14
+55216,5,203,533,79,15,19
+55217,5,203,534,79,20,24
+55218,5,203,535,80,20,24
+55219,5,211,533,60,20,24
+55220,5,211,534,60,15,19
+55221,5,211,535,61,20,24
+55222,5,298,533,118,10,14
+55223,5,298,534,118,5,9
+55224,5,298,535,119,10,14
+55225,5,300,533,54,10,14
+55226,5,300,534,54,5,9
+55227,5,300,535,55,10,14
+55228,5,303,533,118,15,19
+55229,5,303,534,118,10,14
+55230,5,303,535,119,15,19
+55231,5,304,533,118,15,19
+55232,5,304,534,118,10,14
+55233,5,304,535,119,15,19
+55234,5,276,533,72,25,29
+55235,5,276,534,195,25,29
+55236,5,276,535,73,25,29
+55237,5,306,533,72,25,29
+55238,5,306,534,195,25,29
+55239,5,306,535,73,25,29
+55240,5,277,533,72,35,39
+55241,5,277,534,72,30,34
+55242,5,277,535,73,35,39
+55243,5,278,533,72,35,39
+55244,5,278,534,72,30,34
+55245,5,278,535,73,35,39
+55246,5,312,533,72,35,39
+55247,5,312,534,72,30,34
+55248,5,312,535,73,35,39
+55249,5,313,533,60,10,14
+55250,5,313,534,60,4,9
+55251,5,313,535,61,10,14
+55252,5,314,533,118,10,14
+55253,5,314,534,118,4,9
+55254,5,314,535,119,10,14
+55255,5,315,533,118,10,14
+55256,5,315,534,118,4,9
+55257,5,315,535,119,10,14
+55258,5,287,533,72,30,34
+55259,5,287,534,72,25,29
+55260,5,287,535,73,30,34
+55261,5,288,533,72,20,24
+55262,5,288,534,72,15,19
+55263,5,288,535,73,20,24
+55264,5,289,533,60,40,44
+55265,5,289,534,60,35,39
+55266,5,289,535,61,40,44
+55267,5,187,533,60,20,24
+55268,5,187,534,60,15,19
+55269,5,187,535,61,20,24
+55270,5,188,533,60,20,24
+55271,5,188,534,60,15,19
+55272,5,188,535,61,20,24
+55273,5,192,533,72,15,19
+55274,5,192,534,195,20,24
+55275,5,192,535,73,20,24
+55276,5,205,533,72,20,24
+55277,5,205,534,72,15,19
+55278,5,205,535,73,20,24
+55279,5,206,533,54,20,24
+55280,5,206,534,54,15,19
+55281,5,206,535,55,20,24
+55282,5,225,533,72,20,24
+55283,5,225,534,72,15,19
+55284,5,225,535,73,20,24
+55285,5,226,533,72,20,24
+55286,5,226,534,73,20,24
+55287,5,226,535,72,15,19
+55288,5,236,533,118,20,24
+55289,5,236,534,118,15,19
+55290,5,236,535,119,20,24
+55291,5,241,533,129,20,24
+55292,5,241,534,129,15,19
+55293,5,241,535,129,10,14
+55294,5,243,533,60,25,29
+55295,5,243,534,60,20,24
+55296,5,243,535,61,25,29
+55297,5,251,533,129,20,24
+55298,5,251,534,129,15,19
+55299,5,251,535,129,5,9
+55300,5,193,533,194,15,19
+55301,5,193,534,195,20,24
+55302,5,193,535,195,14,19
+55303,5,227,533,72,20,24
+55304,5,227,534,116,15,19
+55305,5,227,535,73,20,24
+55306,5,230,533,116,15,19
+55307,5,230,534,116,20,24
+55308,5,230,535,73,20,24
+55309,5,232,533,116,15,19
+55310,5,232,534,116,20,24
+55311,5,232,535,73,20,24
+55312,5,186,533,72,20,24
+55313,5,186,534,72,15,19
+55314,5,186,535,73,20,24
+55315,5,253,536,98,15,15
+55316,5,253,537,213,15,15
+55317,5,235,536,98,15,15
+55318,5,235,537,213,15,15
+55319,5,225,536,98,15,15
+55320,5,225,537,213,15,15
+55321,6,253,538,74,3,3
+55322,6,253,539,41,2,2
+55323,6,253,540,74,2,2
+55324,6,253,541,74,4,4
+55325,6,253,542,41,2,2
+55326,6,253,543,41,4,4
+55327,6,253,544,206,4,4
+55328,6,253,538,74,3,3
+55329,6,253,539,41,2,2
+55330,6,253,540,74,2,2
+55331,6,253,541,74,4,4
+55332,6,253,542,216,2,2
+55333,6,253,543,41,4,4
+55334,6,253,544,206,4,4
+55335,6,253,538,74,3,3
+55336,6,253,539,41,2,2
+55337,6,253,540,74,2,2
+55338,6,253,541,74,4,4
+55339,6,253,542,41,2,2
+55340,6,253,543,41,4,4
+55341,6,253,544,206,4,4
+55342,6,253,538,74,3,3
+55343,6,253,539,206,3,3
+55344,6,253,540,41,2,2
+55345,6,253,541,74,2,2
+55346,6,253,542,206,2,2
+55347,6,253,543,206,4,4
+55348,6,253,544,206,4,4
+55349,6,254,538,74,23,23
+55350,6,254,539,41,23,23
+55351,6,254,540,75,25,25
+55352,6,254,541,217,20,20
+55353,6,254,542,217,30,30
+55354,6,254,543,42,23,23
+55355,6,254,544,42,23,23
+55356,6,254,538,74,23,23
+55357,6,254,539,41,23,23
+55358,6,254,540,75,25,25
+55359,6,254,541,217,25,25
+55360,6,254,542,216,20,20
+55361,6,254,543,42,23,23
+55362,6,254,544,42,23,23
+55363,6,254,538,74,23,23
+55364,6,254,539,41,23,23
+55365,6,254,540,75,25,25
+55366,6,254,541,202,20,20
+55367,6,254,542,202,25,25
+55368,6,254,543,42,23,23
+55369,6,254,544,42,23,23
+55370,6,204,538,10,5,5
+55371,6,204,539,13,5,5
+55372,6,204,540,11,7,7
+55373,6,204,541,14,7,7
+55374,6,204,542,16,7,7
+55375,6,204,543,46,6,6
+55376,6,204,544,46,6,6
+55377,6,204,538,10,5,5
+55378,6,204,539,13,5,5
+55379,6,204,540,11,7,7
+55380,6,204,541,14,7,7
+55381,6,204,542,16,7,7
+55382,6,204,543,46,6,6
+55383,6,204,544,46,6,6
+55384,6,204,538,43,5,5
+55385,6,204,539,48,5,5
+55386,6,204,540,43,7,7
+55387,6,204,541,54,7,7
+55388,6,204,542,163,7,7
+55389,6,204,543,46,6,6
+55390,6,204,544,46,6,6
+55391,6,317,538,50,2,2
+55392,6,317,539,50,4,4
+55393,6,317,540,50,8,8
+55394,6,317,541,50,16,16
+55395,6,317,542,51,16,16
+55396,6,317,543,51,16,16
+55397,6,317,544,51,16,16
+55398,6,317,538,50,3,3
+55399,6,317,539,50,6,6
+55400,6,317,540,50,12,12
+55401,6,317,541,50,24,24
+55402,6,317,542,51,24,24
+55403,6,317,543,51,24,24
+55404,6,317,544,51,24,24
+55405,6,317,538,50,4,4
+55406,6,317,539,50,8,8
+55407,6,317,540,50,16,16
+55408,6,317,541,50,32,32
+55409,6,317,542,51,32,32
+55410,6,317,543,51,32,32
+55411,6,317,544,51,32,32
+55412,6,198,538,74,6,6
+55413,6,198,539,27,6,6
+55414,6,198,540,41,5,5
+55415,6,198,541,19,4,4
+55416,6,198,542,41,7,7
+55417,6,198,543,95,6,6
+55418,6,198,544,95,6,6
+55419,6,198,538,74,6,6
+55420,6,198,539,27,6,6
+55421,6,198,540,41,5,5
+55422,6,198,541,19,4,4
+55423,6,198,542,41,7,7
+55424,6,198,543,95,6,6
+55425,6,198,544,95,6,6
+55426,6,198,538,74,6,6
+55427,6,198,539,19,6,6
+55428,6,198,540,194,5,5
+55429,6,198,541,19,4,4
+55430,6,198,542,41,7,7
+55431,6,198,543,95,6,6
+55432,6,198,544,95,6,6
+55433,6,199,538,74,8,8
+55434,6,199,539,41,6,6
+55435,6,199,540,41,8,8
+55436,6,199,541,95,8,8
+55437,6,199,542,19,6,6
+55438,6,199,543,19,8,8
+55439,6,199,544,19,8,8
+55440,6,199,538,74,8,8
+55441,6,199,539,41,6,6
+55442,6,199,540,41,8,8
+55443,6,199,541,95,8,8
+55444,6,199,542,19,6,6
+55445,6,199,543,19,8,8
+55446,6,199,544,19,8,8
+55447,6,199,538,74,8,8
+55448,6,199,539,41,6,6
+55449,6,199,540,194,8,8
+55450,6,199,541,95,8,8
+55451,6,199,542,19,6,6
+55452,6,199,543,19,8,8
+55453,6,199,544,19,8,8
+55454,6,200,538,41,22,22
+55455,6,200,539,42,22,22
+55456,6,200,540,41,22,22
+55457,6,200,541,20,21,21
+55458,6,200,542,74,20,20
+55459,6,200,543,95,23,23
+55460,6,200,544,95,23,23
+55461,6,200,538,41,22,22
+55462,6,200,539,42,22,22
+55463,6,200,540,41,22,22
+55464,6,200,541,20,21,21
+55465,6,200,542,74,20,20
+55466,6,200,543,95,23,23
+55467,6,200,544,95,23,23
+55468,6,200,538,41,22,22
+55469,6,200,539,42,22,22
+55470,6,200,540,195,22,22
+55471,6,200,541,20,21,21
+55472,6,200,542,74,20,20
+55473,6,200,543,95,23,23
+55474,6,200,544,95,23,23
+55475,6,316,538,41,22,22
+55476,6,316,539,20,22,22
+55477,6,316,540,42,24,24
+55478,6,316,541,79,21,21
+55479,6,316,542,19,20,20
+55480,6,316,543,79,23,23
+55481,6,316,544,79,23,23
+55482,6,292,538,104,10,10
+55483,6,292,539,74,11,11
+55484,6,292,540,66,12,12
+55485,6,292,541,41,12,12
+55486,6,292,542,67,15,15
+55487,6,292,543,105,12,12
+55488,6,292,544,105,12,12
+55489,6,292,538,104,10,10
+55490,6,292,539,74,11,11
+55491,6,292,540,66,12,12
+55492,6,292,541,41,12,12
+55493,6,292,542,67,15,15
+55494,6,292,543,105,12,12
+55495,6,292,544,105,12,12
+55496,6,292,538,41,12,12
+55497,6,292,539,74,11,11
+55498,6,292,540,74,12,12
+55499,6,292,541,93,17,17
+55500,6,292,542,41,15,15
+55501,6,292,543,41,15,15
+55502,6,292,544,41,15,15
+55503,6,293,538,104,12,12
+55504,6,293,539,74,14,14
+55505,6,293,540,95,16,16
+55506,6,293,541,41,12,12
+55507,6,293,542,105,15,15
+55508,6,293,543,115,15,15
+55509,6,293,544,115,15,15
+55510,6,293,538,104,12,12
+55511,6,293,539,74,14,14
+55512,6,293,540,95,16,16
+55513,6,293,541,41,12,12
+55514,6,293,542,105,15,15
+55515,6,293,543,115,15,15
+55516,6,293,544,115,15,15
+55517,6,293,538,41,12,12
+55518,6,293,539,74,14,14
+55519,6,293,540,95,16,16
+55520,6,293,541,41,15,15
+55521,6,293,542,93,15,15
+55522,6,293,543,42,15,15
+55523,6,293,544,42,15,15
+55524,6,269,538,114,41,41
+55525,6,269,539,77,42,42
+55526,6,269,540,24,42,42
+55527,6,269,541,78,44,44
+55528,6,269,542,84,41,41
+55529,6,269,543,85,43,43
+55530,6,269,544,85,43,43
+55531,6,269,538,114,41,41
+55532,6,269,539,77,42,42
+55533,6,269,540,24,42,42
+55534,6,269,541,78,44,44
+55535,6,269,542,84,41,41
+55536,6,269,543,85,43,43
+55537,6,269,544,85,43,43
+55538,6,269,538,114,41,41
+55539,6,269,539,61,42,42
+55540,6,269,540,42,42,42
+55541,6,269,541,61,44,44
+55542,6,269,542,42,40,40
+55543,6,269,543,42,44,44
+55544,6,269,544,42,44,44
+55545,6,270,538,75,43,43
+55546,6,270,539,217,44,44
+55547,6,270,540,95,42,42
+55548,6,270,541,126,45,45
+55549,6,270,542,42,45,45
+55550,6,270,543,246,15,15
+55551,6,270,544,246,20,20
+55552,6,270,538,75,43,43
+55553,6,270,539,217,44,44
+55554,6,270,540,95,42,42
+55555,6,270,541,126,45,45
+55556,6,270,542,42,45,45
+55557,6,270,543,246,15,15
+55558,6,270,544,246,20,20
+55559,6,270,538,75,43,43
+55560,6,270,539,217,44,44
+55561,6,270,540,95,42,42
+55562,6,270,541,126,45,45
+55563,6,270,542,42,45,45
+55564,6,270,543,42,46,46
+55565,6,270,544,42,46,46
+55566,6,263,538,42,48,48
+55567,6,263,539,67,48,48
+55568,6,263,540,217,47,47
+55569,6,263,541,47,46,46
+55570,6,263,542,47,48,48
+55571,6,263,543,246,20,20
+55572,6,263,544,246,15,15
+55573,6,263,538,42,48,48
+55574,6,263,539,67,48,48
+55575,6,263,540,217,47,47
+55576,6,263,541,47,46,46
+55577,6,263,542,47,48,48
+55578,6,263,543,246,20,20
+55579,6,263,544,246,15,15
+55580,6,263,538,195,45,45
+55581,6,263,539,55,48,48
+55582,6,263,540,42,46,46
+55583,6,263,541,47,46,46
+55584,6,263,542,47,48,48
+55585,6,263,543,200,45,45
+55586,6,263,544,200,45,45
+55587,6,273,538,42,51,51
+55588,6,273,539,95,48,48
+55589,6,273,540,75,48,48
+55590,6,273,541,217,50,50
+55591,6,273,542,246,20,20
+55592,6,273,543,246,15,15
+55593,6,273,544,247,20,20
+55594,6,273,538,42,51,51
+55595,6,273,539,95,48,48
+55596,6,273,540,75,48,48
+55597,6,273,541,217,50,50
+55598,6,273,542,246,20,20
+55599,6,273,543,246,15,15
+55600,6,273,544,247,20,20
+55601,6,273,538,42,51,51
+55602,6,273,539,95,48,48
+55603,6,273,540,75,48,48
+55604,6,273,541,42,49,49
+55605,6,273,542,55,45,45
+55606,6,273,543,42,53,53
+55607,6,273,544,42,53,53
+55608,6,237,538,19,14,14
+55609,6,237,539,41,13,13
+55610,6,237,540,66,14,14
+55611,6,237,541,42,13,13
+55612,6,237,542,74,14,14
+55613,6,237,543,20,16,16
+55614,6,237,544,20,16,16
+55615,6,237,538,19,14,14
+55616,6,237,539,41,13,13
+55617,6,237,540,66,14,14
+55618,6,237,541,42,13,13
+55619,6,237,542,74,14,14
+55620,6,237,543,20,16,16
+55621,6,237,544,20,16,16
+55622,6,237,538,19,14,14
+55623,6,237,539,41,13,13
+55624,6,237,540,183,14,14
+55625,6,237,541,42,13,13
+55626,6,237,542,74,14,14
+55627,6,237,543,20,16,16
+55628,6,237,544,20,16,16
+55629,6,238,538,74,13,13
+55630,6,238,539,19,14,14
+55631,6,238,540,66,15,15
+55632,6,238,541,20,14,14
+55633,6,238,542,41,15,15
+55634,6,238,543,42,15,15
+55635,6,238,544,42,15,15
+55636,6,238,538,74,13,13
+55637,6,238,539,19,14,14
+55638,6,238,540,66,15,15
+55639,6,238,541,20,14,14
+55640,6,238,542,41,15,15
+55641,6,238,543,42,15,15
+55642,6,238,544,42,15,15
+55643,6,238,538,74,13,13
+55644,6,238,539,19,14,14
+55645,6,238,540,20,15,15
+55646,6,238,541,41,14,14
+55647,6,238,542,183,15,15
+55648,6,238,543,42,15,15
+55649,6,238,544,42,15,15
+55650,6,240,538,41,15,15
+55651,6,240,539,41,17,17
+55652,6,240,540,42,17,17
+55653,6,240,541,66,16,16
+55654,6,240,542,74,16,16
+55655,6,240,543,20,18,18
+55656,6,240,544,20,18,18
+55657,6,240,538,41,15,15
+55658,6,240,539,41,17,17
+55659,6,240,540,42,17,17
+55660,6,240,541,66,16,16
+55661,6,240,542,74,16,16
+55662,6,240,543,20,18,18
+55663,6,240,544,20,18,18
+55664,6,240,538,41,15,15
+55665,6,240,539,41,17,17
+55666,6,240,540,42,17,17
+55667,6,240,541,183,16,16
+55668,6,240,542,74,16,16
+55669,6,240,543,20,18,18
+55670,6,240,544,20,18,18
+55671,6,239,538,75,31,31
+55672,6,239,539,67,32,32
+55673,6,239,540,74,31,31
+55674,6,239,541,20,30,30
+55675,6,239,542,66,28,28
+55676,6,239,543,42,30,30
+55677,6,239,544,42,30,30
+55678,6,239,538,75,31,31
+55679,6,239,539,67,32,32
+55680,6,239,540,74,31,31
+55681,6,239,541,20,30,30
+55682,6,239,542,66,28,28
+55683,6,239,543,42,30,30
+55684,6,239,544,42,30,30
+55685,6,239,538,75,31,31
+55686,6,239,539,74,31,31
+55687,6,239,540,20,30,30
+55688,6,239,541,42,30,30
+55689,6,239,542,183,28,28
+55690,6,239,543,42,30,30
+55691,6,239,544,42,30,30
+55692,6,290,538,41,6,6
+55693,6,290,539,74,8,8
+55694,6,290,540,27,8,8
+55695,6,290,541,46,12,12
+55696,6,290,542,74,10,10
+55697,6,290,543,35,8,8
+55698,6,290,544,35,8,8
+55699,6,290,538,41,6,6
+55700,6,290,539,74,8,8
+55701,6,290,540,27,8,8
+55702,6,290,541,46,12,12
+55703,6,290,542,74,10,10
+55704,6,290,543,35,8,8
+55705,6,290,544,35,8,8
+55706,6,290,538,41,6,6
+55707,6,290,539,74,8,8
+55708,6,290,540,35,8,8
+55709,6,290,541,46,12,12
+55710,6,290,542,74,10,10
+55711,6,290,543,35,12,12
+55712,6,290,544,35,12,12
+55713,6,207,538,29,12,12
+55714,6,207,539,32,12,12
+55715,6,207,540,191,14,14
+55716,6,207,541,16,13,13
+55717,6,207,542,10,10,10
+55718,6,207,543,13,10,10
+55719,6,207,544,13,10,10
+55720,6,207,538,29,12,12
+55721,6,207,539,32,12,12
+55722,6,207,540,165,14,14
+55723,6,207,541,16,13,13
+55724,6,207,542,10,10,10
+55725,6,207,543,13,10,10
+55726,6,207,544,13,10,10
+55727,6,207,538,54,12,12
+55728,6,207,539,163,12,12
+55729,6,207,540,167,14,14
+55730,6,207,541,163,15,15
+55731,6,207,542,48,10,10
+55732,6,207,543,48,10,10
+55733,6,207,544,48,10,10
+55734,6,202,538,41,5,5
+55735,6,202,539,41,6,6
+55736,6,202,540,41,7,7
+55737,6,202,541,79,6,6
+55738,6,202,542,41,8,8
+55739,6,202,543,79,8,8
+55740,6,202,544,79,8,8
+55741,6,203,538,41,21,21
+55742,6,203,539,41,23,23
+55743,6,203,540,41,19,19
+55744,6,203,541,79,21,21
+55745,6,203,542,42,23,23
+55746,6,203,543,79,23,23
+55747,6,203,544,79,23,23
+55748,6,295,538,16,2,2
+55749,6,295,539,19,2,2
+55750,6,295,540,161,3,3
+55751,6,295,541,16,3,3
+55752,6,295,542,162,6,6
+55753,6,295,543,16,4,4
+55754,6,295,544,16,4,4
+55755,6,295,538,16,2,2
+55756,6,295,539,19,2,2
+55757,6,295,540,161,3,3
+55758,6,295,541,16,3,3
+55759,6,295,542,162,6,6
+55760,6,295,543,16,4,4
+55761,6,295,544,16,4,4
+55762,6,295,538,163,2,2
+55763,6,295,539,19,2,2
+55764,6,295,540,19,3,3
+55765,6,295,541,163,3,3
+55766,6,295,542,20,6,6
+55767,6,295,543,163,4,4
+55768,6,295,544,163,4,4
+55769,6,296,538,10,3,3
+55770,6,296,539,16,3,3
+55771,6,296,540,16,5,5
+55772,6,296,541,12,7,7
+55773,6,296,542,17,7,7
+55774,6,296,543,25,4,4
+55775,6,296,544,25,4,4
+55776,6,296,538,10,3,3
+55777,6,296,539,165,3,3
+55778,6,296,540,16,5,5
+55779,6,296,541,12,7,7
+55780,6,296,542,166,7,7
+55781,6,296,543,25,4,4
+55782,6,296,544,25,4,4
+55783,6,296,538,163,3,3
+55784,6,296,539,167,3,3
+55785,6,296,540,163,5,5
+55786,6,296,541,164,7,7
+55787,6,296,542,168,7,7
+55788,6,296,543,164,4,4
+55789,6,296,544,164,4,4
+55790,6,297,538,21,5,5
+55791,6,297,539,19,5,5
+55792,6,297,540,23,8,8
+55793,6,297,541,20,10,10
+55794,6,297,542,24,10,10
+55795,6,297,543,20,10,10
+55796,6,297,544,20,10,10
+55797,6,297,538,21,5,5
+55798,6,297,539,19,5,5
+55799,6,297,540,23,8,8
+55800,6,297,541,20,10,10
+55801,6,297,542,24,10,10
+55802,6,297,543,20,10,10
+55803,6,297,544,20,10,10
+55804,6,297,538,19,5,5
+55805,6,297,539,19,10,10
+55806,6,297,540,20,10,10
+55807,6,297,541,41,6,6
+55808,6,297,542,19,5,5
+55809,6,297,543,35,6,6
+55810,6,297,544,35,6,6
+55811,6,298,538,21,5,5
+55812,6,298,539,19,5,5
+55813,6,298,540,23,8,8
+55814,6,298,541,20,10,10
+55815,6,298,542,24,10,10
+55816,6,298,543,20,10,10
+55817,6,298,544,20,10,10
+55818,6,298,538,21,5,5
+55819,6,298,539,19,5,5
+55820,6,298,540,23,8,8
+55821,6,298,541,20,10,10
+55822,6,298,542,24,10,10
+55823,6,298,543,20,10,10
+55824,6,298,544,20,10,10
+55825,6,298,538,19,5,5
+55826,6,298,539,19,10,10
+55827,6,298,540,20,10,10
+55828,6,298,541,41,6,6
+55829,6,298,542,19,5,5
+55830,6,298,543,35,6,6
+55831,6,298,544,35,6,6
+55832,6,299,538,16,13,13
+55833,6,299,539,209,13,13
+55834,6,299,540,17,15,15
+55835,6,299,541,63,12,12
+55836,6,299,542,39,14,14
+55837,6,299,543,63,14,14
+55838,6,299,544,63,14,14
+55839,6,299,538,16,13,13
+55840,6,299,539,209,13,13
+55841,6,299,540,17,15,15
+55842,6,299,541,63,12,12
+55843,6,299,542,39,14,14
+55844,6,299,543,63,14,14
+55845,6,299,544,63,14,14
+55846,6,299,538,163,13,13
+55847,6,299,539,52,13,13
+55848,6,299,540,164,15,15
+55849,6,299,541,63,12,12
+55850,6,299,542,39,14,14
+55851,6,299,543,63,14,14
+55852,6,299,544,63,14,14
+55853,6,300,538,19,13,13
+55854,6,300,539,209,13,13
+55855,6,300,540,81,14,14
+55856,6,300,541,20,15,15
+55857,6,300,542,39,12,12
+55858,6,300,543,210,15,15
+55859,6,300,544,210,15,15
+55860,6,300,538,19,13,13
+55861,6,300,539,209,13,13
+55862,6,300,540,81,14,14
+55863,6,300,541,20,15,15
+55864,6,300,542,39,12,12
+55865,6,300,543,210,15,15
+55866,6,300,544,210,15,15
+55867,6,300,538,52,13,13
+55868,6,300,539,96,13,13
+55869,6,300,540,81,14,14
+55870,6,300,541,54,15,15
+55871,6,300,542,39,12,12
+55872,6,300,543,20,15,15
+55873,6,300,544,20,15,15
+55874,6,301,538,19,17,17
+55875,6,301,539,21,17,17
+55876,6,301,540,209,18,18
+55877,6,301,541,20,18,18
+55878,6,301,542,39,18,18
+55879,6,301,543,63,16,16
+55880,6,301,544,63,16,16
+55881,6,301,538,19,17,17
+55882,6,301,539,21,17,17
+55883,6,301,540,209,18,18
+55884,6,301,541,20,18,18
+55885,6,301,542,39,18,18
+55886,6,301,543,63,16,16
+55887,6,301,544,63,16,16
+55888,6,301,538,52,17,17
+55889,6,301,539,198,17,17
+55890,6,301,540,228,18,18
+55891,6,301,541,53,18,18
+55892,6,301,542,39,18,18
+55893,6,301,543,63,16,16
+55894,6,301,544,63,16,16
+55895,6,302,538,209,17,17
+55896,6,302,539,17,19,19
+55897,6,302,540,63,16,16
+55898,6,302,541,58,17,17
+55899,6,302,542,39,16,16
+55900,6,302,543,64,18,18
+55901,6,302,544,64,18,18
+55902,6,302,538,209,17,17
+55903,6,302,539,17,19,19
+55904,6,302,540,63,16,16
+55905,6,302,541,58,17,17
+55906,6,302,542,39,16,16
+55907,6,302,543,64,18,18
+55908,6,302,544,64,18,18
+55909,6,302,538,52,17,17
+55910,6,302,539,164,20,20
+55911,6,302,540,63,16,16
+55912,6,302,541,93,17,17
+55913,6,302,542,39,16,16
+55914,6,302,543,64,18,18
+55915,6,302,544,64,18,18
+55916,6,303,538,19,15,15
+55917,6,303,539,21,15,15
+55918,6,303,540,20,15,15
+55919,6,303,541,22,15,15
+55920,6,303,542,22,15,15
+55921,6,303,543,105,18,18
+55922,6,303,544,105,18,18
+55923,6,303,538,19,15,15
+55924,6,303,539,21,15,15
+55925,6,303,540,20,15,15
+55926,6,303,541,22,15,15
+55927,6,303,542,22,15,15
+55928,6,303,543,105,18,18
+55929,6,303,544,105,18,18
+55930,6,303,538,19,15,15
+55931,6,303,539,48,15,15
+55932,6,303,540,20,15,15
+55933,6,303,541,49,15,15
+55934,6,303,542,41,15,15
+55935,6,303,543,20,18,18
+55936,6,303,544,20,18,18
+55937,6,304,538,21,15,15
+55938,6,304,539,100,17,17
+55939,6,304,540,20,15,15
+55940,6,304,541,22,15,15
+55941,6,304,542,105,15,15
+55942,6,304,543,125,16,16
+55943,6,304,544,125,16,16
+55944,6,304,538,21,15,15
+55945,6,304,539,100,17,17
+55946,6,304,540,20,15,15
+55947,6,304,541,22,15,15
+55948,6,304,542,105,15,15
+55949,6,304,543,125,16,16
+55950,6,304,544,125,16,16
+55951,6,304,538,48,15,15
+55952,6,304,539,100,17,17
+55953,6,304,540,20,15,15
+55954,6,304,541,49,15,15
+55955,6,304,542,41,15,15
+55956,6,304,543,125,16,16
+55957,6,304,544,125,16,16
+55958,6,305,538,187,14,14
+55959,6,305,539,20,15,15
+55960,6,305,540,81,15,15
+55961,6,305,541,17,16,16
+55962,6,305,542,19,16,16
+55963,6,305,543,187,16,16
+55964,6,305,544,187,16,16
+55965,6,305,538,187,14,14
+55966,6,305,539,20,15,15
+55967,6,305,540,81,15,15
+55968,6,305,541,17,16,16
+55969,6,305,542,19,16,16
+55970,6,305,543,187,16,16
+55971,6,305,544,187,16,16
+55972,6,305,538,96,14,14
+55973,6,305,539,52,15,15
+55974,6,305,540,81,15,15
+55975,6,305,541,164,16,16
+55976,6,305,542,20,16,16
+55977,6,305,543,97,16,16
+55978,6,305,544,97,16,16
+55979,6,306,538,30,23,23
+55980,6,306,539,33,23,23
+55981,6,306,540,17,25,25
+55982,6,306,541,187,25,25
+55983,6,306,542,187,27,27
+55984,6,306,543,187,27,27
+55985,6,306,544,113,25,25
+55986,6,306,538,30,23,23
+55987,6,306,539,33,23,23
+55988,6,306,540,17,25,25
+55989,6,306,541,187,25,25
+55990,6,306,542,187,27,27
+55991,6,306,543,187,27,27
+55992,6,306,544,113,25,25
+55993,6,306,538,48,23,23
+55994,6,306,539,195,23,23
+55995,6,306,540,164,25,25
+55996,6,306,541,49,25,25
+55997,6,306,542,195,25,25
+55998,6,306,543,195,25,25
+55999,6,306,544,113,25,25
+56000,6,307,538,30,26,26
+56001,6,307,539,33,26,26
+56002,6,307,540,17,28,28
+56003,6,307,541,187,28,28
+56004,6,307,542,188,30,30
+56005,6,307,543,188,30,30
+56006,6,307,544,113,28,28
+56007,6,307,538,30,26,26
+56008,6,307,539,33,26,26
+56009,6,307,540,17,28,28
+56010,6,307,541,187,28,28
+56011,6,307,542,188,30,30
+56012,6,307,543,188,30,30
+56013,6,307,544,113,28,28
+56014,6,307,538,48,26,26
+56015,6,307,539,195,26,26
+56016,6,307,540,164,28,28
+56017,6,307,541,49,28,28
+56018,6,307,542,195,28,28
+56019,6,307,543,195,28,28
+56020,6,307,544,113,28,28
+56021,6,308,538,30,23,23
+56022,6,308,539,33,23,23
+56023,6,308,540,17,25,25
+56024,6,308,541,187,25,25
+56025,6,308,542,187,27,27
+56026,6,308,543,187,27,27
+56027,6,308,544,113,25,25
+56028,6,308,538,30,23,23
+56029,6,308,539,33,23,23
+56030,6,308,540,17,25,25
+56031,6,308,541,187,25,25
+56032,6,308,542,187,27,27
+56033,6,308,543,187,27,27
+56034,6,308,544,113,25,25
+56035,6,308,538,48,23,23
+56036,6,308,539,195,23,23
+56037,6,308,540,164,25,25
+56038,6,308,541,49,25,25
+56039,6,308,542,195,25,25
+56040,6,308,543,195,25,25
+56041,6,308,544,113,25,25
+56042,6,309,538,88,26,26
+56043,6,309,539,22,27,27
+56044,6,309,540,88,28,28
+56045,6,309,541,22,29,29
+56046,6,309,542,218,29,29
+56047,6,309,543,89,30,30
+56048,6,309,544,89,30,30
+56049,6,309,538,88,26,26
+56050,6,309,539,22,27,27
+56051,6,309,540,88,28,28
+56052,6,309,541,22,29,29
+56053,6,309,542,22,29,29
+56054,6,309,543,89,30,30
+56055,6,309,544,89,30,30
+56056,6,309,538,88,26,26
+56057,6,309,539,88,27,27
+56058,6,309,540,88,28,28
+56059,6,309,541,198,29,29
+56060,6,309,542,198,29,29
+56061,6,309,543,89,30,30
+56062,6,309,544,89,30,30
+56063,6,310,538,22,30,30
+56064,6,310,539,218,29,29
+56065,6,310,540,88,29,29
+56066,6,310,541,22,32,32
+56067,6,310,542,218,32,32
+56068,6,310,543,89,33,33
+56069,6,310,544,89,33,33
+56070,6,310,538,22,30,30
+56071,6,310,539,88,29,29
+56072,6,310,540,88,31,31
+56073,6,310,541,22,32,32
+56074,6,310,542,88,33,33
+56075,6,310,543,89,33,33
+56076,6,310,544,89,33,33
+56077,6,310,538,88,30,30
+56078,6,310,539,88,29,29
+56079,6,310,540,88,31,31
+56080,6,310,541,88,32,32
+56081,6,310,542,88,33,33
+56082,6,310,543,89,33,33
+56083,6,310,544,89,33,33
+56084,6,311,538,88,26,26
+56085,6,311,539,22,27,27
+56086,6,311,540,88,28,28
+56087,6,311,541,22,29,29
+56088,6,311,542,218,29,29
+56089,6,311,543,89,30,30
+56090,6,311,544,89,30,30
+56091,6,311,538,88,26,26
+56092,6,311,539,22,27,27
+56093,6,311,540,88,28,28
+56094,6,311,541,22,29,29
+56095,6,311,542,22,29,29
+56096,6,311,543,89,30,30
+56097,6,311,544,89,30,30
+56098,6,311,538,88,26,26
+56099,6,311,539,88,27,27
+56100,6,311,540,88,28,28
+56101,6,311,541,88,29,29
+56102,6,311,542,88,29,29
+56103,6,311,543,89,30,30
+56104,6,311,544,89,30,30
+56105,6,312,538,114,30,30
+56106,6,312,539,19,25,25
+56107,6,312,540,114,35,35
+56108,6,312,541,20,20,20
+56109,6,312,542,122,30,30
+56110,6,312,543,122,28,28
+56111,6,312,544,122,28,28
+56112,6,312,538,114,30,30
+56113,6,312,539,19,25,25
+56114,6,312,540,114,35,35
+56115,6,312,541,20,20,20
+56116,6,312,542,122,30,30
+56117,6,312,543,122,28,28
+56118,6,312,544,122,28,28
+56119,6,312,538,114,30,30
+56120,6,312,539,19,25,25
+56121,6,312,540,114,35,35
+56122,6,312,541,20,20,20
+56123,6,312,542,114,30,30
+56124,6,312,543,114,28,28
+56125,6,312,544,114,28,28
+56126,6,313,538,19,3,3
+56127,6,313,539,21,3,3
+56128,6,313,540,21,5,5
+56129,6,313,541,84,4,4
+56130,6,313,542,77,6,6
+56131,6,313,543,22,7,7
+56132,6,313,544,22,7,7
+56133,6,313,538,19,3,3
+56134,6,313,539,21,3,3
+56135,6,313,540,21,5,5
+56136,6,313,541,84,4,4
+56137,6,313,542,77,6,6
+56138,6,313,543,22,7,7
+56139,6,313,544,22,7,7
+56140,6,313,538,19,3,3
+56141,6,313,539,60,3,3
+56142,6,313,540,19,5,5
+56143,6,313,541,60,4,4
+56144,6,313,542,19,6,6
+56145,6,313,543,19,7,7
+56146,6,313,544,19,7,7
+56147,6,314,538,10,8,8
+56148,6,314,539,191,12,12
+56149,6,314,540,10,10,10
+56150,6,314,541,63,12,12
+56151,6,314,542,69,10,10
+56152,6,314,543,12,14,14
+56153,6,314,544,12,14,14
+56154,6,314,538,10,8,8
+56155,6,314,539,10,10,10
+56156,6,314,540,11,12,12
+56157,6,314,541,63,12,12
+56158,6,314,542,69,10,10
+56159,6,314,543,12,14,14
+56160,6,314,544,12,14,14
+56161,6,314,538,48,10,10
+56162,6,314,539,43,10,10
+56163,6,314,540,43,12,12
+56164,6,314,541,63,12,12
+56165,6,314,542,69,10,10
+56166,6,314,543,44,14,14
+56167,6,314,544,44,14,14
+56168,6,315,538,10,10,10
+56169,6,315,539,16,10,10
+56170,6,315,540,17,12,12
+56171,6,315,541,11,12,12
+56172,6,315,542,69,10,10
+56173,6,315,543,12,14,14
+56174,6,315,544,12,14,14
+56175,6,315,538,10,10,10
+56176,6,315,539,16,10,10
+56177,6,315,540,17,12,12
+56178,6,315,541,11,12,12
+56179,6,315,542,69,10,10
+56180,6,315,543,12,14,14
+56181,6,315,544,12,14,14
+56182,6,315,538,43,10,10
+56183,6,315,539,163,10,10
+56184,6,315,540,48,12,12
+56185,6,315,541,164,12,12
+56186,6,315,542,69,10,10
+56187,6,315,543,164,14,14
+56188,6,315,544,164,14,14
+56189,6,287,538,84,28,28
+56190,6,287,539,28,28,28
+56191,6,287,540,77,32,32
+56192,6,287,541,20,30,30
+56193,6,287,542,84,30,30
+56194,6,287,543,24,30,30
+56195,6,287,544,24,30,30
+56196,6,287,538,84,28,28
+56197,6,287,539,28,28,28
+56198,6,287,540,77,32,32
+56199,6,287,541,20,30,30
+56200,6,287,542,84,30,30
+56201,6,287,543,24,30,30
+56202,6,287,544,24,30,30
+56203,6,287,538,164,28,28
+56204,6,287,539,20,28,28
+56205,6,287,540,164,32,32
+56206,6,287,541,20,30,30
+56207,6,287,542,195,30,30
+56208,6,287,543,195,30,30
+56209,6,287,544,195,30,30
+56210,6,288,538,84,28,28
+56211,6,288,539,24,28,28
+56212,6,288,540,20,30,30
+56213,6,288,541,84,30,30
+56214,6,288,542,77,32,32
+56215,6,288,543,85,30,30
+56216,6,288,544,85,30,30
+56217,6,288,538,84,28,28
+56218,6,288,539,24,28,28
+56219,6,288,540,20,30,30
+56220,6,288,541,84,30,30
+56221,6,288,542,77,32,32
+56222,6,288,543,85,30,30
+56223,6,288,544,85,30,30
+56224,6,288,538,195,28,28
+56225,6,288,539,164,28,28
+56226,6,288,540,20,30,30
+56227,6,288,541,195,30,30
+56228,6,288,542,164,32,32
+56229,6,288,543,164,32,32
+56230,6,288,544,164,32,32
+56231,6,289,538,114,39,39
+56232,6,289,539,77,40,40
+56233,6,289,540,78,40,40
+56234,6,289,541,24,42,42
+56235,6,289,542,84,41,41
+56236,6,289,543,85,43,43
+56237,6,289,544,85,43,43
+56238,6,289,538,114,39,39
+56239,6,289,539,77,40,40
+56240,6,289,540,78,40,40
+56241,6,289,541,24,42,42
+56242,6,289,542,84,41,41
+56243,6,289,543,85,43,43
+56244,6,289,544,85,43,43
+56245,6,289,538,114,39,39
+56246,6,289,539,61,40,40
+56247,6,289,540,42,40,40
+56248,6,289,541,61,40,40
+56249,6,289,542,42,42,42
+56250,6,289,543,42,42,42
+56251,6,289,544,42,42,42
+56252,6,185,538,16,2,2
+56253,6,185,539,161,2,2
+56254,6,185,540,16,3,3
+56255,6,185,541,161,3,3
+56256,6,185,542,19,2,2
+56257,6,185,543,187,3,3
+56258,6,185,544,187,3,3
+56259,6,185,538,16,2,2
+56260,6,185,539,161,2,2
+56261,6,185,540,16,3,3
+56262,6,185,541,161,3,3
+56263,6,185,542,19,2,2
+56264,6,185,543,187,3,3
+56265,6,185,544,187,3,3
+56266,6,185,538,163,2,2
+56267,6,185,539,19,2,2
+56268,6,185,540,163,3,3
+56269,6,185,541,19,3,3
+56270,6,185,542,19,2,2
+56271,6,185,543,163,3,3
+56272,6,185,544,163,3,3
+56273,6,187,538,16,3,3
+56274,6,187,539,10,3,3
+56275,6,187,540,10,4,4
+56276,6,187,541,16,4,4
+56277,6,187,542,13,3,3
+56278,6,187,543,187,4,4
+56279,6,187,544,187,4,4
+56280,6,187,538,165,3,3
+56281,6,187,539,10,3,3
+56282,6,187,540,10,4,4
+56283,6,187,541,16,4,4
+56284,6,187,542,13,3,3
+56285,6,187,543,187,4,4
+56286,6,187,544,187,4,4
+56287,6,187,538,167,3,3
+56288,6,187,539,163,3,3
+56289,6,187,540,60,4,4
+56290,6,187,541,163,4,4
+56291,6,187,542,41,3,3
+56292,6,187,543,163,4,4
+56293,6,187,544,163,4,4
+56294,6,188,538,16,4,4
+56295,6,188,539,10,4,4
+56296,6,188,540,10,5,5
+56297,6,188,541,16,5,5
+56298,6,188,542,13,4,4
+56299,6,188,543,187,5,5
+56300,6,188,544,187,5,5
+56301,6,188,538,165,4,4
+56302,6,188,539,10,4,4
+56303,6,188,540,10,5,5
+56304,6,188,541,16,5,5
+56305,6,188,542,13,4,4
+56306,6,188,543,187,5,5
+56307,6,188,544,187,5,5
+56308,6,188,538,167,4,4
+56309,6,188,539,60,4,4
+56310,6,188,540,69,5,5
+56311,6,188,541,163,5,5
+56312,6,188,542,41,4,4
+56313,6,188,543,92,5,5
+56314,6,188,544,92,5,5
+56315,6,192,538,23,4,4
+56316,6,192,539,19,5,5
+56317,6,192,540,69,7,7
+56318,6,192,541,187,6,6
+56319,6,192,542,16,7,7
+56320,6,192,543,187,7,7
+56321,6,192,544,187,7,7
+56322,6,192,538,23,4,4
+56323,6,192,539,19,5,5
+56324,6,192,540,69,7,7
+56325,6,192,541,187,6,6
+56326,6,192,542,16,7,7
+56327,6,192,543,187,7,7
+56328,6,192,544,187,7,7
+56329,6,192,538,194,4,4
+56330,6,192,539,19,5,5
+56331,6,192,540,69,7,7
+56332,6,192,541,41,6,6
+56333,6,192,542,163,7,7
+56334,6,192,543,92,7,7
+56335,6,192,544,92,7,7
+56336,6,201,538,19,6,6
+56337,6,201,539,21,6,6
+56338,6,201,540,74,6,6
+56339,6,201,541,187,6,6
+56340,6,201,542,23,7,7
+56341,6,201,543,187,7,7
+56342,6,201,544,187,7,7
+56343,6,201,538,19,6,6
+56344,6,201,539,21,6,6
+56345,6,201,540,74,6,6
+56346,6,201,541,187,6,6
+56347,6,201,542,23,7,7
+56348,6,201,543,187,7,7
+56349,6,201,544,187,7,7
+56350,6,201,538,19,6,6
+56351,6,201,539,41,6,6
+56352,6,201,540,74,6,6
+56353,6,201,541,41,6,6
+56354,6,201,542,19,7,7
+56355,6,201,543,19,7,7
+56356,6,201,544,19,7,7
+56357,6,205,538,209,10,10
+56358,6,205,539,19,11,11
+56359,6,205,540,16,12,12
+56360,6,205,541,63,10,10
+56361,6,205,542,39,12,12
+56362,6,205,543,132,10,10
+56363,6,205,544,132,10,10
+56364,6,205,538,209,10,10
+56365,6,205,539,19,11,11
+56366,6,205,540,16,12,12
+56367,6,205,541,63,10,10
+56368,6,205,542,39,12,12
+56369,6,205,543,132,10,10
+56370,6,205,544,132,10,10
+56371,6,205,538,96,12,12
+56372,6,205,539,19,11,11
+56373,6,205,540,163,12,12
+56374,6,205,541,63,10,10
+56375,6,205,542,39,12,12
+56376,6,205,543,132,10,10
+56377,6,205,544,132,10,10
+56378,6,206,538,209,12,12
+56379,6,206,539,16,14,14
+56380,6,206,540,58,13,13
+56381,6,206,541,63,10,10
+56382,6,206,542,39,12,12
+56383,6,206,543,132,10,10
+56384,6,206,544,193,12,12
+56385,6,206,538,209,12,12
+56386,6,206,539,16,14,14
+56387,6,206,540,58,13,13
+56388,6,206,541,63,10,10
+56389,6,206,542,39,12,12
+56390,6,206,543,132,10,10
+56391,6,206,544,193,12,12
+56392,6,206,538,96,12,12
+56393,6,206,539,163,14,14
+56394,6,206,540,52,13,13
+56395,6,206,541,63,10,10
+56396,6,206,542,39,12,12
+56397,6,206,543,132,10,10
+56398,6,206,544,193,12,12
+56399,6,206,538,32,12,12
+56400,6,206,539,29,12,12
+56401,6,206,540,193,12,12
+56402,6,206,541,193,14,14
+56403,6,206,542,16,14,14
+56404,6,206,543,132,10,10
+56405,6,206,544,132,10,10
+56406,6,206,538,32,12,12
+56407,6,206,539,29,12,12
+56408,6,206,540,193,12,12
+56409,6,206,541,193,14,14
+56410,6,206,542,16,14,14
+56411,6,206,543,132,10,10
+56412,6,206,544,132,10,10
+56413,6,206,538,32,12,12
+56414,6,206,539,29,12,12
+56415,6,206,540,193,12,12
+56416,6,206,541,193,14,14
+56417,6,206,542,163,14,14
+56418,6,206,543,132,10,10
+56419,6,206,544,132,10,10
+56420,6,209,538,16,4,4
+56421,6,209,539,16,4,4
+56422,6,209,540,69,5,5
+56423,6,209,541,58,5,5
+56424,6,209,542,16,5,5
+56425,6,209,543,16,6,6
+56426,6,209,544,16,6,6
+56427,6,209,538,165,4,4
+56428,6,209,539,16,4,4
+56429,6,209,540,69,5,5
+56430,6,209,541,58,5,5
+56431,6,209,542,16,5,5
+56432,6,209,543,16,6,6
+56433,6,209,544,16,6,6
+56434,6,209,538,167,4,4
+56435,6,209,539,163,4,4
+56436,6,209,540,69,5,5
+56437,6,209,541,163,5,5
+56438,6,209,542,163,5,5
+56439,6,209,543,92,5,5
+56440,6,209,544,92,5,5
+56441,6,210,538,16,13,13
+56442,6,210,539,58,14,14
+56443,6,210,540,16,15,15
+56444,6,210,541,58,16,16
+56445,6,210,542,17,15,15
+56446,6,210,543,16,15,15
+56447,6,210,544,16,15,15
+56448,6,210,538,163,13,13
+56449,6,210,539,58,14,14
+56450,6,210,540,16,15,15
+56451,6,210,541,58,16,16
+56452,6,210,542,17,15,15
+56453,6,210,543,164,15,15
+56454,6,210,544,164,15,15
+56455,6,210,538,167,13,13
+56456,6,210,539,234,14,14
+56457,6,210,540,163,15,15
+56458,6,210,541,234,16,16
+56459,6,210,542,164,15,15
+56460,6,210,543,168,15,15
+56461,6,210,544,168,15,15
+56462,6,222,538,19,16,16
+56463,6,222,539,20,16,16
+56464,6,222,540,81,16,16
+56465,6,222,541,17,16,16
+56466,6,222,542,128,13,13
+56467,6,222,543,241,13,13
+56468,6,222,544,241,13,13
+56469,6,222,538,19,16,16
+56470,6,222,539,20,16,16
+56471,6,222,540,81,16,16
+56472,6,222,541,17,16,16
+56473,6,222,542,128,13,13
+56474,6,222,543,241,13,13
+56475,6,222,544,241,13,13
+56476,6,222,538,52,16,16
+56477,6,222,539,20,16,16
+56478,6,222,540,81,16,16
+56479,6,222,541,164,16,16
+56480,6,222,542,52,16,16
+56481,6,222,543,52,16,16
+56482,6,222,544,52,16,16
+56483,6,223,538,19,16,16
+56484,6,223,539,20,16,16
+56485,6,223,540,81,16,16
+56486,6,223,541,17,16,16
+56487,6,223,542,128,15,15
+56488,6,223,543,241,15,15
+56489,6,223,544,241,15,15
+56490,6,223,538,19,16,16
+56491,6,223,539,20,16,16
+56492,6,223,540,81,16,16
+56493,6,223,541,17,16,16
+56494,6,223,542,128,15,15
+56495,6,223,543,241,15,15
+56496,6,223,544,241,15,15
+56497,6,223,538,52,16,16
+56498,6,223,539,20,16,16
+56499,6,223,540,81,16,16
+56500,6,223,541,164,16,16
+56501,6,223,542,52,18,18
+56502,6,223,543,52,18,18
+56503,6,223,544,52,18,18
+56504,6,236,538,23,13,13
+56505,6,236,539,21,14,14
+56506,6,236,540,19,15,15
+56507,6,236,541,20,16,16
+56508,6,236,542,24,15,15
+56509,6,236,543,22,16,16
+56510,6,236,544,22,16,16
+56511,6,236,538,23,13,13
+56512,6,236,539,21,14,14
+56513,6,236,540,19,15,15
+56514,6,236,541,20,16,16
+56515,6,236,542,24,15,15
+56516,6,236,543,22,16,16
+56517,6,236,544,22,16,16
+56518,6,236,538,19,13,13
+56519,6,236,539,41,14,14
+56520,6,236,540,20,15,15
+56521,6,236,541,42,16,16
+56522,6,236,542,183,15,15
+56523,6,236,543,42,16,16
+56524,6,236,544,42,16,16
+56525,6,241,538,161,15,15
+56526,6,241,539,17,16,16
+56527,6,241,540,83,16,16
+56528,6,241,541,162,15,15
+56529,6,241,542,20,17,17
+56530,6,241,543,162,17,17
+56531,6,241,544,162,17,17
+56532,6,241,538,161,15,15
+56533,6,241,539,17,16,16
+56534,6,241,540,83,16,16
+56535,6,241,541,162,15,15
+56536,6,241,542,20,17,17
+56537,6,241,543,162,17,17
+56538,6,241,544,162,17,17
+56539,6,241,538,48,15,15
+56540,6,241,539,163,16,16
+56541,6,241,540,20,16,16
+56542,6,241,541,48,17,17
+56543,6,241,542,20,17,17
+56544,6,241,543,49,17,17
+56545,6,241,544,49,17,17
+56546,6,243,538,114,23,23
+56547,6,243,539,108,22,22
+56548,6,243,540,69,22,22
+56549,6,243,541,70,24,24
+56550,6,243,542,108,24,24
+56551,6,243,543,108,26,26
+56552,6,243,544,108,26,26
+56553,6,243,538,114,23,23
+56554,6,243,539,108,22,22
+56555,6,243,540,69,22,22
+56556,6,243,541,70,24,24
+56557,6,243,542,108,24,24
+56558,6,243,543,108,26,26
+56559,6,243,544,108,26,26
+56560,6,243,538,114,23,23
+56561,6,243,539,60,22,22
+56562,6,243,540,69,22,22
+56563,6,243,541,70,24,24
+56564,6,243,542,61,24,24
+56565,6,243,543,61,26,26
+56566,6,243,544,61,26,26
+56567,6,251,538,74,23,23
+56568,6,251,539,75,23,23
+56569,6,251,540,207,24,24
+56570,6,251,541,232,25,25
+56571,6,251,542,232,30,30
+56572,6,251,543,227,27,27
+56573,6,251,544,227,27,27
+56574,6,251,538,74,23,23
+56575,6,251,539,75,23,23
+56576,6,251,540,207,24,24
+56577,6,251,541,232,25,25
+56578,6,251,542,231,20,20
+56579,6,251,543,227,27,27
+56580,6,251,544,227,27,27
+56581,6,251,538,74,23,23
+56582,6,251,539,75,23,23
+56583,6,251,540,207,24,24
+56584,6,251,541,75,25,25
+56585,6,251,542,75,27,27
+56586,6,251,543,75,27,27
+56587,6,251,544,75,27,27
+56588,6,252,538,74,2,2
+56589,6,252,539,21,2,2
+56590,6,252,540,74,3,3
+56591,6,252,541,19,3,3
+56592,6,252,542,19,2,2
+56593,6,252,543,19,2,2
+56594,6,252,544,19,2,2
+56595,6,252,538,74,2,2
+56596,6,252,539,21,2,2
+56597,6,252,540,74,3,3
+56598,6,252,541,19,3,3
+56599,6,252,542,231,2,2
+56600,6,252,543,19,2,2
+56601,6,252,544,19,2,2
+56602,6,252,538,74,2,2
+56603,6,252,539,19,2,2
+56604,6,252,540,74,3,3
+56605,6,252,541,19,3,3
+56606,6,252,542,19,2,2
+56607,6,252,543,19,2,2
+56608,6,252,544,19,2,2
+56609,6,244,538,220,21,21
+56610,6,244,539,42,22,22
+56611,6,244,540,42,22,22
+56612,6,244,541,220,23,23
+56613,6,244,542,42,25,25
+56614,6,244,543,42,22,22
+56615,6,244,544,42,22,22
+56616,6,244,538,220,21,21
+56617,6,244,539,42,22,22
+56618,6,244,540,42,22,22
+56619,6,244,541,220,23,23
+56620,6,244,542,42,25,25
+56621,6,244,543,42,22,22
+56622,6,244,544,42,22,22
+56623,6,244,538,225,21,21
+56624,6,244,539,42,22,22
+56625,6,244,540,42,22,22
+56626,6,244,541,225,23,23
+56627,6,244,542,42,24,24
+56628,6,244,543,42,22,22
+56629,6,244,544,42,22,22
+56630,6,245,538,220,22,22
+56631,6,245,539,42,23,23
+56632,6,245,540,42,23,23
+56633,6,245,541,220,24,24
+56634,6,245,542,42,25,25
+56635,6,245,543,42,23,23
+56636,6,245,544,124,22,22
+56637,6,245,538,220,22,22
+56638,6,245,539,42,23,23
+56639,6,245,540,42,23,23
+56640,6,245,541,220,24,24
+56641,6,245,542,42,25,25
+56642,6,245,543,42,23,23
+56643,6,245,544,124,22,22
+56644,6,245,538,225,22,22
+56645,6,245,539,42,23,23
+56646,6,245,540,42,23,23
+56647,6,245,541,225,24,24
+56648,6,245,542,42,25,25
+56649,6,245,543,42,23,23
+56650,6,245,544,215,22,22
+56651,6,246,538,220,23,23
+56652,6,246,539,42,24,24
+56653,6,246,540,42,24,24
+56654,6,246,541,220,25,25
+56655,6,246,542,42,26,26
+56656,6,246,543,124,22,22
+56657,6,246,544,124,24,24
+56658,6,246,538,220,23,23
+56659,6,246,539,42,24,24
+56660,6,246,540,42,24,24
+56661,6,246,541,220,25,25
+56662,6,246,542,42,26,26
+56663,6,246,543,124,22,22
+56664,6,246,544,124,24,24
+56665,6,246,538,225,23,23
+56666,6,246,539,42,24,24
+56667,6,246,540,42,24,24
+56668,6,246,541,225,25,25
+56669,6,246,542,42,26,26
+56670,6,246,543,215,22,22
+56671,6,246,544,215,24,24
+56672,6,247,538,220,24,24
+56673,6,247,539,42,25,25
+56674,6,247,540,42,25,25
+56675,6,247,541,220,26,26
+56676,6,247,542,124,22,22
+56677,6,247,543,124,24,24
+56678,6,247,544,124,26,26
+56679,6,247,538,220,24,24
+56680,6,247,539,42,25,25
+56681,6,247,540,42,25,25
+56682,6,247,541,220,26,26
+56683,6,247,542,124,22,22
+56684,6,247,543,124,24,24
+56685,6,247,544,124,26,26
+56686,6,247,538,225,24,24
+56687,6,247,539,42,25,25
+56688,6,247,540,42,25,25
+56689,6,247,541,225,26,26
+56690,6,247,542,215,22,22
+56691,6,247,543,215,24,24
+56692,6,247,544,215,26,26
+56693,6,294,538,75,34,34
+56694,6,294,539,111,32,32
+56695,6,294,540,95,33,33
+56696,6,294,541,42,34,34
+56697,6,294,542,28,35,35
+56698,6,294,543,112,35,35
+56699,6,294,544,112,35,35
+56700,6,294,538,75,34,34
+56701,6,294,539,111,32,32
+56702,6,294,540,95,33,33
+56703,6,294,541,42,34,34
+56704,6,294,542,28,35,35
+56705,6,294,543,112,35,35
+56706,6,294,544,112,35,35
+56707,6,294,538,42,34,34
+56708,6,294,539,75,34,34
+56709,6,294,540,95,32,32
+56710,6,294,541,75,36,36
+56711,6,294,542,75,38,38
+56712,6,294,543,75,40,40
+56713,6,294,544,75,40,40
+56714,6,318,538,75,34,34
+56715,6,318,539,111,32,32
+56716,6,318,540,95,33,33
+56717,6,318,541,42,34,34
+56718,6,318,542,28,35,35
+56719,6,318,543,112,35,35
+56720,6,318,544,112,35,35
+56721,6,318,538,75,34,34
+56722,6,318,539,111,32,32
+56723,6,318,540,95,33,33
+56724,6,318,541,42,34,34
+56725,6,318,542,28,35,35
+56726,6,318,543,112,35,35
+56727,6,318,544,112,35,35
+56728,6,318,538,42,34,34
+56729,6,318,539,75,34,34
+56730,6,318,540,95,32,32
+56731,6,318,541,75,36,36
+56732,6,318,542,75,38,38
+56733,6,318,543,75,40,40
+56734,6,318,544,75,40,40
+56735,6,319,538,75,34,34
+56736,6,319,539,111,32,32
+56737,6,319,540,95,33,33
+56738,6,319,541,42,34,34
+56739,6,319,542,28,35,35
+56740,6,319,543,112,35,35
+56741,6,319,544,112,35,35
+56742,6,319,538,75,34,34
+56743,6,319,539,111,32,32
+56744,6,319,540,95,33,33
+56745,6,319,541,42,34,34
+56746,6,319,542,28,35,35
+56747,6,319,543,112,35,35
+56748,6,319,544,112,35,35
+56749,6,319,538,42,34,34
+56750,6,319,539,75,34,34
+56751,6,319,540,95,32,32
+56752,6,319,541,75,36,36
+56753,6,319,542,75,38,38
+56754,6,319,543,75,40,40
+56755,6,319,544,75,40,40
+56756,6,193,538,177,20,20
+56757,6,193,539,177,22,22
+56758,6,193,540,177,18,18
+56759,6,193,541,177,24,24
+56760,6,193,542,235,20,20
+56761,6,193,543,235,22,22
+56762,6,193,544,235,22,22
+56763,6,193,538,177,20,20
+56764,6,193,539,177,22,22
+56765,6,193,540,177,18,18
+56766,6,193,541,177,24,24
+56767,6,193,542,194,20,20
+56768,6,193,543,195,22,22
+56769,6,193,544,195,22,22
+56770,6,193,538,177,20,20
+56771,6,193,539,177,22,22
+56772,6,193,540,177,18,18
+56773,6,193,541,177,24,24
+56774,6,193,542,194,22,22
+56775,6,193,543,195,22,22
+56776,6,193,544,195,22,22
+56777,6,194,538,201,5,5
+56778,6,194,539,201,5,5
+56779,6,194,540,201,5,5
+56780,6,194,541,201,5,5
+56781,6,194,542,201,5,5
+56782,6,194,543,201,5,5
+56783,6,194,544,201,5,5
+56784,6,195,538,201,5,5
+56785,6,195,539,201,5,5
+56786,6,195,540,201,5,5
+56787,6,195,541,201,5,5
+56788,6,195,542,201,5,5
+56789,6,195,543,201,5,5
+56790,6,195,544,201,5,5
+56791,6,196,538,201,5,5
+56792,6,196,539,201,5,5
+56793,6,196,540,201,5,5
+56794,6,196,541,201,5,5
+56795,6,196,542,201,5,5
+56796,6,196,543,201,5,5
+56797,6,196,544,201,5,5
+56798,6,197,538,201,5,5
+56799,6,197,539,201,5,5
+56800,6,197,540,201,5,5
+56801,6,197,541,201,5,5
+56802,6,197,542,201,5,5
+56803,6,197,543,201,5,5
+56804,6,197,544,201,5,5
+56805,6,212,538,19,13,13
+56806,6,212,539,109,14,14
+56807,6,212,540,19,15,15
+56808,6,212,541,41,14,14
+56809,6,212,542,19,15,15
+56810,6,212,543,20,15,15
+56811,6,212,544,20,15,15
+56812,6,213,538,19,14,14
+56813,6,213,539,109,14,14
+56814,6,213,540,109,16,16
+56815,6,213,541,41,15,15
+56816,6,213,542,109,12,12
+56817,6,213,543,109,16,16
+56818,6,213,544,110,16,16
+56819,6,190,538,19,3,3
+56820,6,190,539,19,4,4
+56821,6,190,540,19,5,5
+56822,6,190,541,19,3,3
+56823,6,190,542,19,6,6
+56824,6,190,543,19,5,5
+56825,6,190,544,19,5,5
+56826,6,190,538,19,3,3
+56827,6,190,539,19,4,4
+56828,6,190,540,19,5,5
+56829,6,190,541,19,3,3
+56830,6,190,542,19,6,6
+56831,6,190,543,19,5,5
+56832,6,190,544,19,5,5
+56833,6,190,538,92,3,3
+56834,6,190,539,92,4,4
+56835,6,190,540,92,5,5
+56836,6,190,541,19,3,3
+56837,6,190,542,92,6,6
+56838,6,190,543,19,5,5
+56839,6,190,544,19,5,5
+56840,6,191,538,19,3,3
+56841,6,191,539,19,4,4
+56842,6,191,540,19,5,5
+56843,6,191,541,19,3,3
+56844,6,191,542,19,6,6
+56845,6,191,543,19,5,5
+56846,6,191,544,19,5,5
+56847,6,191,538,19,3,3
+56848,6,191,539,19,4,4
+56849,6,191,540,19,5,5
+56850,6,191,541,19,3,3
+56851,6,191,542,19,6,6
+56852,6,191,543,19,5,5
+56853,6,191,544,19,5,5
+56854,6,191,538,92,3,3
+56855,6,191,539,92,4,4
+56856,6,191,540,92,5,5
+56857,6,191,541,19,3,3
+56858,6,191,542,92,6,6
+56859,6,191,543,19,5,5
+56860,6,191,544,19,5,5
+56861,6,214,538,19,20,20
+56862,6,214,539,19,21,21
+56863,6,214,540,19,22,22
+56864,6,214,541,19,22,22
+56865,6,214,542,19,23,23
+56866,6,214,543,19,24,24
+56867,6,214,544,19,24,24
+56868,6,214,538,19,20,20
+56869,6,214,539,19,21,21
+56870,6,214,540,19,22,22
+56871,6,214,541,19,22,22
+56872,6,214,542,19,23,23
+56873,6,214,543,19,24,24
+56874,6,214,544,19,24,24
+56875,6,214,538,92,20,20
+56876,6,214,539,92,21,21
+56877,6,214,540,92,22,22
+56878,6,214,541,19,22,22
+56879,6,214,542,19,23,23
+56880,6,214,543,19,24,24
+56881,6,214,544,19,24,24
+56882,6,215,538,19,20,20
+56883,6,215,539,19,21,21
+56884,6,215,540,19,22,22
+56885,6,215,541,19,22,22
+56886,6,215,542,19,23,23
+56887,6,215,543,19,24,24
+56888,6,215,544,19,24,24
+56889,6,215,538,19,20,20
+56890,6,215,539,19,21,21
+56891,6,215,540,19,22,22
+56892,6,215,541,19,22,22
+56893,6,215,542,19,23,23
+56894,6,215,543,19,24,24
+56895,6,215,544,19,24,24
+56896,6,215,538,92,20,20
+56897,6,215,539,92,21,21
+56898,6,215,540,92,22,22
+56899,6,215,541,19,22,22
+56900,6,215,542,19,23,23
+56901,6,215,543,19,24,24
+56902,6,215,544,19,24,24
+56903,6,216,538,19,20,20
+56904,6,216,539,19,21,21
+56905,6,216,540,19,22,22
+56906,6,216,541,19,22,22
+56907,6,216,542,19,23,23
+56908,6,216,543,19,24,24
+56909,6,216,544,19,24,24
+56910,6,216,538,19,20,20
+56911,6,216,539,19,21,21
+56912,6,216,540,19,22,22
+56913,6,216,541,19,22,22
+56914,6,216,542,19,23,23
+56915,6,216,543,19,24,24
+56916,6,216,544,19,24,24
+56917,6,216,538,92,20,20
+56918,6,216,539,92,21,21
+56919,6,216,540,92,22,22
+56920,6,216,541,19,22,22
+56921,6,216,542,19,23,23
+56922,6,216,543,19,24,24
+56923,6,216,544,19,24,24
+56924,6,217,538,19,20,20
+56925,6,217,539,19,21,21
+56926,6,217,540,19,22,22
+56927,6,217,541,19,22,22
+56928,6,217,542,19,23,23
+56929,6,217,543,19,24,24
+56930,6,217,544,19,24,24
+56931,6,217,538,19,20,20
+56932,6,217,539,19,21,21
+56933,6,217,540,19,22,22
+56934,6,217,541,19,22,22
+56935,6,217,542,19,23,23
+56936,6,217,543,19,24,24
+56937,6,217,544,19,24,24
+56938,6,217,538,92,20,20
+56939,6,217,539,92,21,21
+56940,6,217,540,92,22,22
+56941,6,217,541,19,22,22
+56942,6,217,542,19,23,23
+56943,6,217,543,19,24,24
+56944,6,217,544,19,24,24
+56945,6,218,538,19,20,20
+56946,6,218,539,19,21,21
+56947,6,218,540,19,22,22
+56948,6,218,541,19,22,22
+56949,6,218,542,19,23,23
+56950,6,218,543,19,24,24
+56951,6,218,544,19,24,24
+56952,6,218,538,19,20,20
+56953,6,218,539,19,21,21
+56954,6,218,540,19,22,22
+56955,6,218,541,19,22,22
+56956,6,218,542,19,23,23
+56957,6,218,543,19,24,24
+56958,6,218,544,19,24,24
+56959,6,218,538,92,20,20
+56960,6,218,539,92,21,21
+56961,6,218,540,92,22,22
+56962,6,218,541,19,22,22
+56963,6,218,542,19,23,23
+56964,6,218,543,19,24,24
+56965,6,218,544,19,24,24
+56966,6,219,538,19,20,20
+56967,6,219,539,19,21,21
+56968,6,219,540,19,22,22
+56969,6,219,541,19,22,22
+56970,6,219,542,19,23,23
+56971,6,219,543,19,24,24
+56972,6,219,544,19,24,24
+56973,6,219,538,19,20,20
+56974,6,219,539,19,21,21
+56975,6,219,540,19,22,22
+56976,6,219,541,19,22,22
+56977,6,219,542,19,23,23
+56978,6,219,543,19,24,24
+56979,6,219,544,19,24,24
+56980,6,219,538,92,20,20
+56981,6,219,539,92,21,21
+56982,6,219,540,92,22,22
+56983,6,219,541,19,22,22
+56984,6,219,542,19,23,23
+56985,6,219,543,19,24,24
+56986,6,219,544,19,24,24
+56987,6,220,538,19,20,20
+56988,6,220,539,19,21,21
+56989,6,220,540,19,22,22
+56990,6,220,541,19,22,22
+56991,6,220,542,19,23,23
+56992,6,220,543,19,24,24
+56993,6,220,544,19,24,24
+56994,6,220,538,19,20,20
+56995,6,220,539,19,21,21
+56996,6,220,540,19,22,22
+56997,6,220,541,19,22,22
+56998,6,220,542,19,23,23
+56999,6,220,543,19,24,24
+57000,6,220,544,19,24,24
+57001,6,220,538,92,20,20
+57002,6,220,539,92,21,21
+57003,6,220,540,92,22,22
+57004,6,220,541,19,22,22
+57005,6,220,542,19,23,23
+57006,6,220,543,19,24,24
+57007,6,220,544,19,24,24
+57008,6,221,538,19,20,20
+57009,6,221,539,19,21,21
+57010,6,221,540,19,22,22
+57011,6,221,541,19,22,22
+57012,6,221,542,19,23,23
+57013,6,221,543,19,24,24
+57014,6,221,544,19,24,24
+57015,6,221,538,19,20,20
+57016,6,221,539,19,21,21
+57017,6,221,540,19,22,22
+57018,6,221,541,19,22,22
+57019,6,221,542,19,23,23
+57020,6,221,543,19,24,24
+57021,6,221,544,19,24,24
+57022,6,221,538,92,20,20
+57023,6,221,539,92,21,21
+57024,6,221,540,92,22,22
+57025,6,221,541,19,22,22
+57026,6,221,542,19,23,23
+57027,6,221,543,19,24,24
+57028,6,221,544,19,24,24
+57029,6,227,538,98,22,22
+57030,6,227,539,41,23,23
+57031,6,227,540,86,22,22
+57032,6,227,541,98,24,24
+57033,6,227,542,42,25,25
+57034,6,227,543,86,24,24
+57035,6,227,544,86,24,24
+57036,6,227,538,98,22,22
+57037,6,227,539,41,23,23
+57038,6,227,540,86,22,22
+57039,6,227,541,98,24,24
+57040,6,227,542,42,25,25
+57041,6,227,543,86,24,24
+57042,6,227,544,86,24,24
+57043,6,227,538,98,22,22
+57044,6,227,539,41,23,23
+57045,6,227,540,98,22,22
+57046,6,227,541,86,24,24
+57047,6,227,542,42,23,23
+57048,6,227,543,86,24,24
+57049,6,227,544,86,24,24
+57050,6,228,538,98,23,23
+57051,6,228,539,41,24,24
+57052,6,228,540,86,23,23
+57053,6,228,541,98,25,25
+57054,6,228,542,42,26,26
+57055,6,228,543,86,25,25
+57056,6,228,544,86,25,25
+57057,6,228,538,98,23,23
+57058,6,228,539,41,24,24
+57059,6,228,540,86,23,23
+57060,6,228,541,98,25,25
+57061,6,228,542,42,26,26
+57062,6,228,543,86,25,25
+57063,6,228,544,86,25,25
+57064,6,228,538,98,23,23
+57065,6,228,539,41,24,24
+57066,6,228,540,98,23,23
+57067,6,228,541,98,25,25
+57068,6,228,542,42,26,26
+57069,6,228,543,42,25,25
+57070,6,228,544,42,25,25
+57071,6,230,538,98,24,24
+57072,6,230,539,41,25,25
+57073,6,230,540,86,24,24
+57074,6,230,541,98,26,26
+57075,6,230,542,42,27,27
+57076,6,230,543,86,26,26
+57077,6,230,544,86,26,26
+57078,6,230,538,98,24,24
+57079,6,230,539,41,25,25
+57080,6,230,540,86,24,24
+57081,6,230,541,98,26,26
+57082,6,230,542,42,27,27
+57083,6,230,543,86,26,26
+57084,6,230,544,86,26,26
+57085,6,230,538,98,24,24
+57086,6,230,539,41,25,25
+57087,6,230,540,98,24,24
+57088,6,230,541,98,26,26
+57089,6,230,542,42,27,27
+57090,6,230,543,42,26,26
+57091,6,230,544,42,26,26
+57092,6,232,538,98,25,25
+57093,6,232,539,41,26,26
+57094,6,232,540,86,25,25
+57095,6,232,541,98,27,27
+57096,6,232,542,42,28,28
+57097,6,232,543,86,27,27
+57098,6,232,544,86,27,27
+57099,6,232,538,98,25,25
+57100,6,232,539,41,26,26
+57101,6,232,540,86,25,25
+57102,6,232,541,98,27,27
+57103,6,232,542,42,28,28
+57104,6,232,543,86,27,27
+57105,6,232,544,86,27,27
+57106,6,232,538,98,25,25
+57107,6,232,539,41,26,26
+57108,6,232,540,98,25,25
+57109,6,232,541,98,27,27
+57110,6,232,542,42,28,28
+57111,6,232,543,42,27,27
+57112,6,232,544,42,27,27
+57113,6,250,545,129,10,10
+57114,6,250,546,129,10,10
+57115,6,250,547,129,10,10
+57116,6,253,545,129,10,10
+57117,6,253,546,129,10,10
+57118,6,253,547,118,10,10
+57119,6,254,545,129,10,10
+57120,6,254,546,129,10,10
+57121,6,254,547,118,10,10
+57122,6,281,545,129,10,10
+57123,6,281,546,129,10,10
+57124,6,281,547,118,10,10
+57125,6,204,545,129,10,10
+57126,6,204,546,129,10,10
+57127,6,204,547,60,10,10
+57128,6,184,545,129,10,10
+57129,6,184,546,129,10,10
+57130,6,184,547,72,10,10
+57131,6,285,545,129,10,10
+57132,6,285,546,129,10,10
+57133,6,285,547,72,10,10
+57134,6,282,545,129,10,10
+57135,6,282,546,129,10,10
+57136,6,282,547,72,10,10
+57137,6,349,545,129,10,10
+57138,6,349,546,129,10,10
+57139,6,349,547,72,10,10
+57140,6,198,545,129,10,10
+57141,6,198,546,129,10,10
+57142,6,198,547,118,10,10
+57143,6,199,545,129,10,10
+57144,6,199,546,129,10,10
+57145,6,199,547,118,10,10
+57146,6,200,545,129,10,10
+57147,6,200,546,129,10,10
+57148,6,200,547,98,10,10
+57149,6,316,545,129,10,10
+57150,6,316,546,129,10,10
+57151,6,316,547,118,10,10
+57152,6,279,545,129,10,10
+57153,6,279,546,129,10,10
+57154,6,279,547,72,10,10
+57155,6,249,545,129,10,10
+57156,6,249,546,129,10,10
+57157,6,249,547,60,10,10
+57158,6,235,545,129,10,10
+57159,6,235,546,129,10,10
+57160,6,235,547,98,10,10
+57161,6,242,545,129,10,10
+57162,6,242,546,129,10,10
+57163,6,242,547,129,10,10
+57164,6,189,545,129,10,10
+57165,6,189,546,129,10,10
+57166,6,189,547,60,10,10
+57167,6,269,545,129,10,10
+57168,6,269,546,129,10,10
+57169,6,269,547,60,10,10
+57170,6,263,545,129,10,10
+57171,6,263,546,129,10,10
+57172,6,263,547,118,10,10
+57173,6,237,545,129,10,10
+57174,6,237,546,129,10,10
+57175,6,237,547,118,10,10
+57176,6,239,545,129,10,10
+57177,6,239,546,129,10,10
+57178,6,239,547,118,10,10
+57179,6,240,545,129,10,10
+57180,6,240,546,129,10,10
+57181,6,240,547,118,10,10
+57182,6,224,545,129,10,10
+57183,6,224,546,129,10,10
+57184,6,224,547,98,10,10
+57185,6,284,545,129,10,10
+57186,6,284,546,129,10,10
+57187,6,284,547,129,10,10
+57188,6,202,545,129,10,10
+57189,6,202,546,129,10,10
+57190,6,202,547,118,10,10
+57191,6,203,545,129,10,10
+57192,6,203,546,129,10,10
+57193,6,203,547,118,10,10
+57194,6,211,545,129,10,10
+57195,6,211,546,129,10,10
+57196,6,211,547,60,10,10
+57197,6,300,545,129,10,10
+57198,6,300,546,129,10,10
+57199,6,300,547,60,10,10
+57200,6,303,545,129,10,10
+57201,6,303,546,129,10,10
+57202,6,303,547,118,10,10
+57203,6,304,545,129,10,10
+57204,6,304,546,129,10,10
+57205,6,304,547,118,10,10
+57206,6,276,545,129,10,10
+57207,6,276,546,129,10,10
+57208,6,276,547,72,10,10
+57209,6,306,545,129,10,10
+57210,6,306,546,129,10,10
+57211,6,306,547,72,10,10
+57212,6,277,545,129,10,10
+57213,6,277,546,129,10,10
+57214,6,277,547,98,10,10
+57215,6,278,545,129,10,10
+57216,6,278,546,129,10,10
+57217,6,278,547,72,10,10
+57218,6,312,545,129,10,10
+57219,6,312,546,129,10,10
+57220,6,312,547,72,10,10
+57221,6,313,545,129,10,10
+57222,6,313,546,129,10,10
+57223,6,313,547,60,10,10
+57224,6,314,545,129,10,10
+57225,6,314,546,129,10,10
+57226,6,314,547,118,10,10
+57227,6,315,545,129,10,10
+57228,6,315,546,129,10,10
+57229,6,315,547,118,10,10
+57230,6,287,545,129,10,10
+57231,6,287,546,129,10,10
+57232,6,287,547,72,10,10
+57233,6,288,545,129,10,10
+57234,6,288,546,129,10,10
+57235,6,288,547,72,10,10
+57236,6,289,545,129,10,10
+57237,6,289,546,129,10,10
+57238,6,289,547,60,10,10
+57239,6,187,545,129,10,10
+57240,6,187,546,129,10,10
+57241,6,187,547,60,10,10
+57242,6,188,545,129,10,10
+57243,6,188,546,129,10,10
+57244,6,188,547,60,10,10
+57245,6,192,545,129,10,10
+57246,6,192,546,129,10,10
+57247,6,192,547,72,10,10
+57248,6,192,545,129,5,5
+57249,6,192,546,129,5,5
+57250,6,192,547,211,5,5
+57251,6,205,545,129,10,10
+57252,6,205,546,129,10,10
+57253,6,205,547,98,10,10
+57254,6,206,545,129,10,10
+57255,6,206,546,129,10,10
+57256,6,206,547,60,10,10
+57257,6,225,545,129,10,10
+57258,6,225,546,129,10,10
+57259,6,225,547,98,10,10
+57260,6,226,545,129,10,10
+57261,6,226,546,129,10,10
+57262,6,226,547,72,10,10
+57263,6,236,545,129,10,10
+57264,6,236,546,129,10,10
+57265,6,236,547,118,10,10
+57266,6,241,545,129,10,10
+57267,6,241,546,129,10,10
+57268,6,241,547,60,10,10
+57269,6,243,545,129,10,10
+57270,6,243,546,129,10,10
+57271,6,243,547,60,10,10
+57272,6,251,545,129,10,10
+57273,6,251,546,129,10,10
+57274,6,251,547,129,10,10
+57275,6,193,545,129,10,10
+57276,6,193,546,129,10,10
+57277,6,193,547,60,10,10
+57278,6,227,545,129,10,10
+57279,6,227,546,129,10,10
+57280,6,227,547,98,10,10
+57281,6,230,545,129,10,10
+57282,6,230,546,129,10,10
+57283,6,230,547,98,10,10
+57284,6,232,545,129,10,10
+57285,6,232,546,129,10,10
+57286,6,232,547,98,10,10
+57287,6,186,545,129,10,10
+57288,6,186,546,129,10,10
+57289,6,186,547,98,10,10
+57290,6,250,548,129,20,20
+57291,6,250,549,129,20,20
+57292,6,250,550,129,20,20
+57293,6,250,551,147,20,20
+57294,6,253,548,129,20,20
+57295,6,253,549,118,20,20
+57296,6,253,550,118,20,20
+57297,6,253,551,118,20,20
+57298,6,254,548,129,20,20
+57299,6,254,549,118,20,20
+57300,6,254,550,118,20,20
+57301,6,254,551,118,20,20
+57302,6,281,548,129,20,20
+57303,6,281,549,118,20,20
+57304,6,281,550,118,20,20
+57305,6,281,551,118,20,20
+57306,6,204,548,129,20,20
+57307,6,204,549,60,20,20
+57308,6,204,550,60,20,20
+57309,6,204,551,60,20,20
+57310,6,184,548,129,20,20
+57311,6,184,549,72,20,20
+57312,6,184,550,170,20,20
+57313,6,184,551,90,20,20
+57314,6,285,548,129,20,20
+57315,6,285,549,72,20,20
+57316,6,285,550,170,20,20
+57317,6,285,551,90,20,20
+57318,6,282,548,129,20,20
+57319,6,282,549,72,20,20
+57320,6,282,550,170,20,20
+57321,6,282,551,90,20,20
+57322,6,349,548,129,20,20
+57323,6,349,549,72,20,20
+57324,6,349,550,170,20,20
+57325,6,349,551,90,20,20
+57326,6,198,548,129,20,20
+57327,6,198,549,118,20,20
+57328,6,198,550,118,20,20
+57329,6,198,551,118,20,20
+57330,6,199,548,129,20,20
+57331,6,199,549,118,20,20
+57332,6,199,550,118,20,20
+57333,6,199,551,118,20,20
+57334,6,200,548,129,20,20
+57335,6,200,549,98,20,20
+57336,6,200,550,98,20,20
+57337,6,200,551,222,20,20
+57338,6,200,548,129,20,20
+57339,6,200,549,98,20,20
+57340,6,200,550,98,20,20
+57341,6,200,551,222,20,20
+57342,6,200,548,129,20,20
+57343,6,200,549,98,20,20
+57344,6,200,550,98,20,20
+57345,6,200,551,120,20,20
+57346,6,316,548,129,20,20
+57347,6,316,549,118,20,20
+57348,6,316,550,118,20,20
+57349,6,316,551,118,20,20
+57350,6,279,548,129,20,20
+57351,6,279,549,72,20,20
+57352,6,279,550,170,20,20
+57353,6,279,551,90,20,20
+57354,6,249,548,129,20,20
+57355,6,249,549,60,20,20
+57356,6,249,550,60,20,20
+57357,6,249,551,60,20,20
+57358,6,235,548,129,20,20
+57359,6,235,549,98,20,20
+57360,6,235,550,98,20,20
+57361,6,235,551,222,20,20
+57362,6,235,548,129,20,20
+57363,6,235,549,98,20,20
+57364,6,235,550,98,20,20
+57365,6,235,551,222,20,20
+57366,6,235,548,129,20,20
+57367,6,235,549,98,20,20
+57368,6,235,550,98,20,20
+57369,6,235,551,120,20,20
+57370,6,242,548,129,20,20
+57371,6,242,549,129,20,20
+57372,6,242,550,129,20,20
+57373,6,242,551,130,20,20
+57374,6,189,548,129,20,20
+57375,6,189,549,60,20,20
+57376,6,189,550,60,20,20
+57377,6,189,551,60,20,20
+57378,6,269,548,129,20,20
+57379,6,269,549,60,20,20
+57380,6,269,550,60,20,20
+57381,6,269,551,60,20,20
+57382,6,263,548,129,20,20
+57383,6,263,549,118,20,20
+57384,6,263,550,118,20,20
+57385,6,263,551,118,20,20
+57386,6,237,548,129,20,20
+57387,6,237,549,118,20,20
+57388,6,237,550,118,20,20
+57389,6,237,551,118,20,20
+57390,6,239,548,129,20,20
+57391,6,239,549,118,20,20
+57392,6,239,550,118,20,20
+57393,6,239,551,118,20,20
+57394,6,240,548,129,20,20
+57395,6,240,549,118,20,20
+57396,6,240,550,118,20,20
+57397,6,240,551,118,20,20
+57398,6,224,548,129,20,20
+57399,6,224,549,98,20,20
+57400,6,224,550,98,20,20
+57401,6,224,551,222,20,20
+57402,6,224,548,129,20,20
+57403,6,224,549,98,20,20
+57404,6,224,550,98,20,20
+57405,6,224,551,222,20,20
+57406,6,224,548,129,20,20
+57407,6,224,549,98,20,20
+57408,6,224,550,98,20,20
+57409,6,224,551,120,20,20
+57410,6,284,548,129,20,20
+57411,6,284,549,129,20,20
+57412,6,284,550,129,20,20
+57413,6,284,551,130,20,20
+57414,6,202,548,129,20,20
+57415,6,202,549,118,20,20
+57416,6,202,550,118,20,20
+57417,6,202,551,118,20,20
+57418,6,203,548,129,20,20
+57419,6,203,549,118,20,20
+57420,6,203,550,118,20,20
+57421,6,203,551,118,20,20
+57422,6,211,548,129,20,20
+57423,6,211,549,60,20,20
+57424,6,211,550,60,20,20
+57425,6,211,551,60,20,20
+57426,6,300,548,129,20,20
+57427,6,300,549,60,20,20
+57428,6,300,550,60,20,20
+57429,6,300,551,60,20,20
+57430,6,303,548,129,20,20
+57431,6,303,549,118,20,20
+57432,6,303,550,118,20,20
+57433,6,303,551,118,20,20
+57434,6,304,548,129,20,20
+57435,6,304,549,118,20,20
+57436,6,304,550,118,20,20
+57437,6,304,551,118,20,20
+57438,6,276,548,129,20,20
+57439,6,276,549,72,20,20
+57440,6,276,550,72,20,20
+57441,6,276,551,72,20,20
+57442,6,306,548,129,20,20
+57443,6,306,549,72,20,20
+57444,6,306,550,72,20,20
+57445,6,306,551,72,20,20
+57446,6,277,548,129,20,20
+57447,6,277,549,98,20,20
+57448,6,277,550,98,20,20
+57449,6,277,551,222,20,20
+57450,6,277,548,129,20,20
+57451,6,277,549,98,20,20
+57452,6,277,550,98,20,20
+57453,6,277,551,222,20,20
+57454,6,277,548,129,20,20
+57455,6,277,549,98,20,20
+57456,6,277,550,98,20,20
+57457,6,277,551,120,20,20
+57458,6,278,548,129,20,20
+57459,6,278,549,72,20,20
+57460,6,278,550,170,20,20
+57461,6,278,551,90,20,20
+57462,6,312,548,129,20,20
+57463,6,312,549,72,20,20
+57464,6,312,550,170,20,20
+57465,6,312,551,90,20,20
+57466,6,313,548,129,20,20
+57467,6,313,549,60,20,20
+57468,6,313,550,60,20,20
+57469,6,313,551,60,20,20
+57470,6,314,548,129,20,20
+57471,6,314,549,118,20,20
+57472,6,314,550,118,20,20
+57473,6,314,551,118,20,20
+57474,6,315,548,129,20,20
+57475,6,315,549,118,20,20
+57476,6,315,550,118,20,20
+57477,6,315,551,118,20,20
+57478,6,287,548,129,20,20
+57479,6,287,549,72,20,20
+57480,6,287,550,170,20,20
+57481,6,287,551,90,20,20
+57482,6,288,548,129,20,20
+57483,6,288,549,72,20,20
+57484,6,288,550,170,20,20
+57485,6,288,551,90,20,20
+57486,6,289,548,129,20,20
+57487,6,289,549,60,20,20
+57488,6,289,550,60,20,20
+57489,6,289,551,60,20,20
+57490,6,187,548,129,20,20
+57491,6,187,549,60,20,20
+57492,6,187,550,60,20,20
+57493,6,187,551,60,20,20
+57494,6,188,548,129,20,20
+57495,6,188,549,60,20,20
+57496,6,188,550,60,20,20
+57497,6,188,551,60,20,20
+57498,6,192,548,129,20,20
+57499,6,192,549,72,20,20
+57500,6,192,550,72,20,20
+57501,6,192,551,72,20,20
+57502,6,192,549,211,20,20
+57503,6,192,550,211,20,20
+57504,6,192,551,211,20,20
+57505,6,205,548,129,20,20
+57506,6,205,549,98,20,20
+57507,6,205,550,98,20,20
+57508,6,205,551,222,20,20
+57509,6,205,548,129,20,20
+57510,6,205,549,98,20,20
+57511,6,205,550,98,20,20
+57512,6,205,551,222,20,20
+57513,6,205,548,129,20,20
+57514,6,205,549,98,20,20
+57515,6,205,550,98,20,20
+57516,6,205,551,120,20,20
+57517,6,206,548,129,20,20
+57518,6,206,549,60,20,20
+57519,6,206,550,60,20,20
+57520,6,206,551,60,20,20
+57521,6,225,548,129,20,20
+57522,6,225,549,98,20,20
+57523,6,225,550,98,20,20
+57524,6,225,551,222,20,20
+57525,6,225,548,129,20,20
+57526,6,225,549,98,20,20
+57527,6,225,550,98,20,20
+57528,6,225,551,222,20,20
+57529,6,225,548,129,20,20
+57530,6,225,549,98,20,20
+57531,6,225,550,98,20,20
+57532,6,225,551,120,20,20
+57533,6,226,548,129,20,20
+57534,6,226,549,72,20,20
+57535,6,226,550,170,20,20
+57536,6,226,551,90,20,20
+57537,6,236,548,129,20,20
+57538,6,236,549,118,20,20
+57539,6,236,550,118,20,20
+57540,6,236,551,118,20,20
+57541,6,241,548,129,20,20
+57542,6,241,549,60,20,20
+57543,6,241,550,60,20,20
+57544,6,241,551,60,20,20
+57545,6,243,548,129,20,20
+57546,6,243,549,60,20,20
+57547,6,243,550,60,20,20
+57548,6,243,551,60,20,20
+57549,6,251,548,129,20,20
+57550,6,251,549,129,20,20
+57551,6,251,550,129,20,20
+57552,6,251,551,147,20,20
+57553,6,193,548,129,20,20
+57554,6,193,549,60,20,20
+57555,6,193,550,60,20,20
+57556,6,193,551,60,20,20
+57557,6,227,548,129,20,20
+57558,6,227,549,98,20,20
+57559,6,227,550,98,20,20
+57560,6,227,551,116,20,20
+57561,6,230,548,129,20,20
+57562,6,230,549,98,20,20
+57563,6,230,550,98,20,20
+57564,6,230,551,116,20,20
+57565,6,232,548,129,20,20
+57566,6,232,549,98,20,20
+57567,6,232,550,98,20,20
+57568,6,232,551,116,20,20
+57569,6,186,548,129,20,20
+57570,6,186,549,98,20,20
+57571,6,186,550,98,20,20
+57572,6,186,551,222,20,20
+57573,6,186,548,129,20,20
+57574,6,186,549,98,20,20
+57575,6,186,550,98,20,20
+57576,6,186,551,222,20,20
+57577,6,186,548,129,20,20
+57578,6,186,549,98,20,20
+57579,6,186,550,98,20,20
+57580,6,186,551,120,20,20
+57581,6,250,552,129,40,40
+57582,6,250,553,147,40,40
+57583,6,250,554,129,40,40
+57584,6,250,555,148,40,40
+57585,6,253,552,118,40,40
+57586,6,253,553,118,40,40
+57587,6,253,554,129,40,40
+57588,6,253,555,119,40,40
+57589,6,254,552,118,40,40
+57590,6,254,553,118,40,40
+57591,6,254,554,129,40,40
+57592,6,254,555,119,40,40
+57593,6,281,552,118,40,40
+57594,6,281,553,118,40,40
+57595,6,281,554,129,40,40
+57596,6,281,555,119,40,40
+57597,6,204,552,60,40,40
+57598,6,204,553,60,40,40
+57599,6,204,554,129,40,40
+57600,6,204,555,60,40,40
+57601,6,184,552,170,40,40
+57602,6,184,553,90,40,40
+57603,6,184,554,73,40,40
+57604,6,184,555,171,40,40
+57605,6,285,552,170,40,40
+57606,6,285,553,90,40,40
+57607,6,285,554,73,40,40
+57608,6,285,555,171,40,40
+57609,6,282,552,170,40,40
+57610,6,282,553,90,40,40
+57611,6,282,554,73,40,40
+57612,6,282,555,171,40,40
+57613,6,349,552,170,40,40
+57614,6,349,553,90,40,40
+57615,6,349,554,73,40,40
+57616,6,349,555,171,40,40
+57617,6,198,552,118,40,40
+57618,6,198,553,118,40,40
+57619,6,198,554,129,40,40
+57620,6,198,555,119,40,40
+57621,6,199,552,118,40,40
+57622,6,199,553,118,40,40
+57623,6,199,554,129,40,40
+57624,6,199,555,119,40,40
+57625,6,200,552,98,40,40
+57626,6,200,553,222,40,40
+57627,6,200,554,98,40,40
+57628,6,200,555,99,40,40
+57629,6,200,552,98,40,40
+57630,6,200,553,222,40,40
+57631,6,200,554,98,40,40
+57632,6,200,555,99,40,40
+57633,6,200,552,98,40,40
+57634,6,200,553,120,40,40
+57635,6,200,554,98,40,40
+57636,6,200,555,99,40,40
+57637,6,316,552,118,40,40
+57638,6,316,553,118,40,40
+57639,6,316,554,129,40,40
+57640,6,316,555,119,40,40
+57641,6,279,552,170,40,40
+57642,6,279,553,90,40,40
+57643,6,279,554,73,40,40
+57644,6,279,555,171,40,40
+57645,6,249,552,60,40,40
+57646,6,249,553,60,40,40
+57647,6,249,554,129,40,40
+57648,6,249,555,60,40,40
+57649,6,235,552,98,40,40
+57650,6,235,553,222,40,40
+57651,6,235,554,98,40,40
+57652,6,235,555,99,40,40
+57653,6,235,552,98,40,40
+57654,6,235,553,222,40,40
+57655,6,235,554,98,40,40
+57656,6,235,555,99,40,40
+57657,6,235,552,98,40,40
+57658,6,235,553,120,40,40
+57659,6,235,554,98,40,40
+57660,6,235,555,99,40,40
+57661,6,242,552,129,40,40
+57662,6,242,553,130,40,40
+57663,6,242,554,129,40,40
+57664,6,242,555,129,40,40
+57665,6,189,552,60,40,40
+57666,6,189,553,60,40,40
+57667,6,189,554,129,40,40
+57668,6,189,555,60,40,40
+57669,6,269,552,60,40,40
+57670,6,269,553,60,40,40
+57671,6,269,554,129,40,40
+57672,6,269,555,60,40,40
+57673,6,263,552,118,40,40
+57674,6,263,553,118,40,40
+57675,6,263,554,129,40,40
+57676,6,263,555,119,40,40
+57677,6,237,552,118,40,40
+57678,6,237,553,118,40,40
+57679,6,237,554,129,40,40
+57680,6,237,555,119,40,40
+57681,6,239,552,118,40,40
+57682,6,239,553,118,40,40
+57683,6,239,554,129,40,40
+57684,6,239,555,119,40,40
+57685,6,240,552,118,40,40
+57686,6,240,553,118,40,40
+57687,6,240,554,129,40,40
+57688,6,240,555,119,40,40
+57689,6,224,552,98,40,40
+57690,6,224,553,222,40,40
+57691,6,224,554,98,40,40
+57692,6,224,555,99,40,40
+57693,6,224,552,98,40,40
+57694,6,224,553,222,40,40
+57695,6,224,554,98,40,40
+57696,6,224,555,99,40,40
+57697,6,224,552,98,40,40
+57698,6,224,553,120,40,40
+57699,6,224,554,98,40,40
+57700,6,224,555,99,40,40
+57701,6,284,552,129,40,40
+57702,6,284,553,130,40,40
+57703,6,284,554,129,40,40
+57704,6,284,555,129,40,40
+57705,6,202,552,118,40,40
+57706,6,202,553,118,40,40
+57707,6,202,554,129,40,40
+57708,6,202,555,119,40,40
+57709,6,203,552,118,40,40
+57710,6,203,553,118,40,40
+57711,6,203,554,129,40,40
+57712,6,203,555,119,40,40
+57713,6,211,552,60,40,40
+57714,6,211,553,60,40,40
+57715,6,211,554,129,40,40
+57716,6,211,555,60,40,40
+57717,6,300,552,60,40,40
+57718,6,300,553,60,40,40
+57719,6,300,554,129,40,40
+57720,6,300,555,60,40,40
+57721,6,303,552,118,40,40
+57722,6,303,553,118,40,40
+57723,6,303,554,129,40,40
+57724,6,303,555,119,40,40
+57725,6,304,552,118,40,40
+57726,6,304,553,118,40,40
+57727,6,304,554,129,40,40
+57728,6,304,555,119,40,40
+57729,6,276,552,72,40,40
+57730,6,276,553,72,40,40
+57731,6,276,554,129,40,40
+57732,6,276,555,211,40,40
+57733,6,306,552,72,40,40
+57734,6,306,553,72,40,40
+57735,6,306,554,129,40,40
+57736,6,306,555,211,40,40
+57737,6,277,552,98,40,40
+57738,6,277,553,222,40,40
+57739,6,277,554,98,40,40
+57740,6,277,555,99,40,40
+57741,6,277,552,98,40,40
+57742,6,277,553,222,40,40
+57743,6,277,554,98,40,40
+57744,6,277,555,99,40,40
+57745,6,277,552,98,40,40
+57746,6,277,553,120,40,40
+57747,6,277,554,98,40,40
+57748,6,277,555,99,40,40
+57749,6,278,552,170,40,40
+57750,6,278,553,90,40,40
+57751,6,278,554,73,40,40
+57752,6,278,555,171,40,40
+57753,6,312,552,170,40,40
+57754,6,312,553,90,40,40
+57755,6,312,554,73,40,40
+57756,6,312,555,171,40,40
+57757,6,313,552,60,40,40
+57758,6,313,553,60,40,40
+57759,6,313,554,129,40,40
+57760,6,313,555,60,40,40
+57761,6,314,552,118,40,40
+57762,6,314,553,118,40,40
+57763,6,314,554,129,40,40
+57764,6,314,555,119,40,40
+57765,6,315,552,118,40,40
+57766,6,315,553,118,40,40
+57767,6,315,554,129,40,40
+57768,6,315,555,119,40,40
+57769,6,287,552,170,40,40
+57770,6,287,553,90,40,40
+57771,6,287,554,73,40,40
+57772,6,287,555,171,40,40
+57773,6,288,552,170,40,40
+57774,6,288,553,90,40,40
+57775,6,288,554,73,40,40
+57776,6,288,555,171,40,40
+57777,6,289,552,60,40,40
+57778,6,289,553,60,40,40
+57779,6,289,554,129,40,40
+57780,6,289,555,60,40,40
+57781,6,187,552,60,40,40
+57782,6,187,553,60,40,40
+57783,6,187,554,129,40,40
+57784,6,187,555,60,40,40
+57785,6,188,552,60,40,40
+57786,6,188,553,60,40,40
+57787,6,188,554,129,40,40
+57788,6,188,555,60,40,40
+57789,6,192,552,72,40,40
+57790,6,192,553,72,40,40
+57791,6,192,554,129,40,40
+57792,6,192,555,211,40,40
+57793,6,192,552,211,40,40
+57794,6,192,553,211,40,40
+57795,6,192,554,211,40,40
+57796,6,192,555,211,40,40
+57797,6,205,552,98,40,40
+57798,6,205,553,222,40,40
+57799,6,205,554,98,40,40
+57800,6,205,555,99,40,40
+57801,6,205,552,98,40,40
+57802,6,205,553,222,40,40
+57803,6,205,554,98,40,40
+57804,6,205,555,99,40,40
+57805,6,205,552,98,40,40
+57806,6,205,553,120,40,40
+57807,6,205,554,98,40,40
+57808,6,205,555,99,40,40
+57809,6,206,552,60,40,40
+57810,6,206,553,60,40,40
+57811,6,206,554,129,40,40
+57812,6,206,555,60,40,40
+57813,6,225,552,98,40,40
+57814,6,225,553,222,40,40
+57815,6,225,554,98,40,40
+57816,6,225,555,99,40,40
+57817,6,225,552,98,40,40
+57818,6,225,553,222,40,40
+57819,6,225,554,98,40,40
+57820,6,225,555,99,40,40
+57821,6,225,552,98,40,40
+57822,6,225,553,120,40,40
+57823,6,225,554,98,40,40
+57824,6,225,555,99,40,40
+57825,6,226,552,170,40,40
+57826,6,226,553,90,40,40
+57827,6,226,554,73,40,40
+57828,6,226,555,171,40,40
+57829,6,236,552,118,40,40
+57830,6,236,553,118,40,40
+57831,6,236,554,129,40,40
+57832,6,236,555,119,40,40
+57833,6,241,552,60,40,40
+57834,6,241,553,60,40,40
+57835,6,241,554,129,40,40
+57836,6,241,555,60,40,40
+57837,6,243,552,60,40,40
+57838,6,243,553,60,40,40
+57839,6,243,554,129,40,40
+57840,6,243,555,60,40,40
+57841,6,251,552,129,40,40
+57842,6,251,553,147,40,40
+57843,6,251,554,129,40,40
+57844,6,251,555,148,40,40
+57845,6,193,552,60,40,40
+57846,6,193,553,60,40,40
+57847,6,193,554,129,40,40
+57848,6,193,555,60,40,40
+57849,6,227,552,98,40,40
+57850,6,227,553,116,40,40
+57851,6,227,554,99,40,40
+57852,6,227,555,117,40,40
+57853,6,230,552,98,40,40
+57854,6,230,553,116,40,40
+57855,6,230,554,99,40,40
+57856,6,230,555,117,40,40
+57857,6,232,552,98,40,40
+57858,6,232,553,116,40,40
+57859,6,232,554,99,40,40
+57860,6,232,555,117,40,40
+57861,6,186,552,98,40,40
+57862,6,186,553,222,40,40
+57863,6,186,554,98,40,40
+57864,6,186,555,99,40,40
+57865,6,186,552,98,40,40
+57866,6,186,553,222,40,40
+57867,6,186,554,98,40,40
+57868,6,186,555,99,40,40
+57869,6,186,552,98,40,40
+57870,6,186,553,120,40,40
+57871,6,186,554,98,40,40
+57872,6,186,555,99,40,40
+57873,6,250,556,129,15,19
+57874,6,250,557,129,10,14
+57875,6,250,558,147,10,14
+57876,6,253,556,129,15,19
+57877,6,253,557,129,10,14
+57878,6,253,558,129,5,9
+57879,6,254,556,129,15,19
+57880,6,254,557,129,10,14
+57881,6,254,558,129,5,9
+57882,6,281,556,118,10,14
+57883,6,281,557,118,5,9
+57884,6,281,558,119,10,14
+57885,6,204,556,54,15,19
+57886,6,204,557,54,10,14
+57887,6,204,558,55,15,19
+57888,6,184,556,72,20,24
+57889,6,184,557,72,15,19
+57890,6,184,558,73,20,24
+57891,6,285,556,72,35,39
+57892,6,285,557,72,30,34
+57893,6,285,558,73,35,39
+57894,6,282,556,72,35,39
+57895,6,282,557,72,30,34
+57896,6,282,558,73,35,39
+57897,6,349,556,72,35,39
+57898,6,349,557,72,30,34
+57899,6,349,558,73,35,39
+57900,6,198,556,194,15,19
+57901,6,198,557,195,20,24
+57902,6,198,558,195,15,19
+57903,6,199,556,194,15,19
+57904,6,199,557,195,20,24
+57905,6,199,558,195,15,19
+57906,6,200,556,72,15,19
+57907,6,200,557,195,20,24
+57908,6,200,558,73,20,24
+57909,6,283,556,88,20,24
+57910,6,283,557,88,15,19
+57911,6,283,558,89,15,19
+57912,6,316,556,118,20,24
+57913,6,316,557,79,20,24
+57914,6,316,558,119,20,24
+57915,6,279,556,72,35,39
+57916,6,279,557,72,30,34
+57917,6,279,558,73,35,39
+57918,6,249,556,129,15,19
+57919,6,249,557,129,10,14
+57920,6,249,558,129,5,9
+57921,6,235,556,72,20,24
+57922,6,235,557,72,15,29
+57923,6,235,558,73,20,24
+57924,6,280,556,60,10,14
+57925,6,280,557,60,5,9
+57926,6,280,558,61,10,14
+57927,6,242,556,129,15,19
+57928,6,242,557,129,10,14
+57929,6,242,558,130,15,19
+57930,6,189,556,60,20,24
+57931,6,189,557,60,15,19
+57932,6,189,558,61,20,24
+57933,6,269,556,61,35,39
+57934,6,269,557,61,40,44
+57935,6,269,558,60,35,39
+57936,6,263,556,119,35,39
+57937,6,263,557,55,40,44
+57938,6,263,558,118,35,39
+57939,6,237,556,118,15,19
+57940,6,237,557,183,20,24
+57941,6,237,558,119,20,24
+57942,6,239,556,118,20,24
+57943,6,239,557,183,25,29
+57944,6,239,558,119,25,29
+57945,6,240,556,118,20,24
+57946,6,240,557,183,20,24
+57947,6,240,558,119,20,24
+57948,6,224,556,72,20,24
+57949,6,224,557,72,15,19
+57950,6,224,558,73,20,24
+57951,6,284,556,129,20,24
+57952,6,284,557,129,15,19
+57953,6,284,558,129,10,14
+57954,6,202,556,79,15,19
+57955,6,202,557,79,20,24
+57956,6,202,558,79,10,14
+57957,6,203,556,79,15,19
+57958,6,203,557,79,20,24
+57959,6,203,558,80,20,24
+57960,6,211,556,60,20,24
+57961,6,211,557,60,15,19
+57962,6,211,558,61,20,24
+57963,6,298,556,118,10,14
+57964,6,298,557,118,5,9
+57965,6,298,558,119,10,14
+57966,6,300,556,54,10,14
+57967,6,300,557,54,5,9
+57968,6,300,558,55,10,14
+57969,6,303,556,118,15,19
+57970,6,303,557,118,10,14
+57971,6,303,558,119,15,19
+57972,6,304,556,118,15,19
+57973,6,304,557,118,10,14
+57974,6,304,558,119,15,19
+57975,6,276,556,72,25,29
+57976,6,276,557,195,25,29
+57977,6,276,558,73,25,29
+57978,6,306,556,72,25,29
+57979,6,306,557,195,25,29
+57980,6,306,558,73,25,29
+57981,6,277,556,72,35,39
+57982,6,277,557,72,30,34
+57983,6,277,558,73,35,39
+57984,6,278,556,72,35,39
+57985,6,278,557,72,30,34
+57986,6,278,558,73,35,39
+57987,6,312,556,72,35,39
+57988,6,312,557,72,30,34
+57989,6,312,558,73,35,39
+57990,6,313,556,60,10,14
+57991,6,313,557,60,4,9
+57992,6,313,558,61,10,14
+57993,6,314,556,118,10,14
+57994,6,314,557,118,4,9
+57995,6,314,558,119,10,14
+57996,6,315,556,118,10,14
+57997,6,315,557,118,4,9
+57998,6,315,558,119,10,14
+57999,6,287,556,72,30,34
+58000,6,287,557,72,25,29
+58001,6,287,558,73,30,34
+58002,6,288,556,72,20,24
+58003,6,288,557,72,15,19
+58004,6,288,558,73,20,24
+58005,6,289,556,60,40,44
+58006,6,289,557,60,35,39
+58007,6,289,558,61,40,44
+58008,6,187,556,60,20,24
+58009,6,187,557,60,15,19
+58010,6,187,558,61,20,24
+58011,6,188,556,60,20,24
+58012,6,188,557,60,15,19
+58013,6,188,558,61,20,24
+58014,6,192,556,72,15,19
+58015,6,192,557,195,20,24
+58016,6,192,558,73,20,24
+58017,6,205,556,72,20,24
+58018,6,205,557,72,15,19
+58019,6,205,558,73,20,24
+58020,6,206,556,54,20,24
+58021,6,206,557,54,15,19
+58022,6,206,558,55,20,24
+58023,6,225,556,72,20,24
+58024,6,225,557,72,15,19
+58025,6,225,558,73,20,24
+58026,6,226,556,72,20,24
+58027,6,226,557,73,20,24
+58028,6,226,558,226,20,24
+58029,6,236,556,118,20,24
+58030,6,236,557,118,15,19
+58031,6,236,558,119,20,24
+58032,6,241,556,129,20,24
+58033,6,241,557,129,15,19
+58034,6,241,558,129,10,14
+58035,6,243,556,60,25,29
+58036,6,243,557,60,20,24
+58037,6,243,558,61,25,29
+58038,6,251,556,129,20,24
+58039,6,251,557,129,15,19
+58040,6,251,558,129,5,9
+58041,6,193,556,194,15,19
+58042,6,193,557,195,20,24
+58043,6,193,558,195,14,19
+58044,6,227,556,72,20,24
+58045,6,227,557,116,15,19
+58046,6,227,558,73,20,24
+58047,6,230,556,116,15,19
+58048,6,230,557,116,20,24
+58049,6,230,558,73,20,24
+58050,6,232,556,116,20,24
+58051,6,232,557,73,20,24
+58052,6,232,558,117,20,24
+58053,6,186,556,72,20,24
+58054,6,186,557,72,15,19
+58055,6,186,558,73,20,24
+58056,6,253,559,98,15,15
+58057,6,253,560,213,15,15
+58058,6,235,559,98,15,15
+58059,6,235,560,213,15,15
+58060,6,225,559,98,15,15
+58061,6,225,560,213,15,15
diff --git a/pokedex/data/csv/generation_names.csv b/pokedex/data/csv/generation_names.csv
index b7a3aa9..bee156c 100644
--- a/pokedex/data/csv/generation_names.csv
+++ b/pokedex/data/csv/generation_names.csv
@@ -1,41 +1,48 @@
 generation_id,local_language_id,name
-1,1,だいいっせだい
+1,1,だいいちせだい
+1,3,1세대
 1,5,Génération I
 1,6,Generation I
 1,7,Generación I
 1,9,Generation I
 1,11,第一世代
 2,1,だいにせだい
+2,3,2세대
 2,5,Génération II
 2,6,Generation II
 2,7,Generación II
 2,9,Generation II
 2,11,第二世代
 3,1,だいさんせだい
+3,3,3세대
 3,5,Génération III
 3,6,Generation III
 3,7,Generación III
 3,9,Generation III
 3,11,第三世代
 4,1,だいよんせだい
+4,3,4세대
 4,5,Génération IV
 4,6,Generation IV
 4,7,Generación IV
 4,9,Generation IV
 4,11,第四世代
 5,1,だいごせだい
+5,3,5세대
 5,5,Génération V
 5,6,Generation V
 5,7,Generación V
 5,9,Generation V
 5,11,第五世代
 6,1,だいろくせだい
+6,3,6세대
 6,5,Génération VI
 6,6,Generation VI
 6,7,Generación VI
 6,9,Generation VI
 6,11,第六世代
 7,1,だいななせだい
+7,3,7세대
 7,5,Génération VII
 7,6,Generation VII
 7,7,Generación VII
diff --git a/pokedex/data/csv/language_names.csv b/pokedex/data/csv/language_names.csv
index f162952..2b41566 100644
--- a/pokedex/data/csv/language_names.csv
+++ b/pokedex/data/csv/language_names.csv
@@ -1,49 +1,59 @@
 language_id,local_language_id,name
 1,1,日本語
+1,3,일본어
 1,5,Japonais
 1,6,Japanisch
 1,7,Japonés
 1,9,Japanese
 2,1,正式ローマジ
+2,3,정식 로마자
 2,5,Romaji
 2,6,Rōmaji
 2,9,Official roomaji
 3,1,韓国語
+3,3,한국어
 3,5,Coréen
 3,6,Koreanisch
 3,7,Coreano
 3,9,Korean
 4,1,中国語
+4,3,중국어
 4,5,Chinois
 4,6,Chinesisch
 4,7,Chino
 4,9,Chinese
 5,1,フランス語
+5,3,프랑스어
 5,5,Français
 5,6,Französisch
 5,7,Francés
 5,9,French
 6,1,ドイツ語
+6,3,도이치어
 6,5,Allemand
 6,6,Deutsch
 6,7,Alemán
 6,9,German
 7,1,西語
+7,3,스페인어
 7,5,Espagnol
 7,6,Spanisch
 7,7,Español
 7,9,Spanish
 8,1,伊語
+8,3,이탈리아어
 8,5,Italien
 8,6,Italienisch
 8,7,Italiano
 8,9,Italian
 9,1,英語
+9,3,영어
 9,5,Anglais
 9,6,Englisch
 9,7,Inglés
 9,9,English
 10,1,チェコ語
+10,3,체코어
 10,5,Tchèque
 10,6,Tschechisch
 10,7,Checo
diff --git a/pokedex/data/csv/languages.csv b/pokedex/data/csv/languages.csv
index a7119c3..d23e99e 100644
--- a/pokedex/data/csv/languages.csv
+++ b/pokedex/data/csv/languages.csv
@@ -11,3 +11,4 @@ id,iso639,iso3166,identifier,official,order
 10,cs,cz,cs,0,12
 11,ja,jp,ja,1,2
 12,zh,cn,zh-Hans,1,6
+13,pt-BR,br,pt-BR,0,13
diff --git a/pokedex/data/csv/location_area_prose.csv b/pokedex/data/csv/location_area_prose.csv
index 41eec1c..4222347 100644
--- a/pokedex/data/csv/location_area_prose.csv
+++ b/pokedex/data/csv/location_area_prose.csv
@@ -618,3 +618,35 @@ location_area_id,local_language_id,name
 756,9,Unknown Area 345
 757,9,Unknown Area 347
 758,9,Unknown Area 348
+761,9,Pokemon Center
+762,9,Fighting Dojo
+763,9,Celadon Mansion rooftop
+764,9,Silph Co. 7F
+765,9,North Gate
+766,9,Bill's house
+767,9,Mania's house
+768,9,Weather Institute
+769,9,Steven's house
+770,9,
+771,9,
+772,9,
+773,9,Kirk's house
+774,9,
+775,9,Game Freak HQ 1F
+776,9,Weather Institute
+777,9,
+778,9,
+779,9,
+780,9,
+781,9,Contest Hall
+782,9,Contest Hall
+783,9,Contest Hall
+784,9,Contest Hall
+785,9,
+786,9,
+787,9,
+788,9,West Gate
+789,9,West Gate
+790,9,Poke Mart
+791,9,Pokemon Center
+792,9,West Gate
diff --git a/pokedex/data/csv/location_areas.csv b/pokedex/data/csv/location_areas.csv
index c2dd8b1..3ddc00d 100644
--- a/pokedex/data/csv/location_areas.csv
+++ b/pokedex/data/csv/location_areas.csv
@@ -650,3 +650,35 @@ id,location_id,game_index,identifier
 758,676,0,unknown-area-348
 759,677,0,
 760,661,0,
+761,120,0,pokemon-center
+762,234,0,fighting-dojo
+763,67,0,celadon-mansion
+764,234,0,silph-co-7f
+765,229,0,north-gate
+766,229,0,bills-house
+767,70,0,manias-house
+768,467,0,weather-institute
+769,432,0,stevens-house
+770,567,0,
+771,169,0,
+772,170,0,
+773,70,0,kirks-house
+774,346,0,
+775,350,0,game-freak-hq-1f
+776,361,0,weather-institute
+777,536,0,
+778,590,0,
+779,599,0,
+780,625,0,
+781,430,0,contest-hall
+782,571,0,contest-hall
+783,570,0,contest-hall
+784,431,0,contest-hall
+785,578,0,
+786,695,0,
+787,569,0,
+788,2,0,west-gate
+789,169,0,west-gate
+790,153,0,poke-mart
+791,153,0,pokemon-center
+792,349,0,west-gate
diff --git a/pokedex/data/csv/move_damage_class_prose.csv b/pokedex/data/csv/move_damage_class_prose.csv
index 82124bc..0024dbf 100644
--- a/pokedex/data/csv/move_damage_class_prose.csv
+++ b/pokedex/data/csv/move_damage_class_prose.csv
@@ -6,7 +6,7 @@ move_damage_class_id,local_language_id,name,description
 1,9,status,No damage
 2,1,ぶつり,ぶつりのダメージ。こうげきとぼうぎょを行使する
 2,5,physique,"Dégâts physique, influencés par l'Attaque et la Défense"
-2,6,physich,"Physischer Schaden, beeinflusst von Angriff und Verteidigung"
+2,6,physisch,"Physischer Schaden, beeinflusst von Angriff und Verteidigung"
 2,7,físico,"Daño Físico, controlado por el Ataque y Defensa"
 2,9,physical,"Physical damage, controlled by Attack and Defense"
 3,1,とくしゅ,とくしゅのダメージ。とくこうととくぼうを行使する
diff --git a/pokedex/data/csv/moves.csv b/pokedex/data/csv/moves.csv
index 7887868..a176d90 100644
--- a/pokedex/data/csv/moves.csv
+++ b/pokedex/data/csv/moves.csv
@@ -106,7 +106,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
 105,recover,1,1,,10,,0,7,1,33,,4,23,8
 106,harden,1,1,,30,,0,7,1,12,,5,16,13
 107,minimize,1,1,,10,,0,7,1,109,,3,16,13
-108,smokescreen,1,1,,20,100,0,10,1,24,,4,21,10
+108,smokescreen,1,1,,20,100,0,10,1,24,,4,22,10
 109,confuse-ray,1,8,,10,100,0,10,1,50,,4,21,10
 110,withdraw,1,11,,40,,0,7,1,12,,3,15,13
 111,defense-curl,1,1,,40,,0,7,1,157,,3,16,13
@@ -146,7 +146,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
 145,bubble,1,11,40,30,100,0,11,3,71,10,3,8,2
 146,dizzy-punch,1,1,70,10,100,0,10,2,77,20,1,4,16
 147,spore,1,12,,15,100,0,10,1,2,,2,5,10
-148,flash,1,1,,20,100,0,10,1,24,,2,21,10
+148,flash,1,1,,20,100,0,10,1,24,,2,22,10
 149,psywave,1,14,,15,100,0,10,3,89,,4,14,5
 150,splash,1,1,,40,,0,7,1,86,,3,28,16
 151,acid-armor,1,4,,20,,0,7,1,52,,5,32,11
@@ -178,7 +178,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
 177,aeroblast,2,3,100,5,95,0,10,3,44,,1,2,22
 178,cotton-spore,2,12,,40,100,0,11,1,61,,2,10,1
 179,reversal,2,2,,15,100,0,10,2,100,,1,28,15
-180,spite,2,8,,10,100,0,10,1,101,,5,28,19
+180,spite,2,8,,10,100,0,10,1,101,,5,26,19
 181,powder-snow,2,15,40,25,100,0,11,3,6,10,2,1,5
 182,protect,2,1,,10,,4,7,1,112,,3,15,16
 183,mach-punch,2,2,40,30,100,1,10,2,104,,1,30,1
@@ -245,7 +245,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
 244,psych-up,2,1,,10,,0,10,1,144,,4,12,11
 245,extreme-speed,2,1,80,5,100,2,10,2,104,,1,30,1
 246,ancient-power,2,6,60,5,100,0,10,3,141,10,5,32,18
-247,shadow-ball,2,8,80,15,100,0,10,3,73,20,4,21,17
+247,shadow-ball,2,8,80,15,100,0,10,3,73,20,4,22,17
 248,future-sight,2,14,120,10,100,0,10,3,149,,4,24,17
 249,rock-smash,2,2,40,15,100,0,10,2,70,50,5,29,18
 250,whirlpool,2,11,35,15,85,0,10,3,262,100,2,24,21
diff --git a/pokedex/data/csv/pokedex_prose.csv b/pokedex/data/csv/pokedex_prose.csv
index 52c5dcd..896e73e 100644
--- a/pokedex/data/csv/pokedex_prose.csv
+++ b/pokedex/data/csv/pokedex_prose.csv
@@ -43,3 +43,13 @@ pokedex_id,local_language_id,name,description
 15,5,Hoenn amélioré,"Pokédex régional d'Hoenn dans Rubis Oméga/Saphir Alpha, mis à jour pour les nouvelles évolutions"
 15,6,Neue Hoenn,Omega Rubin/Alpha Saphir Hoenn Dex — Dex aus Rubin/Saphir/Smaragd um Neue Entwicklungen erweitert
 15,9,New Hoenn,"Omega Ruby/Alpha Sapphire Hoenn Dex—Ruby/Sapphire/Emerald's, updated to add new evolutions"
+16,9,Original Alola,Sun/Moon Alola dex
+17,9,Original Melemele,Sun/Moon Melemele dex
+18,9,Original Akala,Sun/Moon Akala dex
+19,9,Original Ula'ula,Sun/Moon Ula'ula dex
+20,9,Original Poni,Sun/Moon Poni dex
+21,9,Updated Alola,Ultra Sun/Ultra Moon Alola dex
+22,9,Updated Melemele,Ultra Sun/Ultra Moon Melemele dex
+23,9,Updated Akala,Ultra Sun/Ultra Moon Akala dex
+24,9,Updated Ula'ula,Ultra Sun/Ultra Moon Ula'ula dex
+25,9,Updated Poni,Ultra Sun/Ultra Moon Poni dex
diff --git a/pokedex/data/csv/pokedex_version_groups.csv b/pokedex/data/csv/pokedex_version_groups.csv
index bf4ae2b..483140a 100644
--- a/pokedex/data/csv/pokedex_version_groups.csv
+++ b/pokedex/data/csv/pokedex_version_groups.csv
@@ -15,3 +15,13 @@ pokedex_id,version_group_id
 13,15
 14,15
 15,16
+16,17
+17,17
+18,17
+19,17
+20,17
+21,18
+22,18
+23,18
+24,18
+25,18
diff --git a/pokedex/data/csv/pokedexes.csv b/pokedex/data/csv/pokedexes.csv
index 1adfa3a..9335950 100644
--- a/pokedex/data/csv/pokedexes.csv
+++ b/pokedex/data/csv/pokedexes.csv
@@ -13,3 +13,13 @@ id,region_id,identifier,is_main_series
 13,6,kalos-coastal,1
 14,6,kalos-mountain,1
 15,3,updated-hoenn,1
+16,7,original-alola,1
+17,7,original-melemele,1
+18,7,original-akala,1
+19,7,original-ulaula,1
+20,7,original-poni,1
+21,7,updated-alola,1
+22,7,updated-melemele,1
+23,7,updated-akala,1
+24,7,updated-ulaula,1
+25,7,updated-poni,1
diff --git a/pokedex/data/csv/pokemon.csv b/pokedex/data/csv/pokemon.csv
index 14d1065..c9eb367 100644
--- a/pokedex/data/csv/pokemon.csv
+++ b/pokedex/data/csv/pokemon.csv
@@ -24,942 +24,942 @@ id,identifier,species_id,height,weight,base_experience,order,is_default
 23,ekans,23,20,69,58,32,1
 24,arbok,24,35,650,157,33,1
 25,pikachu,25,4,60,112,35,1
-26,raichu,26,8,300,218,43,1
-27,sandshrew,27,6,120,60,45,1
-28,sandslash,28,10,295,158,47,1
-29,nidoran-f,29,4,70,55,49,1
-30,nidorina,30,8,200,128,50,1
-31,nidoqueen,31,13,600,227,51,1
-32,nidoran-m,32,5,90,55,52,1
-33,nidorino,33,9,195,128,53,1
-34,nidoking,34,14,620,227,54,1
-35,clefairy,35,6,75,113,56,1
-36,clefable,36,13,400,217,57,1
-37,vulpix,37,6,99,60,58,1
-38,ninetales,38,11,199,177,60,1
-39,jigglypuff,39,5,55,95,63,1
-40,wigglytuff,40,10,120,196,64,1
-41,zubat,41,8,75,49,65,1
-42,golbat,42,16,550,159,66,1
-43,oddish,43,5,54,64,68,1
-44,gloom,44,8,86,138,69,1
-45,vileplume,45,12,186,221,70,1
-46,paras,46,3,54,57,72,1
-47,parasect,47,10,295,142,73,1
-48,venonat,48,10,300,61,74,1
-49,venomoth,49,15,125,158,75,1
-50,diglett,50,2,8,53,76,1
-51,dugtrio,51,7,333,149,78,1
-52,meowth,52,4,42,58,80,1
-53,persian,53,10,320,154,82,1
-54,psyduck,54,8,196,64,84,1
-55,golduck,55,17,766,175,85,1
-56,mankey,56,5,280,61,86,1
-57,primeape,57,10,320,159,87,1
-58,growlithe,58,7,190,70,88,1
-59,arcanine,59,19,1550,194,89,1
-60,poliwag,60,6,124,60,90,1
-61,poliwhirl,61,10,200,135,91,1
-62,poliwrath,62,13,540,230,92,1
-63,abra,63,9,195,62,94,1
-64,kadabra,64,13,565,140,95,1
-65,alakazam,65,15,480,225,96,1
-66,machop,66,8,195,61,98,1
-67,machoke,67,15,705,142,99,1
-68,machamp,68,16,1300,227,100,1
-69,bellsprout,69,7,40,60,101,1
-70,weepinbell,70,10,64,137,102,1
-71,victreebel,71,17,155,221,103,1
-72,tentacool,72,9,455,67,104,1
-73,tentacruel,73,16,550,180,105,1
-74,geodude,74,4,200,60,106,1
-75,graveler,75,10,1050,137,108,1
-76,golem,76,14,3000,223,110,1
-77,ponyta,77,10,300,82,112,1
-78,rapidash,78,17,950,175,113,1
-79,slowpoke,79,12,360,63,114,1
-80,slowbro,80,16,785,172,115,1
-81,magnemite,81,3,60,65,118,1
-82,magneton,82,10,600,163,119,1
-83,farfetchd,83,8,150,132,121,1
-84,doduo,84,14,392,62,122,1
-85,dodrio,85,18,852,165,123,1
-86,seel,86,11,900,65,124,1
-87,dewgong,87,17,1200,166,125,1
-88,grimer,88,9,300,65,126,1
-89,muk,89,12,300,175,128,1
-90,shellder,90,3,40,61,130,1
-91,cloyster,91,15,1325,184,131,1
-92,gastly,92,13,1,62,132,1
-93,haunter,93,16,1,142,133,1
-94,gengar,94,15,405,225,134,1
-95,onix,95,88,2100,77,136,1
-96,drowzee,96,10,324,66,139,1
-97,hypno,97,16,756,169,140,1
-98,krabby,98,4,65,65,141,1
-99,kingler,99,13,600,166,142,1
-100,voltorb,100,5,104,66,143,1
-101,electrode,101,12,666,172,144,1
-102,exeggcute,102,4,25,65,145,1
-103,exeggutor,103,20,1200,186,146,1
-104,cubone,104,4,65,64,148,1
-105,marowak,105,10,450,149,149,1
-106,hitmonlee,106,15,498,159,153,1
-107,hitmonchan,107,14,502,159,154,1
-108,lickitung,108,12,655,77,156,1
-109,koffing,109,6,10,68,158,1
-110,weezing,110,12,95,172,159,1
-111,rhyhorn,111,10,1150,69,160,1
-112,rhydon,112,19,1200,170,161,1
-113,chansey,113,11,346,395,164,1
-114,tangela,114,10,350,87,166,1
-115,kangaskhan,115,22,800,172,168,1
-116,horsea,116,4,80,59,170,1
-117,seadra,117,12,250,154,171,1
-118,goldeen,118,6,150,64,173,1
-119,seaking,119,13,390,158,174,1
-120,staryu,120,8,345,68,175,1
-121,starmie,121,11,800,182,176,1
-122,mr-mime,122,13,545,161,178,1
-123,scyther,123,15,560,100,179,1
-124,jynx,124,14,406,159,183,1
-125,electabuzz,125,11,300,172,185,1
-126,magmar,126,13,445,173,188,1
-127,pinsir,127,15,550,175,190,1
-128,tauros,128,14,884,172,192,1
-129,magikarp,129,9,100,40,193,1
-130,gyarados,130,65,2350,189,194,1
-131,lapras,131,25,2200,187,196,1
-132,ditto,132,3,40,101,197,1
-133,eevee,133,3,65,65,198,1
-134,vaporeon,134,10,290,184,199,1
-135,jolteon,135,8,245,184,200,1
-136,flareon,136,9,250,184,201,1
-137,porygon,137,8,365,79,207,1
-138,omanyte,138,4,75,71,210,1
-139,omastar,139,10,350,173,211,1
-140,kabuto,140,5,115,71,212,1
-141,kabutops,141,13,405,173,213,1
-142,aerodactyl,142,18,590,180,214,1
-143,snorlax,143,21,4600,189,217,1
-144,articuno,144,17,554,261,218,1
-145,zapdos,145,16,526,261,219,1
-146,moltres,146,20,600,261,220,1
-147,dratini,147,18,33,60,221,1
-148,dragonair,148,40,165,147,222,1
-149,dragonite,149,22,2100,270,223,1
-150,mewtwo,150,20,1220,306,224,1
-151,mew,151,4,40,270,227,1
-152,chikorita,152,9,64,64,228,1
-153,bayleef,153,12,158,142,229,1
-154,meganium,154,18,1005,236,230,1
-155,cyndaquil,155,5,79,62,231,1
-156,quilava,156,9,190,142,232,1
-157,typhlosion,157,17,795,240,233,1
-158,totodile,158,6,95,63,234,1
-159,croconaw,159,11,250,142,235,1
-160,feraligatr,160,23,888,239,236,1
-161,sentret,161,8,60,43,237,1
-162,furret,162,18,325,145,238,1
-163,hoothoot,163,7,212,52,239,1
-164,noctowl,164,16,408,158,240,1
-165,ledyba,165,10,108,53,241,1
-166,ledian,166,14,356,137,242,1
-167,spinarak,167,5,85,50,243,1
-168,ariados,168,11,335,140,244,1
-169,crobat,169,18,750,241,67,1
-170,chinchou,170,5,120,66,245,1
-171,lanturn,171,12,225,161,246,1
+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,55,1
-174,igglybuff,174,3,10,42,62,1
-175,togepi,175,3,15,49,247,1
-176,togetic,176,6,32,142,248,1
-177,natu,177,2,20,64,250,1
-178,xatu,178,15,150,165,251,1
-179,mareep,179,6,78,56,252,1
-180,flaaffy,180,8,133,128,253,1
-181,ampharos,181,14,615,230,254,1
-182,bellossom,182,4,58,221,71,1
-183,marill,183,4,85,88,257,1
-184,azumarill,184,8,285,189,258,1
-185,sudowoodo,185,12,380,144,260,1
-186,politoed,186,11,339,225,93,1
-187,hoppip,187,4,5,50,261,1
-188,skiploom,188,6,10,119,262,1
-189,jumpluff,189,8,30,207,263,1
-190,aipom,190,8,115,72,264,1
-191,sunkern,191,3,18,36,266,1
-192,sunflora,192,8,85,149,267,1
-193,yanma,193,12,380,78,268,1
-194,wooper,194,4,85,42,270,1
-195,quagsire,195,14,750,151,271,1
-196,espeon,196,9,265,184,202,1
-197,umbreon,197,10,270,184,203,1
-198,murkrow,198,5,21,81,272,1
-199,slowking,199,20,795,172,117,1
-200,misdreavus,200,7,10,87,274,1
-201,unown,201,5,50,118,276,1
-202,wobbuffet,202,13,285,142,278,1
-203,girafarig,203,15,415,159,279,1
-204,pineco,204,6,72,58,280,1
-205,forretress,205,12,1258,163,281,1
-206,dunsparce,206,15,140,145,282,1
-207,gligar,207,11,648,86,283,1
-208,steelix,208,92,4000,179,137,1
-209,snubbull,209,6,78,60,285,1
-210,granbull,210,14,487,158,286,1
-211,qwilfish,211,5,39,88,287,1
-212,scizor,212,18,1180,175,180,1
-213,shuckle,213,6,205,177,288,1
-214,heracross,214,15,540,175,289,1
-215,sneasel,215,9,280,86,291,1
-216,teddiursa,216,6,88,66,293,1
-217,ursaring,217,18,1258,175,294,1
-218,slugma,218,7,350,50,295,1
-219,magcargo,219,8,550,151,296,1
-220,swinub,220,4,65,50,297,1
-221,piloswine,221,11,558,158,298,1
-222,corsola,222,6,50,144,300,1
-223,remoraid,223,6,120,60,301,1
-224,octillery,224,9,285,168,302,1
-225,delibird,225,9,160,116,303,1
-226,mantine,226,21,2200,170,305,1
-227,skarmory,227,17,505,163,306,1
-228,houndour,228,6,108,66,307,1
-229,houndoom,229,14,350,175,308,1
-230,kingdra,230,18,1520,243,172,1
-231,phanpy,231,5,335,66,310,1
-232,donphan,232,11,1200,175,311,1
-233,porygon2,233,6,325,180,208,1
-234,stantler,234,14,712,163,312,1
-235,smeargle,235,12,580,88,313,1
-236,tyrogue,236,7,210,42,152,1
-237,hitmontop,237,14,480,159,155,1
-238,smoochum,238,4,60,61,182,1
-239,elekid,239,6,235,72,184,1
-240,magby,240,7,214,73,187,1
-241,miltank,241,12,755,172,314,1
-242,blissey,242,15,468,608,165,1
-243,raikou,243,19,1780,261,315,1
-244,entei,244,21,1980,261,316,1
-245,suicune,245,20,1870,261,317,1
-246,larvitar,246,6,720,60,318,1
-247,pupitar,247,12,1520,144,319,1
-248,tyranitar,248,20,2020,270,320,1
-249,lugia,249,52,2160,306,322,1
-250,ho-oh,250,38,1990,306,323,1
-251,celebi,251,6,50,270,324,1
-252,treecko,252,5,50,62,325,1
-253,grovyle,253,9,216,142,326,1
-254,sceptile,254,17,522,239,327,1
-255,torchic,255,4,25,62,329,1
-256,combusken,256,9,195,142,330,1
-257,blaziken,257,19,520,239,331,1
-258,mudkip,258,4,76,62,333,1
-259,marshtomp,259,7,280,142,334,1
-260,swampert,260,15,819,241,335,1
-261,poochyena,261,5,136,56,337,1
-262,mightyena,262,10,370,147,338,1
-263,zigzagoon,263,4,175,56,339,1
-264,linoone,264,5,325,147,340,1
-265,wurmple,265,3,36,56,341,1
-266,silcoon,266,6,100,72,342,1
-267,beautifly,267,10,284,178,343,1
-268,cascoon,268,7,115,72,344,1
-269,dustox,269,12,316,173,345,1
-270,lotad,270,5,26,44,346,1
-271,lombre,271,12,325,119,347,1
-272,ludicolo,272,15,550,216,348,1
-273,seedot,273,5,40,44,349,1
-274,nuzleaf,274,10,280,119,350,1
-275,shiftry,275,13,596,216,351,1
-276,taillow,276,3,23,54,352,1
-277,swellow,277,7,198,159,353,1
-278,wingull,278,6,95,54,354,1
-279,pelipper,279,12,280,154,355,1
-280,ralts,280,4,66,40,356,1
-281,kirlia,281,8,202,97,357,1
-282,gardevoir,282,16,484,233,358,1
-283,surskit,283,5,17,54,362,1
-284,masquerain,284,8,36,159,363,1
-285,shroomish,285,4,45,59,364,1
-286,breloom,286,12,392,161,365,1
-287,slakoth,287,8,240,56,366,1
-288,vigoroth,288,14,465,154,367,1
-289,slaking,289,20,1305,252,368,1
-290,nincada,290,5,55,53,369,1
-291,ninjask,291,8,120,160,370,1
-292,shedinja,292,8,12,83,371,1
-293,whismur,293,6,163,48,372,1
-294,loudred,294,10,405,126,373,1
-295,exploud,295,15,840,221,374,1
-296,makuhita,296,10,864,47,375,1
-297,hariyama,297,23,2538,166,376,1
-298,azurill,298,2,20,38,256,1
-299,nosepass,299,10,970,75,377,1
-300,skitty,300,6,110,52,379,1
-301,delcatty,301,11,326,140,380,1
-302,sableye,302,5,110,133,381,1
-303,mawile,303,6,115,133,383,1
-304,aron,304,4,600,66,385,1
-305,lairon,305,9,1200,151,386,1
-306,aggron,306,21,3600,239,387,1
-307,meditite,307,6,112,56,389,1
-308,medicham,308,13,315,144,390,1
-309,electrike,309,6,152,59,392,1
-310,manectric,310,15,402,166,393,1
-311,plusle,311,4,42,142,395,1
-312,minun,312,4,42,142,396,1
-313,volbeat,313,7,177,151,397,1
-314,illumise,314,6,177,151,398,1
-315,roselia,315,3,20,140,400,1
-316,gulpin,316,4,103,60,402,1
-317,swalot,317,17,800,163,403,1
-318,carvanha,318,8,208,61,404,1
-319,sharpedo,319,18,888,161,405,1
-320,wailmer,320,20,1300,80,407,1
-321,wailord,321,145,3980,175,408,1
-322,numel,322,7,240,61,409,1
-323,camerupt,323,19,2200,161,410,1
-324,torkoal,324,5,804,165,412,1
-325,spoink,325,7,306,66,413,1
-326,grumpig,326,9,715,165,414,1
-327,spinda,327,11,50,126,415,1
-328,trapinch,328,7,150,58,416,1
-329,vibrava,329,11,153,119,417,1
-330,flygon,330,20,820,234,418,1
-331,cacnea,331,4,513,67,419,1
-332,cacturne,332,13,774,166,420,1
-333,swablu,333,4,12,62,421,1
-334,altaria,334,11,206,172,422,1
-335,zangoose,335,13,403,160,424,1
-336,seviper,336,27,525,160,425,1
-337,lunatone,337,10,1680,161,426,1
-338,solrock,338,12,1540,161,427,1
-339,barboach,339,4,19,58,428,1
-340,whiscash,340,9,236,164,429,1
-341,corphish,341,6,115,62,430,1
-342,crawdaunt,342,11,328,164,431,1
-343,baltoy,343,5,215,60,432,1
-344,claydol,344,15,1080,175,433,1
-345,lileep,345,10,238,71,434,1
-346,cradily,346,15,604,173,435,1
-347,anorith,347,7,125,71,436,1
-348,armaldo,348,15,682,173,437,1
-349,feebas,349,6,74,40,438,1
-350,milotic,350,62,1620,189,439,1
-351,castform,351,3,8,147,440,1
-352,kecleon,352,10,220,154,444,1
-353,shuppet,353,6,23,59,445,1
-354,banette,354,11,125,159,446,1
-355,duskull,355,8,150,59,448,1
-356,dusclops,356,16,306,159,449,1
-357,tropius,357,20,1000,161,451,1
-358,chimecho,358,6,10,159,453,1
-359,absol,359,12,470,163,454,1
-360,wynaut,360,6,140,52,277,1
-361,snorunt,361,7,168,60,456,1
-362,glalie,362,15,2565,168,457,1
-363,spheal,363,8,395,58,460,1
-364,sealeo,364,11,876,144,461,1
-365,walrein,365,14,1506,239,462,1
-366,clamperl,366,4,525,69,463,1
-367,huntail,367,17,270,170,464,1
-368,gorebyss,368,18,226,170,465,1
-369,relicanth,369,10,234,170,466,1
-370,luvdisc,370,6,87,116,467,1
-371,bagon,371,6,421,60,468,1
-372,shelgon,372,11,1105,147,469,1
-373,salamence,373,15,1026,270,470,1
-374,beldum,374,6,952,60,472,1
-375,metang,375,12,2025,147,473,1
-376,metagross,376,16,5500,270,474,1
-377,regirock,377,17,2300,261,476,1
-378,regice,378,18,1750,261,477,1
-379,registeel,379,19,2050,261,478,1
-380,latias,380,14,400,270,479,1
-381,latios,381,20,600,270,481,1
-382,kyogre,382,45,3520,302,483,1
-383,groudon,383,35,9500,302,485,1
-384,rayquaza,384,70,2065,306,487,1
-385,jirachi,385,3,11,270,489,1
-386,deoxys-normal,386,17,608,270,490,1
-387,turtwig,387,4,102,64,494,1
-388,grotle,388,11,970,142,495,1
-389,torterra,389,22,3100,236,496,1
-390,chimchar,390,5,62,62,497,1
-391,monferno,391,9,220,142,498,1
-392,infernape,392,12,550,240,499,1
-393,piplup,393,4,52,63,500,1
-394,prinplup,394,8,230,142,501,1
-395,empoleon,395,17,845,239,502,1
-396,starly,396,3,20,49,503,1
-397,staravia,397,6,155,119,504,1
-398,staraptor,398,12,249,218,505,1
-399,bidoof,399,5,200,50,506,1
-400,bibarel,400,10,315,144,507,1
-401,kricketot,401,3,22,39,508,1
-402,kricketune,402,10,255,134,509,1
-403,shinx,403,5,95,53,510,1
-404,luxio,404,9,305,127,511,1
-405,luxray,405,14,420,235,512,1
-406,budew,406,2,12,56,399,1
-407,roserade,407,9,145,232,401,1
-408,cranidos,408,9,315,70,513,1
-409,rampardos,409,16,1025,173,514,1
-410,shieldon,410,5,570,70,515,1
-411,bastiodon,411,13,1495,173,516,1
-412,burmy,412,2,34,45,517,1
-413,wormadam-plant,413,5,65,148,518,1
-414,mothim,414,9,233,148,521,1
-415,combee,415,3,55,49,522,1
-416,vespiquen,416,12,385,166,523,1
-417,pachirisu,417,4,39,142,524,1
-418,buizel,418,7,295,66,525,1
-419,floatzel,419,11,335,173,526,1
-420,cherubi,420,4,33,55,527,1
-421,cherrim,421,5,93,158,528,1
-422,shellos,422,3,63,65,529,1
-423,gastrodon,423,9,299,166,530,1
-424,ambipom,424,12,203,169,265,1
-425,drifloon,425,4,12,70,531,1
-426,drifblim,426,12,150,174,532,1
-427,buneary,427,4,55,70,533,1
-428,lopunny,428,12,333,168,534,1
-429,mismagius,429,9,44,173,275,1
-430,honchkrow,430,9,273,177,273,1
-431,glameow,431,5,39,62,536,1
-432,purugly,432,10,438,158,537,1
-433,chingling,433,2,6,57,452,1
-434,stunky,434,4,192,66,538,1
-435,skuntank,435,10,380,168,539,1
-436,bronzor,436,5,605,60,540,1
-437,bronzong,437,13,1870,175,541,1
-438,bonsly,438,5,150,58,259,1
-439,mime-jr,439,6,130,62,177,1
-440,happiny,440,6,244,110,163,1
-441,chatot,441,5,19,144,542,1
-442,spiritomb,442,10,1080,170,543,1
-443,gible,443,7,205,60,544,1
-444,gabite,444,14,560,144,545,1
-445,garchomp,445,19,950,270,546,1
-446,munchlax,446,6,1050,78,216,1
-447,riolu,447,7,202,57,548,1
-448,lucario,448,12,540,184,549,1
-449,hippopotas,449,8,495,66,551,1
-450,hippowdon,450,20,3000,184,552,1
-451,skorupi,451,8,120,66,553,1
-452,drapion,452,13,615,175,554,1
-453,croagunk,453,7,230,60,555,1
-454,toxicroak,454,13,444,172,556,1
-455,carnivine,455,14,270,159,557,1
-456,finneon,456,4,70,66,558,1
-457,lumineon,457,12,240,161,559,1
-458,mantyke,458,10,650,69,304,1
-459,snover,459,10,505,67,560,1
-460,abomasnow,460,22,1355,173,561,1
-461,weavile,461,11,340,179,292,1
-462,magnezone,462,12,1800,241,120,1
-463,lickilicky,463,17,1400,180,157,1
-464,rhyperior,464,24,2828,241,162,1
-465,tangrowth,465,20,1286,187,167,1
-466,electivire,466,18,1386,243,186,1
-467,magmortar,467,16,680,243,189,1
-468,togekiss,468,15,380,245,249,1
-469,yanmega,469,19,515,180,269,1
-470,leafeon,470,10,255,184,204,1
-471,glaceon,471,8,259,184,205,1
-472,gliscor,472,20,425,179,284,1
-473,mamoswine,473,25,2910,239,299,1
-474,porygon-z,474,9,340,241,209,1
-475,gallade,475,16,520,233,360,1
-476,probopass,476,14,3400,184,378,1
-477,dusknoir,477,22,1066,236,450,1
-478,froslass,478,13,266,168,459,1
-479,rotom,479,3,3,154,563,1
-480,uxie,480,3,3,261,569,1
-481,mesprit,481,3,3,261,570,1
-482,azelf,482,3,3,261,571,1
-483,dialga,483,54,6830,306,572,1
-484,palkia,484,42,3360,306,573,1
-485,heatran,485,17,4300,270,574,1
-486,regigigas,486,37,4200,302,575,1
-487,giratina-altered,487,45,7500,306,576,1
-488,cresselia,488,15,856,270,578,1
-489,phione,489,4,31,216,579,1
-490,manaphy,490,3,14,270,580,1
-491,darkrai,491,15,505,270,581,1
-492,shaymin-land,492,2,21,270,582,1
-493,arceus,493,32,3200,324,584,1
-494,victini,494,4,40,270,585,1
-495,snivy,495,6,81,62,586,1
-496,servine,496,8,160,145,587,1
-497,serperior,497,33,630,238,588,1
-498,tepig,498,5,99,62,589,1
-499,pignite,499,10,555,146,590,1
-500,emboar,500,16,1500,238,591,1
-501,oshawott,501,5,59,62,592,1
-502,dewott,502,8,245,145,593,1
-503,samurott,503,15,946,238,594,1
-504,patrat,504,5,116,51,595,1
-505,watchog,505,11,270,147,596,1
-506,lillipup,506,4,41,55,597,1
-507,herdier,507,9,147,130,598,1
-508,stoutland,508,12,610,225,599,1
-509,purrloin,509,4,101,56,600,1
-510,liepard,510,11,375,156,601,1
-511,pansage,511,6,105,63,602,1
-512,simisage,512,11,305,174,603,1
-513,pansear,513,6,110,63,604,1
-514,simisear,514,10,280,174,605,1
-515,panpour,515,6,135,63,606,1
-516,simipour,516,10,290,174,607,1
-517,munna,517,6,233,58,608,1
-518,musharna,518,11,605,170,609,1
-519,pidove,519,3,21,53,610,1
-520,tranquill,520,6,150,125,611,1
-521,unfezant,521,12,290,220,612,1
-522,blitzle,522,8,298,59,613,1
-523,zebstrika,523,16,795,174,614,1
-524,roggenrola,524,4,180,56,615,1
-525,boldore,525,9,1020,137,616,1
-526,gigalith,526,17,2600,232,617,1
-527,woobat,527,4,21,65,618,1
-528,swoobat,528,9,105,149,619,1
-529,drilbur,529,3,85,66,620,1
-530,excadrill,530,7,404,178,621,1
-531,audino,531,11,310,390,622,1
-532,timburr,532,6,125,61,624,1
-533,gurdurr,533,12,400,142,625,1
-534,conkeldurr,534,14,870,227,626,1
-535,tympole,535,5,45,59,627,1
-536,palpitoad,536,8,170,134,628,1
-537,seismitoad,537,15,620,229,629,1
-538,throh,538,13,555,163,630,1
-539,sawk,539,14,510,163,631,1
-540,sewaddle,540,3,25,62,632,1
-541,swadloon,541,5,73,133,633,1
-542,leavanny,542,12,205,225,634,1
-543,venipede,543,4,53,52,635,1
-544,whirlipede,544,12,585,126,636,1
-545,scolipede,545,25,2005,218,637,1
-546,cottonee,546,3,6,56,638,1
-547,whimsicott,547,7,66,168,639,1
-548,petilil,548,5,66,56,640,1
-549,lilligant,549,11,163,168,641,1
-550,basculin-red-striped,550,10,180,161,642,1
-551,sandile,551,7,152,58,644,1
-552,krokorok,552,10,334,123,645,1
-553,krookodile,553,15,963,234,646,1
-554,darumaka,554,6,375,63,647,1
-555,darmanitan-standard,555,13,929,168,648,1
-556,maractus,556,10,280,161,650,1
-557,dwebble,557,3,145,65,651,1
-558,crustle,558,14,2000,170,652,1
-559,scraggy,559,6,118,70,653,1
-560,scrafty,560,11,300,171,654,1
-561,sigilyph,561,14,140,172,655,1
-562,yamask,562,5,15,61,656,1
-563,cofagrigus,563,17,765,169,657,1
-564,tirtouga,564,7,165,71,658,1
-565,carracosta,565,12,810,173,659,1
-566,archen,566,5,95,71,660,1
-567,archeops,567,14,320,177,661,1
-568,trubbish,568,6,310,66,662,1
-569,garbodor,569,19,1073,166,663,1
-570,zorua,570,7,125,66,664,1
-571,zoroark,571,16,811,179,665,1
-572,minccino,572,4,58,60,666,1
-573,cinccino,573,5,75,165,667,1
-574,gothita,574,4,58,58,668,1
-575,gothorita,575,7,180,137,669,1
-576,gothitelle,576,15,440,221,670,1
-577,solosis,577,3,10,58,671,1
-578,duosion,578,6,80,130,672,1
-579,reuniclus,579,10,201,221,673,1
-580,ducklett,580,5,55,61,674,1
-581,swanna,581,13,242,166,675,1
-582,vanillite,582,4,57,61,676,1
-583,vanillish,583,11,410,138,677,1
-584,vanilluxe,584,13,575,241,678,1
-585,deerling,585,6,195,67,679,1
-586,sawsbuck,586,19,925,166,680,1
-587,emolga,587,4,50,150,681,1
-588,karrablast,588,5,59,63,682,1
-589,escavalier,589,10,330,173,683,1
-590,foongus,590,2,10,59,684,1
-591,amoonguss,591,6,105,162,685,1
-592,frillish,592,12,330,67,686,1
-593,jellicent,593,22,1350,168,687,1
-594,alomomola,594,12,316,165,688,1
-595,joltik,595,1,6,64,689,1
-596,galvantula,596,8,143,165,690,1
-597,ferroseed,597,6,188,61,691,1
-598,ferrothorn,598,10,1100,171,692,1
-599,klink,599,3,210,60,693,1
-600,klang,600,6,510,154,694,1
-601,klinklang,601,6,810,234,695,1
-602,tynamo,602,2,3,55,696,1
-603,eelektrik,603,12,220,142,697,1
-604,eelektross,604,21,805,232,698,1
-605,elgyem,605,5,90,67,699,1
-606,beheeyem,606,10,345,170,700,1
-607,litwick,607,3,31,55,701,1
-608,lampent,608,6,130,130,702,1
-609,chandelure,609,10,343,234,703,1
-610,axew,610,6,180,64,704,1
-611,fraxure,611,10,360,144,705,1
-612,haxorus,612,18,1055,243,706,1
-613,cubchoo,613,5,85,61,707,1
-614,beartic,614,26,2600,177,708,1
-615,cryogonal,615,11,1480,180,709,1
-616,shelmet,616,4,77,61,710,1
-617,accelgor,617,8,253,173,711,1
-618,stunfisk,618,7,110,165,712,1
-619,mienfoo,619,9,200,70,713,1
-620,mienshao,620,14,355,179,714,1
-621,druddigon,621,16,1390,170,715,1
-622,golett,622,10,920,61,716,1
-623,golurk,623,28,3300,169,717,1
-624,pawniard,624,5,102,68,718,1
-625,bisharp,625,16,700,172,719,1
-626,bouffalant,626,16,946,172,720,1
-627,rufflet,627,5,105,70,721,1
-628,braviary,628,15,410,179,722,1
-629,vullaby,629,5,90,74,723,1
-630,mandibuzz,630,12,395,179,724,1
-631,heatmor,631,14,580,169,725,1
-632,durant,632,3,330,169,726,1
-633,deino,633,8,173,60,727,1
-634,zweilous,634,14,500,147,728,1
-635,hydreigon,635,18,1600,270,729,1
-636,larvesta,636,11,288,72,730,1
-637,volcarona,637,16,460,248,731,1
-638,cobalion,638,21,2500,261,732,1
-639,terrakion,639,19,2600,261,733,1
-640,virizion,640,20,2000,261,734,1
-641,tornadus-incarnate,641,15,630,261,735,1
-642,thundurus-incarnate,642,15,610,261,737,1
-643,reshiram,643,32,3300,306,739,1
-644,zekrom,644,29,3450,306,740,1
-645,landorus-incarnate,645,15,680,270,741,1
-646,kyurem,646,30,3250,297,743,1
-647,keldeo-ordinary,647,14,485,261,746,1
-648,meloetta-aria,648,6,65,270,748,1
-649,genesect,649,15,825,270,750,1
-650,chespin,650,4,90,63,751,1
-651,quilladin,651,7,290,142,752,1
-652,chesnaught,652,16,900,239,753,1
-653,fennekin,653,4,94,61,754,1
-654,braixen,654,10,145,143,755,1
-655,delphox,655,15,390,240,756,1
-656,froakie,656,3,70,63,757,1
-657,frogadier,657,6,109,142,758,1
-658,greninja,658,15,400,239,759,1
-659,bunnelby,659,4,50,47,762,1
-660,diggersby,660,10,424,148,763,1
-661,fletchling,661,3,17,56,764,1
-662,fletchinder,662,7,160,134,765,1
-663,talonflame,663,12,245,175,766,1
-664,scatterbug,664,3,25,40,767,1
-665,spewpa,665,3,84,75,768,1
-666,vivillon,666,12,170,185,769,1
-667,litleo,667,6,135,74,770,1
-668,pyroar,668,15,815,177,771,1
-669,flabebe,669,1,1,61,772,1
-670,floette,670,2,9,130,773,1
-671,florges,671,11,100,248,775,1
-672,skiddo,672,9,310,70,776,1
-673,gogoat,673,17,910,186,777,1
-674,pancham,674,6,80,70,778,1
-675,pangoro,675,21,1360,173,779,1
-676,furfrou,676,12,280,165,780,1
-677,espurr,677,3,35,71,781,1
-678,meowstic-male,678,6,85,163,782,1
-679,honedge,679,8,20,65,784,1
-680,doublade,680,8,45,157,785,1
-681,aegislash-shield,681,17,530,234,786,1
-682,spritzee,682,2,5,68,788,1
-683,aromatisse,683,8,155,162,789,1
-684,swirlix,684,4,35,68,790,1
-685,slurpuff,685,8,50,168,791,1
-686,inkay,686,4,35,58,792,1
-687,malamar,687,15,470,169,793,1
-688,binacle,688,5,310,61,794,1
-689,barbaracle,689,13,960,175,795,1
-690,skrelp,690,5,73,64,796,1
-691,dragalge,691,18,815,173,797,1
-692,clauncher,692,5,83,66,798,1
-693,clawitzer,693,13,353,100,799,1
-694,helioptile,694,5,60,58,800,1
-695,heliolisk,695,10,210,168,801,1
-696,tyrunt,696,8,260,72,802,1
-697,tyrantrum,697,25,2700,182,803,1
-698,amaura,698,13,252,72,804,1
-699,aurorus,699,27,2250,104,805,1
-700,sylveon,700,10,235,184,206,1
-701,hawlucha,701,8,215,175,806,1
-702,dedenne,702,2,22,151,807,1
-703,carbink,703,3,57,100,808,1
-704,goomy,704,3,28,60,809,1
-705,sliggoo,705,8,175,158,810,1
-706,goodra,706,20,1505,270,811,1
-707,klefki,707,2,30,165,812,1
-708,phantump,708,4,70,62,813,1
-709,trevenant,709,15,710,166,814,1
-710,pumpkaboo-average,710,4,50,67,815,1
-711,gourgeist-average,711,9,125,173,819,1
-712,bergmite,712,10,995,61,823,1
-713,avalugg,713,20,5050,180,824,1
-714,noibat,714,5,80,49,825,1
-715,noivern,715,15,850,187,826,1
-716,xerneas,716,30,2150,306,827,1
-717,yveltal,717,58,2030,306,828,1
-718,zygarde,718,50,3050,270,829,1
-719,diancie,719,7,88,270,833,1
-720,hoopa,720,5,90,270,835,1
-721,volcanion,721,17,1950,270,837,1
-722,rowlet,722,3,15,64,838,1
-723,dartrix,723,7,160,147,839,1
-724,decidueye,724,16,366,239,840,1
-725,litten,725,4,43,64,841,1
-726,torracat,726,7,250,147,842,1
-727,incineroar,727,18,830,239,843,1
-728,popplio,728,4,75,64,844,1
-729,brionne,729,6,175,147,845,1
-730,primarina,730,18,440,239,846,1
-731,pikipek,731,3,12,53,847,1
-732,trumbeak,732,6,148,124,848,1
-733,toucannon,733,11,260,218,849,1
-734,yungoos,734,4,60,51,850,1
-735,gumshoos,735,7,142,146,851,1
-736,grubbin,736,4,44,60,853,1
-737,charjabug,737,5,105,140,854,1
-738,vikavolt,738,15,450,225,855,1
-739,crabrawler,739,6,70,68,857,1
-740,crabominable,740,17,1800,167,858,1
-741,oricorio-baile,741,6,34,167,859,1
-742,cutiefly,742,1,2,61,863,1
-743,ribombee,743,2,5,162,864,1
-744,rockruff,744,5,92,56,866,1
-745,lycanroc-midday,745,8,250,170,868,1
-746,wishiwashi-solo,746,2,3,61,871,1
-747,mareanie,747,4,80,61,873,1
-748,toxapex,748,7,145,173,874,1
-749,mudbray,749,10,1100,77,875,1
-750,mudsdale,750,25,9200,175,876,1
-751,dewpider,751,3,40,54,877,1
-752,araquanid,752,18,820,159,878,1
-753,fomantis,753,3,15,50,880,1
-754,lurantis,754,9,185,168,881,1
-755,morelull,755,2,15,57,883,1
-756,shiinotic,756,10,115,142,884,1
-757,salandit,757,6,48,64,885,1
-758,salazzle,758,12,222,168,886,1
-759,stufful,759,5,68,68,888,1
-760,bewear,760,21,1350,175,889,1
-761,bounsweet,761,3,32,42,890,1
-762,steenee,762,7,82,102,891,1
-763,tsareena,763,12,214,230,892,1
-764,comfey,764,1,3,170,893,1
-765,oranguru,765,15,760,172,894,1
-766,passimian,766,20,828,172,895,1
-767,wimpod,767,5,120,46,896,1
-768,golisopod,768,20,1080,186,897,1
-769,sandygast,769,5,700,64,898,1
-770,palossand,770,13,2500,168,899,1
-771,pyukumuku,771,3,12,144,900,1
-772,type-null,772,19,1205,107,901,1
-773,silvally,773,23,1005,257,902,1
-774,minior-red-meteor,774,3,400,154,903,1
-775,komala,775,4,199,168,917,1
-776,turtonator,776,20,2120,170,918,1
-777,togedemaru,777,3,33,152,919,1
-778,mimikyu-disguised,778,2,7,167,921,1
-779,bruxish,779,9,190,166,925,1
-780,drampa,780,30,1850,170,926,1
-781,dhelmise,781,39,2100,181,927,1
-782,jangmo-o,782,6,297,60,928,1
-783,hakamo-o,783,12,470,147,929,1
-784,kommo-o,784,16,782,270,930,1
-785,tapu-koko,785,18,205,257,932,1
-786,tapu-lele,786,12,186,257,933,1
-787,tapu-bulu,787,19,455,257,934,1
-788,tapu-fini,788,13,212,257,935,1
-789,cosmog,789,2,1,40,936,1
-790,cosmoem,790,1,9999,140,937,1
-791,solgaleo,791,34,2300,306,938,1
-792,lunala,792,40,1200,306,939,1
-793,nihilego,793,12,555,257,940,1
-794,buzzwole,794,24,3336,257,941,1
-795,pheromosa,795,18,250,257,942,1
-796,xurkitree,796,38,1000,257,943,1
-797,celesteela,797,92,9999,257,944,1
-798,kartana,798,3,1,257,945,1
-799,guzzlord,799,55,8880,257,946,1
-800,necrozma,800,24,2300,270,947,1
-801,magearna,801,10,805,270,951,1
-802,marshadow,802,7,222,270,953,1
-803,poipole,803,6,18,189,954,1
-804,naganadel,804,36,1500,243,955,1
-805,stakataka,805,55,8200,257,956,1
-806,blacephalon,806,18,130,257,957,1
-807,zeraora,807,15,445,270,958,1
-10001,deoxys-attack,386,17,608,270,491,0
-10002,deoxys-defense,386,17,608,270,492,0
-10003,deoxys-speed,386,17,608,270,493,0
-10004,wormadam-sandy,413,5,65,148,519,0
-10005,wormadam-trash,413,5,65,148,520,0
-10006,shaymin-sky,492,4,52,270,583,0
-10007,giratina-origin,487,69,6500,306,577,0
-10008,rotom-heat,479,3,3,182,564,0
-10009,rotom-wash,479,3,3,182,565,0
-10010,rotom-frost,479,3,3,182,566,0
-10011,rotom-fan,479,3,3,182,567,0
-10012,rotom-mow,479,3,3,182,568,0
-10013,castform-sunny,351,3,8,147,441,0
-10014,castform-rainy,351,3,8,147,442,0
-10015,castform-snowy,351,3,8,147,443,0
-10016,basculin-blue-striped,550,10,180,161,643,0
-10017,darmanitan-zen,555,13,929,189,649,0
-10018,meloetta-pirouette,648,6,65,270,749,0
-10019,tornadus-therian,641,14,630,261,736,0
-10020,thundurus-therian,642,30,610,261,738,0
-10021,landorus-therian,645,13,680,270,742,0
-10022,kyurem-black,646,33,3250,315,745,0
-10023,kyurem-white,646,36,3250,315,744,0
-10024,keldeo-resolute,647,14,485,261,747,0
-10025,meowstic-female,678,6,85,163,783,0
-10026,aegislash-blade,681,17,530,234,787,0
-10027,pumpkaboo-small,710,3,35,67,816,0
-10028,pumpkaboo-large,710,5,75,67,817,0
-10029,pumpkaboo-super,710,8,150,67,818,0
-10030,gourgeist-small,711,7,95,173,820,0
-10031,gourgeist-large,711,11,140,173,821,0
-10032,gourgeist-super,711,17,390,173,822,0
+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,97,0
-10038,gengar-mega,94,14,405,270,135,0
-10039,kangaskhan-mega,115,22,1000,207,169,0
-10040,pinsir-mega,127,17,590,210,191,0
-10041,gyarados-mega,130,65,3050,224,195,0
-10042,aerodactyl-mega,142,21,790,215,215,0
-10043,mewtwo-mega-x,150,23,1270,351,225,0
-10044,mewtwo-mega-y,150,15,330,351,226,0
-10045,ampharos-mega,181,14,615,275,255,0
-10046,scizor-mega,212,20,1250,210,181,0
-10047,heracross-mega,214,17,625,210,290,0
-10048,houndoom-mega,229,19,495,210,309,0
-10049,tyranitar-mega,248,25,2550,315,321,0
-10050,blaziken-mega,257,19,520,284,332,0
-10051,gardevoir-mega,282,16,484,278,359,0
-10052,mawile-mega,303,10,235,168,384,0
-10053,aggron-mega,306,22,3950,284,388,0
-10054,medicham-mega,308,13,315,179,391,0
-10055,manectric-mega,310,18,440,201,394,0
-10056,banette-mega,354,12,130,194,447,0
-10057,absol-mega,359,12,490,198,455,0
-10058,garchomp-mega,445,19,950,315,547,0
-10059,lucario-mega,448,13,575,219,550,0
-10060,abomasnow-mega,460,27,1850,208,562,0
-10061,floette-eternal,670,2,9,243,774,0
-10062,latias-mega,380,18,520,315,480,0
-10063,latios-mega,381,23,700,315,482,0
-10064,swampert-mega,260,19,1020,286,336,0
-10065,sceptile-mega,254,19,552,284,328,0
-10066,sableye-mega,302,5,1610,168,382,0
-10067,altaria-mega,334,15,206,207,423,0
-10068,gallade-mega,475,16,564,278,361,0
-10069,audino-mega,531,15,320,425,623,0
-10070,sharpedo-mega,319,25,1303,196,406,0
-10071,slowbro-mega,80,20,1200,207,116,0
-10072,steelix-mega,208,105,7400,214,138,0
+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,458,0
-10075,diancie-mega,719,11,278,315,834,0
-10076,metagross-mega,376,25,9429,315,475,0
-10077,kyogre-primal,382,98,4300,347,484,0
-10078,groudon-primal,383,50,9997,347,486,0
-10079,rayquaza-mega,384,108,3920,351,488,0
+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,836,0
-10087,camerupt-mega,323,25,3205,196,411,0
-10088,lopunny-mega,428,13,283,203,535,0
-10089,salamence-mega,373,18,1126,315,471,0
+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,36,0
-10095,pikachu-hoenn-cap,25,4,60,112,37,0
-10096,pikachu-sinnoh-cap,25,4,60,112,38,0
-10097,pikachu-unova-cap,25,4,60,112,39,0
-10098,pikachu-kalos-cap,25,4,60,112,40,0
-10099,pikachu-alola-cap,25,4,60,112,41,0
-10100,raichu-alola,26,7,210,218,44,0
-10101,sandshrew-alola,27,7,400,60,46,0
-10102,sandslash-alola,28,12,550,158,48,0
-10103,vulpix-alola,37,6,99,60,59,0
-10104,ninetales-alola,38,11,199,177,61,0
-10105,diglett-alola,50,2,10,53,77,0
-10106,dugtrio-alola,51,7,666,149,79,0
-10107,meowth-alola,52,4,42,58,81,0
-10108,persian-alola,53,11,330,154,83,0
-10109,geodude-alola,74,4,203,60,107,0
-10110,graveler-alola,75,10,1100,137,109,0
-10111,golem-alola,76,17,3160,223,111,0
-10112,grimer-alola,88,7,420,65,127,0
-10113,muk-alola,89,10,520,175,129,0
-10114,exeggutor-alola,103,109,4156,186,147,0
-10115,marowak-alola,105,10,340,149,150,0
-10116,greninja-battle-bond,658,15,400,239,760,0
-10117,greninja-ash,658,15,400,288,761,0
-10118,zygarde-10,718,12,335,219,830,0
-10119,zygarde-50,718,50,3050,270,831,0
-10120,zygarde-complete,718,45,6100,319,832,0
-10121,gumshoos-totem,735,14,600,146,852,0
-10122,vikavolt-totem,738,26,1475,225,856,0
-10123,oricorio-pom-pom,741,6,34,167,860,0
-10124,oricorio-pau,741,6,34,167,861,0
-10125,oricorio-sensu,741,6,34,167,862,0
-10126,lycanroc-midnight,745,11,250,170,869,0
-10127,wishiwashi-school,746,82,786,217,872,0
-10128,lurantis-totem,754,15,580,168,882,0
-10129,salazzle-totem,758,21,810,168,887,0
-10130,minior-orange-meteor,774,3,400,154,904,0
-10131,minior-yellow-meteor,774,3,400,154,905,0
-10132,minior-green-meteor,774,3,400,154,906,0
-10133,minior-blue-meteor,774,3,400,154,907,0
-10134,minior-indigo-meteor,774,3,400,154,908,0
-10135,minior-violet-meteor,774,3,400,154,909,0
-10136,minior-red,774,3,3,175,910,0
-10137,minior-orange,774,3,3,175,911,0
-10138,minior-yellow,774,3,3,175,912,0
-10139,minior-green,774,3,3,175,913,0
-10140,minior-blue,774,3,3,175,914,0
-10141,minior-indigo,774,3,3,175,915,0
-10142,minior-violet,774,3,3,175,916,0
-10143,mimikyu-busted,778,2,7,167,922,0
-10144,mimikyu-totem-disguised,778,4,28,167,923,0
-10145,mimikyu-totem-busted,778,4,28,167,924,0
-10146,kommo-o-totem,784,24,2075,270,931,0
-10147,magearna-original,801,10,805,270,952,0
-10148,pikachu-partner-cap,25,4,60,112,42,0
-10149,marowak-totem,105,17,980,149,151,0
-10150,ribombee-totem,743,4,20,162,865,0
-10151,rockruff-own-tempo,744,5,92,56,867,0
-10152,lycanroc-dusk,745,8,250,170,870,0
-10153,araquanid-totem,752,31,2175,159,879,0
-10154,togedemaru-totem,777,6,130,152,920,0
-10155,necrozma-dusk,800,38,4600,306,948,0
-10156,necrozma-dawn,800,42,3500,306,949,0
-10157,necrozma-ultra,800,75,2300,339,950,0
+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/pokedex/data/csv/pokemon_dex_numbers.csv b/pokedex/data/csv/pokemon_dex_numbers.csv
index f8166df..b8096fd 100644
--- a/pokedex/data/csv/pokemon_dex_numbers.csv
+++ b/pokedex/data/csv/pokemon_dex_numbers.csv
@@ -52,16 +52,34 @@ species_id,pokedex_id,pokedex_number
 10,3,24
 10,7,24
 10,12,23
+10,16,17
+10,17,17
+10,18,8
+10,21,17
+10,22,17
+10,23,8
 11,1,11
 11,2,11
 11,3,25
 11,7,25
 11,12,24
+11,16,18
+11,17,18
+11,18,9
+11,21,18
+11,22,18
+11,23,9
 12,1,12
 12,2,12
 12,3,26
 12,7,26
 12,12,25
+12,16,19
+12,17,19
+12,18,10
+12,21,19
+12,22,19
+12,23,10
 13,1,13
 13,2,13
 13,3,27
@@ -98,33 +116,73 @@ species_id,pokedex_id,pokedex_number
 19,3,17
 19,7,17
 19,9,59
+19,16,15
+19,17,15
+19,18,6
+19,19,6
+19,20,6
+19,21,15
+19,22,15
+19,23,6
+19,24,6
+19,25,6
 20,1,20
 20,2,20
 20,3,18
 20,7,18
 20,9,60
+20,16,16
+20,17,16
+20,18,7
+20,19,7
+20,20,7
+20,21,16
+20,22,16
+20,23,7
+20,24,7
+20,25,7
 21,1,21
 21,2,21
 21,3,13
 21,7,13
 21,14,109
+21,16,73
+21,17,73
+21,19,40
+21,20,24
+21,21,87
+21,22,87
+21,24,40
+21,25,33
 22,1,22
 22,2,22
 22,3,14
 22,7,14
 22,14,110
+22,16,74
+22,17,74
+22,19,41
+22,20,25
+22,21,88
+22,22,88
+22,24,41
+22,25,34
 23,1,23
 23,2,23
 23,3,50
 23,7,50
 23,11,54
 23,14,37
+23,21,61
+23,22,61
 24,1,24
 24,2,24
 24,3,51
 24,7,51
 24,11,55
 24,14,38
+24,21,62
+24,22,62
 25,1,25
 25,2,25
 25,3,22
@@ -135,6 +193,10 @@ species_id,pokedex_id,pokedex_number
 25,11,16
 25,12,36
 25,15,163
+25,16,25
+25,17,25
+25,21,32
+25,22,32
 26,1,26
 26,2,26
 26,3,23
@@ -145,6 +207,10 @@ species_id,pokedex_id,pokedex_number
 26,11,17
 26,12,37
 26,15,164
+26,16,26
+26,17,26
+26,21,33
+26,22,33
 27,1,27
 27,2,27
 27,3,48
@@ -153,6 +219,10 @@ species_id,pokedex_id,pokedex_number
 27,9,113
 27,14,97
 27,15,117
+27,16,251
+27,19,123
+27,21,328
+27,24,149
 28,1,28
 28,2,28
 28,3,49
@@ -161,6 +231,10 @@ species_id,pokedex_id,pokedex_number
 28,9,114
 28,14,98
 28,15,118
+28,16,252
+28,19,124
+28,21,329
+28,24,150
 29,1,29
 29,2,29
 29,3,95
@@ -198,6 +272,10 @@ species_id,pokedex_id,pokedex_number
 35,6,100
 35,7,41
 35,9,89
+35,16,211
+35,19,83
+35,21,273
+35,24,94
 36,1,36
 36,2,36
 36,3,42
@@ -205,6 +283,10 @@ species_id,pokedex_id,pokedex_number
 36,6,101
 36,7,42
 36,9,90
+36,16,212
+36,19,84
+36,21,274
+36,24,95
 37,1,37
 37,2,37
 37,3,125
@@ -212,6 +294,10 @@ species_id,pokedex_id,pokedex_number
 37,7,127
 37,9,248
 37,15,160
+37,16,253
+37,19,125
+37,21,330
+37,24,151
 38,1,38
 38,2,38
 38,3,126
@@ -219,6 +305,10 @@ species_id,pokedex_id,pokedex_number
 38,7,128
 38,9,249
 38,15,161
+38,16,254
+38,19,126
+38,21,331
+38,24,152
 39,1,39
 39,2,39
 39,3,44
@@ -228,6 +318,10 @@ species_id,pokedex_id,pokedex_number
 39,11,21
 39,14,120
 39,15,143
+39,16,135
+39,18,62
+39,21,168
+39,23,69
 40,1,40
 40,2,40
 40,3,45
@@ -237,6 +331,10 @@ species_id,pokedex_id,pokedex_number
 40,11,22
 40,14,121
 40,15,144
+40,16,136
+40,18,63
+40,21,169
+40,23,70
 41,1,41
 41,2,41
 41,3,37
@@ -248,6 +346,16 @@ species_id,pokedex_id,pokedex_number
 41,11,23
 41,12,145
 41,15,65
+41,16,68
+41,17,68
+41,18,26
+41,19,35
+41,20,19
+41,21,80
+41,22,80
+41,23,26
+41,24,35
+41,25,26
 42,1,42
 42,2,42
 42,3,38
@@ -259,6 +367,16 @@ species_id,pokedex_id,pokedex_number
 42,11,24
 42,12,146
 42,15,66
+42,16,69
+42,17,69
+42,18,27
+42,19,36
+42,20,20
+42,21,81
+42,22,81
+42,23,27
+42,24,36
+42,25,27
 43,1,43
 43,2,43
 43,3,83
@@ -284,10 +402,22 @@ species_id,pokedex_id,pokedex_number
 46,2,46
 46,3,70
 46,7,70
+46,16,147
+46,18,74
+46,19,66
+46,21,180
+46,23,81
+46,24,72
 47,1,47
 47,2,47
 47,3,71
 47,7,71
+47,16,148
+47,18,75
+47,19,67
+47,21,181
+47,23,82
+47,24,73
 48,1,48
 48,2,48
 48,3,108
@@ -301,21 +431,53 @@ species_id,pokedex_id,pokedex_number
 50,3,132
 50,7,134
 50,14,1
+50,16,71
+50,17,71
+50,18,29
+50,19,38
+50,20,22
+50,21,85
+50,22,85
+50,23,29
+50,24,38
+50,25,31
 51,1,51
 51,2,51
 51,3,133
 51,7,135
 51,14,2
+51,16,72
+51,17,72
+51,18,30
+51,19,39
+51,20,23
+51,21,86
+51,22,86
+51,23,30
+51,24,39
+51,25,32
 52,1,52
 52,2,52
 52,3,136
 52,7,138
 52,11,58
+52,16,45
+52,17,45
+52,19,23
+52,21,52
+52,22,52
+52,24,23
 53,1,53
 53,2,53
 53,3,137
 53,7,139
 53,11,59
+53,16,46
+53,17,46
+53,19,24
+53,21,53
+53,22,53
+53,24,24
 54,1,54
 54,2,54
 54,3,138
@@ -326,6 +488,16 @@ species_id,pokedex_id,pokedex_number
 54,9,28
 54,12,59
 54,15,165
+54,16,89
+54,17,89
+54,18,32
+54,19,49
+54,20,39
+54,21,107
+54,22,107
+54,23,32
+54,24,52
+54,25,51
 55,1,55
 55,2,55
 55,3,139
@@ -336,39 +508,87 @@ species_id,pokedex_id,pokedex_number
 55,9,29
 55,12,60
 55,15,166
+55,16,90
+55,17,90
+55,18,33
+55,19,50
+55,20,40
+55,21,108
+55,22,108
+55,23,33
+55,24,53
+55,25,52
 56,1,56
 56,2,56
 56,3,134
 56,7,136
+56,16,79
+56,17,79
+56,20,30
+56,21,93
+56,22,93
+56,25,39
 57,1,57
 57,2,57
 57,3,135
 57,7,137
+57,16,80
+57,17,80
+57,20,31
+57,21,94
+57,22,94
+57,25,40
 58,1,58
 58,2,58
 58,3,127
 58,7,129
 58,9,51
+58,16,52
+58,17,52
+58,21,64
+58,22,64
 59,1,59
 59,2,59
 59,3,128
 59,7,130
 59,9,52
+59,16,53
+59,17,53
+59,21,65
+59,22,65
 60,1,60
 60,2,60
 60,3,72
 60,7,72
 60,14,33
+60,16,149
+60,18,76
+60,19,68
+60,21,182
+60,23,83
+60,24,74
 61,1,61
 61,2,61
 61,3,73
 61,7,73
 61,14,34
+61,16,150
+61,18,77
+61,19,69
+61,21,183
+61,23,84
+61,24,75
 62,1,62
 62,2,62
 62,3,74
 62,7,74
 62,14,35
+62,16,151
+62,18,78
+62,19,70
+62,21,184
+62,23,85
+62,24,76
 63,1,63
 63,2,63
 63,3,89
@@ -379,6 +599,10 @@ species_id,pokedex_id,pokedex_number
 63,11,127
 63,12,102
 63,15,40
+63,16,42
+63,17,42
+63,21,49
+63,22,49
 64,1,64
 64,2,64
 64,3,90
@@ -389,6 +613,10 @@ species_id,pokedex_id,pokedex_number
 64,11,128
 64,12,103
 64,15,41
+64,16,43
+64,17,43
+64,21,50
+64,22,50
 65,1,65
 65,2,65
 65,3,91
@@ -399,6 +627,10 @@ species_id,pokedex_id,pokedex_number
 65,11,129
 65,12,104
 65,15,42
+65,16,44
+65,17,44
+65,21,51
+65,22,51
 66,1,66
 66,2,66
 66,3,140
@@ -409,6 +641,12 @@ species_id,pokedex_id,pokedex_number
 66,11,98
 66,13,57
 66,15,75
+66,16,95
+66,17,95
+66,20,45
+66,21,117
+66,22,117
+66,25,57
 67,1,67
 67,2,67
 67,3,141
@@ -419,6 +657,12 @@ species_id,pokedex_id,pokedex_number
 67,11,99
 67,13,58
 67,15,76
+67,16,96
+67,17,96
+67,20,46
+67,21,118
+67,22,118
+67,25,58
 68,1,68
 68,2,68
 68,3,142
@@ -429,6 +673,12 @@ species_id,pokedex_id,pokedex_number
 68,11,100
 68,13,59
 68,15,77
+68,16,97
+68,17,97
+68,20,47
+68,21,119
+68,22,119
+68,25,59
 69,1,69
 69,2,69
 69,3,64
@@ -453,6 +703,16 @@ species_id,pokedex_id,pokedex_number
 72,7,164
 72,13,25
 72,15,68
+72,16,106
+72,17,106
+72,18,38
+72,19,53
+72,20,55
+72,21,129
+72,22,129
+72,23,38
+72,24,56
+72,25,67
 73,1,73
 73,2,73
 73,3,163
@@ -462,6 +722,16 @@ species_id,pokedex_id,pokedex_number
 73,7,165
 73,13,26
 73,15,69
+73,16,107
+73,17,107
+73,18,39
+73,19,54
+73,20,56
+73,21,130
+73,22,130
+73,23,39
+73,24,57
+73,25,68
 74,1,74
 74,2,74
 74,3,34
@@ -471,6 +741,10 @@ species_id,pokedex_id,pokedex_number
 74,7,34
 74,14,9
 74,15,58
+74,16,229
+74,19,101
+74,21,298
+74,24,119
 75,1,75
 75,2,75
 75,3,35
@@ -480,6 +754,10 @@ species_id,pokedex_id,pokedex_number
 75,7,35
 75,14,10
 75,15,59
+75,16,230
+75,19,102
+75,21,299
+75,24,120
 76,1,76
 76,2,76
 76,3,36
@@ -489,6 +767,10 @@ species_id,pokedex_id,pokedex_number
 76,7,36
 76,14,11
 76,15,60
+76,16,231
+76,19,103
+76,21,300
+76,24,121
 77,1,77
 77,2,77
 77,3,201
@@ -506,11 +788,23 @@ species_id,pokedex_id,pokedex_number
 79,3,80
 79,7,80
 79,13,133
+79,16,37
+79,17,37
+79,19,18
+79,21,44
+79,22,44
+79,24,18
 80,1,80
 80,2,80
 80,3,81
 80,7,81
 80,13,134
+80,16,38
+80,17,38
+80,19,19
+80,21,45
+80,22,45
+80,24,19
 81,1,81
 81,2,81
 81,3,118
@@ -520,6 +814,12 @@ species_id,pokedex_id,pokedex_number
 81,9,48
 81,14,69
 81,15,84
+81,16,47
+81,17,47
+81,19,25
+81,21,54
+81,22,54
+81,24,25
 82,1,82
 82,2,82
 82,3,119
@@ -529,6 +829,12 @@ species_id,pokedex_id,pokedex_number
 82,9,49
 82,14,70
 82,15,85
+82,16,48
+82,17,48
+82,19,26
+82,21,55
+82,22,55
+82,24,26
 83,1,83
 83,2,83
 83,3,158
@@ -553,11 +859,15 @@ species_id,pokedex_id,pokedex_number
 86,3,176
 86,7,178
 86,9,265
+86,21,115
+86,22,115
 87,1,87
 87,2,87
 87,3,177
 87,7,179
 87,9,266
+87,21,116
+87,22,116
 88,1,88
 88,2,88
 88,3,116
@@ -565,6 +875,12 @@ species_id,pokedex_id,pokedex_number
 88,7,117
 88,9,64
 88,15,111
+88,16,50
+88,17,50
+88,19,28
+88,21,57
+88,22,57
+88,24,28
 89,1,89
 89,2,89
 89,3,117
@@ -572,16 +888,30 @@ species_id,pokedex_id,pokedex_number
 89,7,118
 89,9,65
 89,15,112
+89,16,51
+89,17,51
+89,19,29
+89,21,58
+89,22,58
+89,24,29
 90,1,90
 90,2,90
 90,3,169
 90,7,171
 90,13,36
+90,16,115
+90,17,115
+90,21,138
+90,22,138
 91,1,91
 91,2,91
 91,3,170
 91,7,172
 91,13,37
+91,16,116
+91,17,116
+91,21,139
+91,22,139
 92,1,92
 92,2,92
 92,3,58
@@ -590,6 +920,14 @@ species_id,pokedex_id,pokedex_number
 92,7,58
 92,11,112
 92,14,30
+92,16,61
+92,17,61
+92,18,23
+92,19,32
+92,21,73
+92,22,73
+92,23,23
+92,24,32
 93,1,93
 93,2,93
 93,3,59
@@ -598,6 +936,14 @@ species_id,pokedex_id,pokedex_number
 93,7,59
 93,11,113
 93,14,31
+93,16,62
+93,17,62
+93,18,24
+93,19,33
+93,21,74
+93,22,74
+93,23,24
+93,24,33
 94,1,94
 94,2,94
 94,3,60
@@ -606,6 +952,14 @@ species_id,pokedex_id,pokedex_number
 94,7,60
 94,11,114
 94,14,32
+94,16,63
+94,17,63
+94,18,25
+94,19,34
+94,21,75
+94,22,75
+94,23,25
+94,24,34
 95,1,95
 95,2,95
 95,3,62
@@ -619,10 +973,22 @@ species_id,pokedex_id,pokedex_number
 96,2,96
 96,3,87
 96,7,87
+96,16,54
+96,17,54
+96,20,13
+96,21,66
+96,22,66
+96,25,20
 97,1,97
 97,2,97
 97,3,88
 97,7,88
+97,16,55
+97,17,55
+97,20,14
+97,21,67
+97,22,67
+97,25,21
 98,1,98
 98,2,98
 98,3,164
@@ -650,21 +1016,37 @@ species_id,pokedex_id,pokedex_number
 102,3,104
 102,7,105
 102,13,136
+102,16,269
+102,20,84
+102,21,355
+102,25,102
 103,1,103
 103,2,103
 103,3,105
 103,7,106
 103,13,137
+103,16,270
+103,20,85
+103,21,356
+103,25,103
 104,1,104
 104,2,104
 104,3,203
 104,7,208
 104,13,60
+104,16,163
+104,18,90
+104,21,197
+104,23,98
 105,1,105
 105,2,105
 105,3,204
 105,7,209
 105,13,61
+105,16,164
+105,18,91
+105,21,198
+105,23,99
 106,1,106
 106,2,106
 106,3,144
@@ -680,6 +1062,8 @@ species_id,pokedex_id,pokedex_number
 108,7,180
 108,9,284
 108,14,134
+108,21,375
+108,25,122
 109,1,109
 109,2,109
 109,3,114
@@ -718,6 +1102,16 @@ species_id,pokedex_id,pokedex_number
 113,5,97
 113,6,97
 113,7,222
+113,16,33
+113,17,33
+113,18,17
+113,19,16
+113,20,9
+113,21,40
+113,22,40
+113,23,17
+113,24,16
+113,25,16
 114,1,114
 114,2,114
 114,3,179
@@ -729,6 +1123,10 @@ species_id,pokedex_id,pokedex_number
 115,3,205
 115,7,210
 115,13,62
+115,16,165
+115,18,92
+115,21,199
+115,23,100
 116,1,116
 116,2,116
 116,3,186
@@ -752,6 +1150,12 @@ species_id,pokedex_id,pokedex_number
 118,7,78
 118,12,53
 118,15,51
+118,16,153
+118,18,80
+118,19,72
+118,21,186
+118,23,87
+118,24,78
 119,1,119
 119,2,119
 119,3,79
@@ -761,6 +1165,12 @@ species_id,pokedex_id,pokedex_number
 119,7,79
 119,12,54
 119,15,52
+119,16,154
+119,18,81
+119,19,73
+119,21,187
+119,23,88
+119,24,79
 120,1,120
 120,2,120
 120,3,167
@@ -769,6 +1179,10 @@ species_id,pokedex_id,pokedex_number
 120,9,238
 120,13,34
 120,15,148
+120,16,184
+120,18,111
+120,21,223
+120,23,124
 121,1,121
 121,2,121
 121,3,168
@@ -777,6 +1191,10 @@ species_id,pokedex_id,pokedex_number
 121,9,239
 121,13,35
 121,15,149
+121,16,185
+121,18,112
+121,21,224
+121,23,125
 122,1,122
 122,2,122
 122,3,156
@@ -784,6 +1202,8 @@ species_id,pokedex_id,pokedex_number
 122,6,95
 122,7,158
 122,13,114
+122,21,60
+122,22,60
 123,1,123
 123,2,123
 123,3,110
@@ -791,23 +1211,37 @@ species_id,pokedex_id,pokedex_number
 123,7,111
 123,11,188
 123,14,136
+123,16,275
+123,20,90
+123,21,365
+123,25,112
 124,1,124
 124,2,124
 124,3,153
 124,7,155
 124,14,84
+124,21,110
+124,22,110
 125,1,125
 125,2,125
 125,3,155
 125,6,198
 125,7,157
 125,9,57
+125,16,227
+125,19,99
+125,21,296
+125,24,117
 126,1,126
 126,2,126
 126,3,151
 126,6,201
 126,7,153
 126,9,54
+126,16,167
+126,18,94
+126,21,201
+126,23,102
 127,1,127
 127,2,127
 127,3,112
@@ -816,11 +1250,23 @@ species_id,pokedex_id,pokedex_number
 127,9,146
 127,13,130
 127,15,174
+127,16,175
+127,18,102
+127,20,65
+127,21,211
+127,23,112
+127,25,78
 128,1,128
 128,2,128
 128,3,148
 128,7,150
 128,13,125
+128,16,137
+128,18,64
+128,20,61
+128,21,170
+128,23,71
+128,25,73
 129,1,129
 129,2,129
 129,3,76
@@ -831,6 +1277,16 @@ species_id,pokedex_id,pokedex_number
 129,11,13
 129,12,49
 129,15,53
+129,16,91
+129,17,91
+129,18,34
+129,19,51
+129,20,41
+129,21,111
+129,22,111
+129,23,34
+129,24,54
+129,25,53
 130,1,130
 130,2,130
 130,3,77
@@ -841,6 +1297,16 @@ species_id,pokedex_id,pokedex_number
 130,11,14
 130,12,50
 130,15,54
+130,16,92
+130,17,92
+130,18,35
+130,19,52
+130,20,42
+130,21,112
+130,22,112
+130,23,35
+130,24,55
+130,25,54
 131,1,131
 131,2,131
 131,3,219
@@ -848,12 +1314,20 @@ species_id,pokedex_id,pokedex_number
 131,9,242
 131,11,190
 131,13,150
+131,16,268
+131,20,83
+131,21,353
+131,25,100
 132,1,132
 132,2,132
 132,3,92
 132,7,92
 132,9,261
 132,14,138
+132,16,209
+132,19,81
+132,21,271
+132,24,92
 133,1,133
 133,2,133
 133,3,180
@@ -862,6 +1336,10 @@ species_id,pokedex_id,pokedex_number
 133,9,91
 133,11,1
 133,13,77
+133,16,123
+133,18,50
+133,21,153
+133,23,54
 134,1,134
 134,2,134
 134,3,181
@@ -870,6 +1348,10 @@ species_id,pokedex_id,pokedex_number
 134,9,92
 134,11,2
 134,13,78
+134,16,124
+134,18,51
+134,21,154
+134,23,55
 135,1,135
 135,2,135
 135,3,182
@@ -878,6 +1360,10 @@ species_id,pokedex_id,pokedex_number
 135,9,93
 135,11,3
 135,13,79
+135,16,125
+135,18,52
+135,21,155
+135,23,56
 136,1,136
 136,2,136
 136,3,183
@@ -886,32 +1372,52 @@ species_id,pokedex_id,pokedex_number
 136,9,94
 136,11,4
 136,13,80
+136,16,126
+136,18,53
+136,21,156
+136,23,57
 137,1,137
 137,2,137
 137,3,215
 137,6,192
 137,7,220
+137,16,217
+137,19,89
+137,21,281
+137,24,102
 138,1,138
 138,2,138
 138,3,220
 138,7,225
+138,21,227
+138,23,128
 139,1,139
 139,2,139
 139,3,221
 139,7,226
+139,21,228
+139,23,129
 140,1,140
 140,2,140
 140,3,222
 140,7,227
+140,21,229
+140,23,130
 141,1,141
 141,2,141
 141,3,223
 141,7,228
+141,21,230
+141,23,131
 142,1,142
 142,2,142
 142,3,224
 142,7,229
 142,13,68
+142,16,284
+142,20,99
+142,21,382
+142,25,129
 143,1,143
 143,2,143
 143,3,225
@@ -920,6 +1426,10 @@ species_id,pokedex_id,pokedex_number
 143,7,230
 143,11,179
 143,12,139
+143,16,36
+143,17,36
+143,21,43
+143,22,43
 144,1,144
 144,2,144
 144,3,235
@@ -942,18 +1452,30 @@ species_id,pokedex_id,pokedex_number
 147,7,246
 147,11,76
 147,14,145
+147,16,281
+147,20,96
+147,21,379
+147,25,126
 148,1,148
 148,2,148
 148,3,242
 148,7,247
 148,11,77
 148,14,146
+148,16,282
+148,20,97
+148,21,380
+148,25,127
 149,1,149
 149,2,149
 149,3,243
 149,7,248
 149,11,78
 149,14,147
+149,16,283
+149,20,98
+149,21,381
+149,25,128
 150,1,150
 150,2,150
 150,3,249
@@ -1005,28 +1527,56 @@ species_id,pokedex_id,pokedex_number
 163,6,106
 163,7,15
 163,14,117
+163,21,212
+163,23,113
 164,1,164
 164,3,16
 164,5,107
 164,6,107
 164,7,16
 164,14,118
+164,21,213
+164,23,114
 165,1,165
 165,3,30
 165,7,30
 165,12,74
+165,16,20
+165,17,20
+165,19,8
+165,21,20
+165,22,20
+165,24,8
 166,1,166
 166,3,31
 166,7,31
 166,12,75
+166,16,21
+166,17,21
+166,19,9
+166,21,21
+166,22,21
+166,24,9
 167,1,167
 167,3,32
 167,7,32
 167,14,107
+167,16,22
+167,17,22
+167,19,10
+167,21,22
+167,22,22
+167,24,10
 168,1,168
 168,3,33
 168,7,33
 168,14,108
+168,16,23
+168,17,23
+168,19,11
+168,21,23
+168,22,23
+168,24,11
 169,1,169
 169,3,39
 169,4,65
@@ -1037,18 +1587,36 @@ species_id,pokedex_id,pokedex_number
 169,11,25
 169,12,147
 169,15,67
+169,16,70
+169,17,70
+169,18,28
+169,19,37
+169,20,21
+169,21,82
+169,22,82
+169,23,28
+169,24,37
+169,25,28
 170,1,170
 170,3,174
 170,4,181
 170,7,176
 170,13,147
 170,15,190
+170,16,201
+170,18,128
+170,21,257
+170,23,158
 171,1,171
 171,3,175
 171,4,182
 171,7,177
 171,13,148
 171,15,191
+171,16,202
+171,18,129
+171,21,258
+171,23,159
 172,1,172
 172,3,21
 172,4,155
@@ -1058,12 +1626,20 @@ species_id,pokedex_id,pokedex_number
 172,11,15
 172,12,35
 172,15,162
+172,16,24
+172,17,24
+172,21,31
+172,22,31
 173,1,173
 173,3,40
 173,5,99
 173,6,99
 173,7,40
 173,9,88
+173,16,210
+173,19,82
+173,21,272
+173,24,93
 174,1,174
 174,3,43
 174,4,137
@@ -1072,6 +1648,10 @@ species_id,pokedex_id,pokedex_number
 174,11,20
 174,14,119
 174,15,142
+174,16,134
+174,18,61
+174,21,167
+174,23,68
 175,1,175
 175,3,46
 175,6,173
@@ -1085,29 +1665,39 @@ species_id,pokedex_id,pokedex_number
 177,4,162
 177,7,161
 177,15,169
+177,21,252
+177,23,153
 178,1,178
 178,3,160
 178,4,163
 178,7,162
 178,15,170
+178,21,253
+178,23,154
 179,1,179
 179,3,53
 179,7,53
 179,9,25
 179,11,45
 179,13,127
+179,21,162
+179,23,63
 180,1,180
 180,3,54
 180,7,54
 180,9,26
 180,11,46
 180,13,128
+180,21,163
+180,23,64
 181,1,181
 181,3,55
 181,7,55
 181,9,27
 181,11,47
 181,13,129
+181,21,164
+181,23,65
 182,1,182
 182,3,86
 182,4,91
@@ -1138,10 +1728,22 @@ species_id,pokedex_id,pokedex_number
 185,6,93
 185,7,107
 185,14,130
+185,16,31
+185,17,31
+185,18,15
+185,21,38
+185,22,38
+185,23,15
 186,1,186
 186,3,75
 186,7,75
 186,14,36
+186,16,152
+186,18,79
+186,19,71
+186,21,185
+186,23,86
+186,24,77
 187,1,187
 187,3,67
 187,7,67
@@ -1159,6 +1761,8 @@ species_id,pokedex_id,pokedex_number
 190,5,63
 190,6,63
 190,7,123
+190,21,368
+190,25,115
 191,1,191
 191,3,102
 191,7,103
@@ -1194,6 +1798,10 @@ species_id,pokedex_id,pokedex_number
 196,9,95
 196,11,5
 196,13,81
+196,16,127
+196,18,54
+196,21,157
+196,23,58
 197,1,197
 197,3,185
 197,6,168
@@ -1201,22 +1809,40 @@ species_id,pokedex_id,pokedex_number
 197,9,96
 197,11,6
 197,13,82
+197,16,128
+197,18,55
+197,21,158
+197,23,59
 198,1,198
 198,3,208
 198,5,74
 198,6,74
 198,7,213
 198,14,51
+198,16,277
+198,20,92
+198,21,78
+198,22,78
 199,1,199
 199,3,82
 199,7,82
 199,13,135
+199,16,39
+199,17,39
+199,19,20
+199,21,46
+199,22,46
+199,24,20
 200,1,200
 200,3,214
 200,5,72
 200,6,72
 200,7,219
 200,11,183
+200,16,66
+200,17,66
+200,21,372
+200,25,119
 201,1,201
 201,3,61
 201,5,114
@@ -1239,15 +1865,21 @@ species_id,pokedex_id,pokedex_number
 204,3,93
 204,7,93
 204,11,56
+204,21,268
+204,24,89
 205,1,205
 205,3,94
 205,7,94
 205,11,57
+205,21,269
+205,24,90
 206,1,206
 206,3,52
 206,7,52
 206,9,35
 206,12,40
+206,21,63
+206,22,63
 207,1,207
 207,3,189
 207,6,153
@@ -1266,10 +1898,18 @@ species_id,pokedex_id,pokedex_number
 209,3,123
 209,7,125
 209,13,71
+209,16,258
+209,20,73
+209,21,339
+209,25,86
 210,1,210
 210,3,124
 210,7,126
 210,13,72
+210,16,259
+210,20,74
+210,21,340
+210,25,87
 211,1,211
 211,3,161
 211,7,163
@@ -1280,6 +1920,10 @@ species_id,pokedex_id,pokedex_number
 212,7,112
 212,11,189
 212,14,137
+212,16,276
+212,20,91
+212,21,366
+212,25,113
 213,1,213
 213,3,166
 213,7,168
@@ -1294,6 +1938,8 @@ species_id,pokedex_id,pokedex_number
 214,9,145
 214,13,131
 214,15,175
+214,21,367
+214,25,114
 215,1,215
 215,3,213
 215,5,144
@@ -1302,6 +1948,10 @@ species_id,pokedex_id,pokedex_number
 215,9,252
 215,11,181
 215,14,91
+215,16,249
+215,19,121
+215,21,326
+215,24,147
 216,1,216
 216,3,193
 216,7,198
@@ -1341,6 +1991,12 @@ species_id,pokedex_id,pokedex_number
 222,9,237
 222,13,146
 222,15,189
+222,16,112
+222,17,112
+222,18,44
+222,21,135
+222,22,135
+222,23,44
 223,1,223
 223,3,172
 223,5,132
@@ -1348,6 +2004,9 @@ species_id,pokedex_id,pokedex_number
 223,7,174
 223,9,235
 223,13,144
+223,21,143
+223,22,143
+223,23,47
 224,1,224
 224,3,173
 224,5,133
@@ -1355,11 +2014,18 @@ species_id,pokedex_id,pokedex_number
 224,7,175
 224,9,236
 224,13,145
+224,21,144
+224,22,144
+224,23,48
 225,1,225
 225,3,190
 225,7,194
 225,9,254
 225,14,90
+225,16,81
+225,17,81
+225,21,95
+225,22,95
 226,1,226
 226,3,197
 226,5,141
@@ -1367,6 +2033,9 @@ species_id,pokedex_id,pokedex_number
 226,7,202
 226,9,234
 226,13,140
+226,21,146
+226,22,146
+226,23,50
 227,1,227
 227,3,198
 227,4,115
@@ -1374,16 +2043,26 @@ species_id,pokedex_id,pokedex_number
 227,9,203
 227,14,112
 227,15,120
+227,16,208
+227,19,80
+227,20,72
+227,21,270
+227,24,91
+227,25,85
 228,1,228
 228,3,209
 228,6,176
 228,7,214
 228,13,75
+228,21,289
+228,24,110
 229,1,229
 229,3,210
 229,6,177
 229,7,215
 229,13,76
+229,21,290
+229,24,111
 230,1,230
 230,3,188
 230,4,186
@@ -1404,6 +2083,10 @@ species_id,pokedex_id,pokedex_number
 233,3,216
 233,6,193
 233,7,221
+233,16,218
+233,19,90
+233,21,282
+233,24,103
 234,1,234
 234,3,129
 234,7,131
@@ -1411,6 +2094,10 @@ species_id,pokedex_id,pokedex_number
 235,3,157
 235,7,159
 235,12,124
+235,16,58
+235,17,58
+235,21,70
+235,22,70
 236,1,236
 236,3,143
 236,7,145
@@ -1421,25 +2108,51 @@ species_id,pokedex_id,pokedex_number
 238,3,152
 238,7,154
 238,14,83
+238,21,109
+238,22,109
 239,1,239
 239,3,154
 239,6,197
 239,7,156
 239,9,56
+239,16,226
+239,19,98
+239,21,295
+239,24,116
 240,1,240
 240,3,150
 240,6,200
 240,7,152
 240,9,53
+240,16,166
+240,18,93
+240,21,200
+240,23,101
 241,1,241
 241,3,149
 241,7,151
 241,13,126
+241,16,138
+241,18,65
+241,20,62
+241,21,171
+241,23,72
+241,25,74
 242,1,242
 242,3,218
 242,5,98
 242,6,98
 242,7,223
+242,16,34
+242,17,34
+242,18,18
+242,19,17
+242,20,10
+242,21,41
+242,22,41
+242,23,18
+242,24,17
+242,25,17
 243,1,243
 243,3,238
 243,7,243
@@ -1455,18 +2168,24 @@ species_id,pokedex_id,pokedex_number
 246,9,292
 246,11,79
 246,14,102
+246,21,247
+246,23,148
 247,1,247
 247,3,245
 247,7,250
 247,9,293
 247,11,80
 247,14,103
+247,21,248
+247,23,149
 248,1,248
 248,3,246
 248,7,251
 248,9,294
 248,11,81
 248,14,104
+248,21,249
+248,23,150
 249,1,249
 249,3,247
 249,7,252
@@ -1583,6 +2302,16 @@ species_id,pokedex_id,pokedex_number
 278,9,212
 278,13,17
 278,15,27
+278,16,40
+278,17,40
+278,18,19
+278,19,21
+278,20,11
+278,21,47
+278,22,47
+278,23,19
+278,24,21
+278,25,18
 279,1,279
 279,4,28
 279,5,120
@@ -1590,6 +2319,16 @@ species_id,pokedex_id,pokedex_number
 279,9,213
 279,13,18
 279,15,28
+279,16,41
+279,17,41
+279,18,20
+279,19,22
+279,20,12
+279,21,48
+279,22,48
+279,23,20
+279,24,22
+279,25,19
 280,1,280
 280,4,29
 280,6,157
@@ -1612,10 +2351,22 @@ species_id,pokedex_id,pokedex_number
 283,4,32
 283,12,47
 283,15,33
+283,16,139
+283,18,66
+283,19,60
+283,21,172
+283,23,73
+283,24,66
 284,1,284
 284,4,33
 284,12,48
 284,15,34
+284,16,140
+284,18,67
+284,19,61
+284,21,173
+284,23,74
+284,24,67
 285,1,285
 285,4,34
 285,15,35
@@ -1662,10 +2413,22 @@ species_id,pokedex_id,pokedex_number
 296,4,48
 296,13,95
 296,15,49
+296,16,56
+296,17,56
+296,20,15
+296,21,68
+296,22,68
+296,25,22
 297,1,297
 297,4,49
 297,13,96
 297,15,50
+297,16,57
+297,17,57
+297,20,16
+297,21,69
+297,22,69
+297,25,23
 298,1,298
 298,4,54
 298,5,124
@@ -1679,6 +2442,10 @@ species_id,pokedex_id,pokedex_number
 299,9,164
 299,13,93
 299,15,61
+299,16,198
+299,18,125
+299,21,254
+299,23,155
 300,1,300
 300,4,61
 300,9,78
@@ -1693,10 +2460,18 @@ species_id,pokedex_id,pokedex_number
 302,4,68
 302,13,123
 302,15,70
+302,16,102
+302,17,102
+302,20,52
+302,21,124
+302,22,124
+302,25,64
 303,1,303
 303,4,69
 303,13,63
 303,15,71
+303,21,125
+303,22,125
 304,1,304
 304,4,70
 304,9,166
@@ -1731,10 +2506,14 @@ species_id,pokedex_id,pokedex_number
 309,4,78
 309,13,73
 309,15,80
+309,21,293
+309,24,114
 310,1,310
 310,4,79
 310,13,74
 310,15,81
+310,21,294
+310,24,115
 311,1,311
 311,4,80
 311,12,96
@@ -1770,20 +2549,36 @@ species_id,pokedex_id,pokedex_number
 318,4,97
 318,12,55
 318,15,102
+318,16,264
+318,20,79
+318,21,345
+318,25,92
 319,1,319
 319,4,98
 319,12,56
 319,15,103
+319,16,265
+319,20,80
+319,21,346
+319,25,93
 320,1,320
 320,4,99
 320,9,240
 320,13,27
 320,15,104
+320,16,266
+320,20,81
+320,21,351
+320,25,98
 321,1,321
 321,4,100
 321,9,241
 321,13,28
 321,15,105
+321,16,267
+321,20,82
+321,21,352
+321,25,99
 322,1,322
 322,4,101
 322,9,204
@@ -1796,6 +2591,10 @@ species_id,pokedex_id,pokedex_number
 324,4,105
 324,14,96
 324,15,110
+324,16,223
+324,19,95
+324,21,287
+324,24,108
 325,1,325
 325,4,110
 325,9,206
@@ -1810,21 +2609,37 @@ species_id,pokedex_id,pokedex_number
 327,4,114
 327,14,131
 327,15,119
+327,16,105
+327,17,105
+327,21,128
+327,22,128
 328,1,328
 328,4,116
 328,9,121
 328,14,3
 328,15,121
+328,16,235
+328,19,107
+328,21,304
+328,24,125
 329,1,329
 329,4,117
 329,9,122
 329,14,4
 329,15,122
+329,16,236
+329,19,108
+329,21,305
+329,24,126
 330,1,330
 330,4,118
 330,9,123
 330,14,5
 330,15,123
+330,16,237
+330,19,109
+330,21,306
+330,24,127
 331,1,331
 331,4,119
 331,15,124
@@ -1869,72 +2684,126 @@ species_id,pokedex_id,pokedex_number
 339,6,80
 339,14,40
 339,15,132
+339,16,93
+339,17,93
+339,18,36
+339,20,43
+339,21,113
+339,22,113
+339,23,36
+339,25,55
 340,1,340
 340,4,128
 340,5,81
 340,6,81
 340,14,41
 340,15,133
+340,16,94
+340,17,94
+340,18,37
+340,20,44
+340,21,114
+340,22,114
+340,23,37
+340,25,56
 341,1,341
 341,4,129
 341,9,279
 341,12,51
 341,15,134
+341,21,357
+341,25,104
 342,1,342
 342,4,130
 342,9,280
 342,12,52
 342,15,135
+342,21,358
+342,25,105
 343,1,343
 343,4,131
 343,9,169
 343,15,136
+343,21,310
+343,24,131
 344,1,344
 344,4,132
 344,9,170
 344,15,137
+344,21,311
+344,24,132
 345,1,345
 345,4,133
 345,15,138
+345,21,231
+345,23,132
 346,1,346
 346,4,134
 346,15,139
+346,21,232
+346,23,133
 347,1,347
 347,4,135
 347,11,171
 347,15,140
+347,21,233
+347,23,134
 348,1,348
 348,4,136
 348,11,172
 348,15,141
+348,21,234
+348,23,135
 349,1,349
 349,4,140
 349,5,138
 349,6,138
 349,15,145
+349,16,155
+349,18,82
+349,21,189
+349,23,90
 350,1,350
 350,4,141
 350,5,139
 350,6,139
 350,15,146
+350,16,156
+350,18,83
+350,21,190
+350,23,91
 351,1,351
 351,4,142
 351,9,163
 351,15,147
+351,16,181
+351,18,108
+351,19,77
+351,20,69
+351,21,220
+351,23,121
+351,24,84
+351,25,82
 352,1,352
 352,4,145
 352,12,116
 352,15,150
+352,21,214
+352,23,115
 353,1,353
 353,4,146
 353,9,210
 353,14,122
 353,15,151
+353,21,316
+353,24,137
 354,1,354
 354,4,147
 354,9,211
 354,14,123
 354,15,152
+354,21,317
+354,24,138
 355,1,355
 355,4,148
 355,6,189
@@ -1950,6 +2819,8 @@ species_id,pokedex_id,pokedex_number
 357,6,185
 357,9,288
 357,15,156
+357,21,354
+357,25,101
 358,1,358
 358,4,151
 358,5,83
@@ -1963,6 +2834,10 @@ species_id,pokedex_id,pokedex_number
 359,9,216
 359,13,9
 359,15,159
+359,16,245
+359,19,117
+359,21,322
+359,24,143
 360,1,360
 360,4,160
 360,13,118
@@ -1972,11 +2847,19 @@ species_id,pokedex_id,pokedex_number
 361,6,206
 361,11,93
 361,15,179
+361,16,246
+361,19,118
+361,21,323
+361,24,144
 362,1,362
 362,4,172
 362,6,207
 362,11,94
 362,15,180
+362,16,247
+362,19,119
+362,21,324
+362,24,145
 363,1,363
 363,4,173
 363,9,243
@@ -1996,49 +2879,92 @@ species_id,pokedex_id,pokedex_number
 366,4,176
 366,13,141
 366,15,185
+366,21,140
+366,22,140
+366,24,61
 367,1,367
 367,4,177
 367,13,142
 367,15,186
+367,21,141
+367,22,141
+367,24,62
 368,1,368
 368,4,178
 368,13,143
 368,15,187
+368,21,142
+368,22,142
+368,24,63
 369,1,369
 369,4,179
 369,13,42
 369,15,188
+369,16,262
+369,20,77
+369,21,343
+369,25,90
 370,1,370
 370,4,183
 370,13,29
 370,15,192
+370,16,111
+370,17,111
+370,18,43
+370,21,134
+370,22,134
+370,23,43
 371,1,371
 371,4,187
 371,13,14
 371,15,196
+371,16,117
+371,17,117
+371,21,147
+371,22,147
 372,1,372
 372,4,188
 372,13,15
 372,15,197
+372,16,118
+372,17,118
+372,21,148
+372,22,148
 373,1,373
 373,4,189
 373,13,16
 373,15,198
+373,16,119
+373,17,119
+373,21,149
+373,22,149
 374,1,374
 374,4,190
 374,9,262
 374,11,82
 374,15,199
+374,16,214
+374,19,86
+374,21,278
+374,24,99
 375,1,375
 375,4,191
 375,9,263
 375,11,83
 375,15,200
+375,16,215
+375,19,87
+375,21,279
+375,24,100
 376,1,376
 376,4,192
 376,9,264
 376,11,84
 376,15,201
+376,16,216
+376,19,88
+376,21,280
+376,24,101
 377,1,377
 377,4,193
 377,15,202
@@ -2158,22 +3084,38 @@ species_id,pokedex_id,pokedex_number
 407,5,27
 407,6,27
 407,9,135
-407,12,72
+407,12,73
 407,15,99
 408,1,408
 408,5,36
 408,6,36
+408,16,188
+408,18,115
+408,21,235
+408,23,136
 409,1,409
 409,5,37
 409,6,37
+409,16,189
+409,18,116
+409,21,236
+409,23,137
 410,1,410
 410,5,38
 410,6,38
 410,11,163
+410,16,190
+410,18,117
+410,21,237
+410,23,138
 411,1,411
 411,5,39
 411,6,39
 411,11,164
+411,16,191
+411,18,118
+411,21,238
+411,23,139
 412,1,412
 412,5,45
 412,6,45
@@ -2219,41 +3161,73 @@ species_id,pokedex_id,pokedex_number
 422,1,422
 422,5,60
 422,6,60
+422,16,260
+422,20,75
+422,21,341
+422,25,88
 423,1,423
 423,5,61
 423,6,61
+423,16,261
+423,20,76
+423,21,342
+423,25,89
 424,1,424
 424,5,64
 424,6,64
 424,7,124
+424,21,369
+424,25,116
 425,1,425
 425,5,65
 425,6,65
 425,9,208
 425,11,167
 425,13,1
+425,16,64
+425,17,64
+425,21,76
+425,22,76
 426,1,426
 426,5,66
 426,6,66
 426,9,209
 426,11,168
 426,13,2
+426,16,65
+426,17,65
+426,21,77
+426,22,77
 427,1,427
 427,5,67
 427,6,67
 427,9,80
+427,21,24
+427,22,24
+427,25,8
 428,1,428
 428,5,68
 428,6,68
 428,9,81
+428,21,25
+428,22,25
+428,25,9
 429,1,429
 429,5,73
 429,6,73
 429,11,184
+429,16,67
+429,17,67
+429,21,373
+429,25,120
 430,1,430
 430,5,75
 430,6,75
 430,14,52
+430,16,278
+430,20,93
+430,21,79
+430,22,79
 431,1,431
 431,5,76
 431,6,76
@@ -2286,13 +3260,31 @@ species_id,pokedex_id,pokedex_number
 438,5,92
 438,6,92
 438,14,129
+438,16,30
+438,17,30
+438,18,14
+438,21,37
+438,22,37
+438,23,14
 439,1,439
 439,5,94
 439,6,94
 439,13,113
+439,21,59
+439,22,59
 440,1,440
 440,5,96
 440,6,96
+440,16,32
+440,17,32
+440,18,16
+440,19,15
+440,20,8
+440,21,39
+440,22,39
+440,23,16
+440,24,15
+440,25,15
 441,1,441
 441,5,102
 441,6,102
@@ -2306,33 +3298,57 @@ species_id,pokedex_id,pokedex_number
 443,6,109
 443,11,85
 443,14,6
+443,16,238
+443,19,110
+443,21,307
+443,24,128
 444,1,444
 444,5,110
 444,6,110
 444,11,86
 444,14,7
+444,16,239
+444,19,111
+444,21,308
+444,24,129
 445,1,445
 445,5,111
 445,6,111
 445,11,87
 445,14,8
+445,16,240
+445,19,112
+445,21,309
+445,24,130
 446,1,446
 446,5,112
 446,6,112
 446,11,178
 446,12,138
+446,16,35
+446,17,35
+446,21,42
+446,22,42
 447,1,447
 447,5,115
 447,6,115
 447,9,33
 447,11,50
 447,12,62
+447,16,279
+447,20,94
+447,21,377
+447,25,124
 448,1,448
 448,5,116
 448,6,116
 448,9,34
 448,11,51
 448,12,63
+448,16,280
+448,20,95
+448,21,378
+448,25,125
 449,1,449
 449,5,122
 449,6,122
@@ -2374,14 +3390,37 @@ species_id,pokedex_id,pokedex_number
 456,1,456
 456,5,134
 456,6,134
+456,16,108
+456,17,108
+456,18,40
+456,19,55
+456,20,57
+456,21,131
+456,22,131
+456,23,40
+456,24,58
+456,25,69
 457,1,457
 457,5,135
 457,6,135
+457,16,109
+457,17,109
+457,18,41
+457,19,56
+457,20,58
+457,21,132
+457,22,132
+457,23,41
+457,24,59
+457,25,70
 458,1,458
 458,5,140
 458,6,140
 458,9,233
 458,13,139
+458,21,145
+458,22,145
+458,23,49
 459,1,459
 459,5,142
 459,6,142
@@ -2396,16 +3435,28 @@ species_id,pokedex_id,pokedex_number
 461,9,253
 461,11,182
 461,14,92
+461,16,250
+461,19,122
+461,21,327
+461,24,148
 462,1,462
 462,6,180
 462,9,50
 462,14,71
 462,15,86
+462,16,49
+462,17,49
+462,19,27
+462,21,56
+462,22,56
+462,24,27
 463,1,463
 463,6,162
 463,7,181
 463,9,285
 463,14,135
+463,21,376
+463,25,123
 464,1,464
 464,6,188
 464,11,162
@@ -2418,9 +3469,17 @@ species_id,pokedex_id,pokedex_number
 466,1,466
 466,6,199
 466,9,58
+466,16,228
+466,19,100
+466,21,297
+466,24,118
 467,1,467
 467,6,202
 467,9,55
+467,16,168
+467,18,95
+467,21,202
+467,23,103
 468,1,468
 468,6,175
 469,1,469
@@ -2433,11 +3492,19 @@ species_id,pokedex_id,pokedex_number
 470,9,97
 470,11,7
 470,13,83
+470,16,129
+470,18,56
+470,21,159
+470,23,60
 471,1,471
 471,6,170
 471,9,98
 471,11,8
 471,13,84
+471,16,130
+471,18,57
+471,21,160
+471,23,61
 472,1,472
 472,6,154
 472,9,222
@@ -2449,6 +3516,10 @@ species_id,pokedex_id,pokedex_number
 473,14,78
 474,1,474
 474,6,194
+474,16,219
+474,19,91
+474,21,283
+474,24,104
 475,1,475
 475,6,160
 475,11,12
@@ -2459,6 +3530,10 @@ species_id,pokedex_id,pokedex_number
 476,9,165
 476,13,94
 476,15,62
+476,16,199
+476,18,126
+476,21,255
+476,23,156
 477,1,477
 477,6,191
 477,11,71
@@ -2467,6 +3542,10 @@ species_id,pokedex_id,pokedex_number
 478,6,208
 478,11,95
 478,15,181
+478,16,248
+478,19,120
+478,21,325
+478,24,146
 479,1,479
 479,6,152
 479,14,68
@@ -2549,12 +3628,24 @@ species_id,pokedex_id,pokedex_number
 506,1,506
 506,8,12
 506,9,22
+506,16,120
+506,18,47
+506,21,150
+506,23,51
 507,1,507
 507,8,13
 507,9,23
+507,16,121
+507,18,48
+507,21,151
+507,23,52
 508,1,508
 508,8,14
 508,9,24
+508,16,122
+508,18,49
+508,21,152
+508,23,53
 509,1,509
 509,8,15
 509,9,12
@@ -2623,16 +3714,34 @@ species_id,pokedex_id,pokedex_number
 524,9,68
 524,11,40
 524,13,120
+524,16,98
+524,17,98
+524,20,48
+524,21,120
+524,22,120
+524,25,60
 525,1,525
 525,8,31
 525,9,69
 525,11,41
 525,13,121
+525,16,99
+525,17,99
+525,20,49
+525,21,121
+525,22,121
+525,25,61
 526,1,526
 526,8,32
 526,9,70
 526,11,42
 526,13,122
+526,16,100
+526,17,100
+526,20,50
+526,21,122
+526,22,122
+526,25,62
 527,1,527
 527,8,33
 527,9,66
@@ -2717,37 +3826,85 @@ species_id,pokedex_id,pokedex_number
 546,8,52
 546,9,82
 546,11,48
+546,16,87
+546,17,87
+546,19,47
+546,20,37
+546,21,105
+546,22,105
+546,24,50
+546,25,49
 547,1,547
 547,8,53
 547,9,83
 547,11,49
+547,16,88
+547,17,88
+547,19,48
+547,20,38
+547,21,106
+547,22,106
+547,24,51
+547,25,50
 548,1,548
 548,8,54
 548,9,84
 548,11,43
+548,16,85
+548,17,85
+548,19,45
+548,20,35
+548,21,103
+548,22,103
+548,24,48
+548,25,47
 549,1,549
 549,8,55
 549,9,85
 549,11,44
+549,16,86
+549,17,86
+549,19,46
+549,20,36
+549,21,104
+549,22,104
+549,24,49
+549,25,48
 550,1,550
 550,8,56
 550,9,104
 550,14,60
+550,21,188
+550,23,89
+550,24,80
+550,25,75
 551,1,551
 551,8,57
 551,9,99
 551,11,66
 551,13,43
+551,16,232
+551,19,104
+551,21,301
+551,24,122
 552,1,552
 552,8,58
 552,9,100
 552,11,67
 552,13,44
+552,16,233
+552,19,105
+552,21,302
+552,24,123
 553,1,553
 553,8,59
 553,9,101
 553,11,68
 553,13,45
+553,16,234
+553,19,106
+553,21,303
+553,24,124
 554,1,554
 554,8,60
 554,9,102
@@ -2772,11 +3929,15 @@ species_id,pokedex_id,pokedex_number
 559,9,117
 559,11,165
 559,12,100
+559,21,335
+559,24,156
 560,1,560
 560,8,66
 560,9,118
 560,11,166
 560,12,101
+560,21,336
+560,24,157
 561,1,561
 561,8,67
 561,9,120
@@ -2790,41 +3951,75 @@ species_id,pokedex_id,pokedex_number
 564,1,564
 564,8,70
 564,9,126
+564,16,194
+564,18,121
+564,21,241
+564,23,142
 565,1,565
 565,8,71
 565,9,127
+565,16,195
+565,18,122
+565,21,242
+565,23,143
 566,1,566
 566,8,72
 566,9,128
+566,16,192
+566,18,119
+566,21,239
+566,23,140
 567,1,567
 567,8,73
 567,9,129
+567,16,193
+567,18,120
+567,21,240
+567,23,141
 568,1,568
 568,8,74
 568,9,105
 568,14,74
+568,16,206
+568,19,78
+568,21,264
+568,24,85
 569,1,569
 569,8,75
 569,9,106
 569,14,75
+569,16,207
+569,19,79
+569,21,265
+569,24,86
 570,1,570
 570,8,76
 570,9,151
 570,11,154
 570,14,124
+570,21,28
+570,22,28
+570,25,12
 571,1,571
 571,8,77
 571,9,152
 571,11,155
 571,14,125
+571,21,29
+571,22,29
+571,25,13
 572,1,572
 572,8,78
 572,9,107
 572,11,96
+572,21,266
+572,24,87
 573,1,573
 573,8,79
 573,9,108
 573,11,97
+573,21,267
+573,24,88
 574,1,574
 574,8,80
 574,9,136
@@ -2864,14 +4059,26 @@ species_id,pokedex_id,pokedex_number
 582,8,88
 582,9,255
 582,14,85
+582,16,255
+582,19,127
+582,21,332
+582,24,153
 583,1,583
 583,8,89
 583,9,256
 583,14,86
+583,16,256
+583,19,128
+583,21,333
+583,24,154
 584,1,584
 584,8,90
 584,9,257
 584,14,87
+584,16,257
+584,19,129
+584,21,334
+584,24,155
 585,1,585
 585,8,91
 585,9,159
@@ -2883,6 +4090,10 @@ species_id,pokedex_id,pokedex_number
 587,9,144
 587,11,180
 587,13,86
+587,16,274
+587,20,89
+587,21,364
+587,25,111
 588,1,588
 588,8,94
 588,9,155
@@ -2902,13 +4113,21 @@ species_id,pokedex_id,pokedex_number
 592,1,592
 592,8,98
 592,9,180
+592,21,318
+592,24,139
 593,1,593
 593,8,99
 593,9,181
+593,21,319
+593,24,140
 594,1,594
 594,8,100
 594,9,182
 594,13,149
+594,16,157
+594,18,84
+594,21,191
+594,23,92
 595,1,595
 595,8,101
 595,9,173
@@ -2946,9 +4165,13 @@ species_id,pokedex_id,pokedex_number
 605,1,605
 605,8,111
 605,9,188
+605,21,275
+605,24,96
 606,1,606
 606,8,112
 606,9,189
+606,21,276
+606,24,97
 607,1,607
 607,8,113
 607,9,190
@@ -3009,32 +4232,46 @@ species_id,pokedex_id,pokedex_number
 619,8,125
 619,9,219
 619,13,3
+619,21,359
+619,25,106
 620,1,620
 620,8,126
 620,9,220
 620,13,4
+620,21,360
+620,25,107
 621,1,621
 621,8,127
 621,9,270
 621,14,141
+621,21,374
+621,25,121
 622,1,622
 622,8,128
 622,9,271
 622,13,91
+622,21,312
+622,24,133
 623,1,623
 623,8,129
 623,9,272
 623,13,92
+623,21,313
+623,24,134
 624,1,624
 624,8,130
 624,9,223
 624,11,158
 624,14,48
+624,21,337
+624,24,158
 625,1,625
 625,8,131
 625,9,224
 625,11,159
 625,14,49
+625,21,338
+625,24,159
 626,1,626
 626,8,132
 626,9,269
@@ -3042,16 +4279,40 @@ species_id,pokedex_id,pokedex_number
 627,8,133
 627,9,109
 627,11,169
+627,16,75
+627,17,75
+627,20,26
+627,21,89
+627,22,89
+627,25,35
 628,1,628
 628,8,134
 628,9,110
 628,11,170
+628,16,76
+628,17,76
+628,20,27
+628,21,90
+628,22,90
+628,25,36
 629,1,629
 629,8,135
 629,9,111
+629,16,77
+629,17,77
+629,20,28
+629,21,91
+629,22,91
+629,25,37
 630,1,630
 630,8,136
 630,9,112
+630,16,78
+630,17,78
+630,20,29
+630,21,92
+630,22,92
+630,25,38
 631,1,631
 631,8,137
 631,9,193
@@ -3079,10 +4340,14 @@ species_id,pokedex_id,pokedex_number
 636,8,142
 636,9,171
 636,11,173
+636,21,203
+636,23,104
 637,1,637
 637,8,143
 637,9,172
 637,11,174
+637,21,204
+637,23,105
 638,1,638
 638,8,144
 638,9,225
@@ -3146,10 +4411,22 @@ species_id,pokedex_id,pokedex_number
 660,12,11
 661,1,661
 661,12,14
+661,16,158
+661,18,85
+661,21,192
+661,23,93
 662,1,662
 662,12,15
+662,16,159
+662,18,86
+662,21,193
+662,23,94
 663,1,663
 663,12,16
+663,16,160
+663,18,87
+663,21,194
+663,23,95
 664,1,664
 664,12,20
 665,1,665
@@ -3158,24 +4435,51 @@ species_id,pokedex_id,pokedex_number
 666,12,22
 667,1,667
 667,12,57
+667,21,370
+667,25,117
 668,1,668
 668,12,58
+668,21,371
+668,25,118
 669,1,669
 669,12,68
+669,21,100
+669,22,100
+669,24,45
+669,25,44
 670,1,670
 670,12,69
+670,21,101
+670,22,101
+670,24,46
+670,25,45
 671,1,671
 671,12,70
+671,21,102
+671,22,102
+671,24,47
+671,25,46
 672,1,672
 672,12,89
 673,1,673
 673,12,90
 674,1,674
 674,12,91
+674,16,220
+674,19,92
+674,21,284
+674,24,105
 675,1,675
 675,12,92
+675,16,221
+675,19,93
+675,21,285
+675,24,106
 676,1,676
 676,12,93
+676,21,30
+676,22,30
+676,25,14
 677,1,677
 677,12,114
 678,1,678
@@ -3196,52 +4500,124 @@ species_id,pokedex_id,pokedex_number
 685,12,132
 686,1,686
 686,13,10
+686,21,26
+686,22,26
+686,25,10
 687,1,687
 687,13,11
+687,21,27
+687,22,27
+687,25,11
 688,1,688
 688,13,21
 689,1,689
 689,13,22
 690,1,690
 690,13,30
+690,21,347
+690,25,94
 691,1,691
 691,13,31
+691,21,348
+691,25,95
 692,1,692
 692,13,32
+692,21,349
+692,25,96
 693,1,693
 693,13,33
+693,21,350
+693,25,97
 694,1,694
 694,13,46
 695,1,695
 695,13,47
 696,1,696
 696,13,64
+696,21,243
+696,23,144
 697,1,697
 697,13,65
+697,21,244
+697,23,145
 698,1,698
 698,13,66
+698,21,245
+698,23,146
 699,1,699
 699,13,67
+699,21,246
+699,23,147
 700,1,700
 700,13,85
+700,16,131
+700,18,58
+700,21,161
+700,23,62
 701,1,701
 701,13,89
+701,21,96
+701,22,96
 702,1,702
 702,13,110
+702,21,291
+702,24,112
 703,1,703
 703,13,124
+703,16,101
+703,17,101
+703,20,51
+703,21,123
+703,22,123
+703,25,63
 704,1,704
 704,14,19
+704,16,178
+704,18,105
+704,19,74
+704,20,66
+704,21,217
+704,23,118
+704,24,81
+704,25,79
 705,1,705
 705,14,20
+705,16,179
+705,18,106
+705,19,75
+705,20,67
+705,21,218
+705,23,119
+705,24,82
+705,25,80
 706,1,706
 706,14,21
+706,16,180
+706,18,107
+706,19,76
+706,20,68
+706,21,219
+706,23,120
+706,24,83
+706,25,81
 707,1,707
 707,14,50
+707,16,241
+707,19,113
+707,21,314
+707,24,135
 708,1,708
 708,14,61
+708,16,196
+708,18,123
+708,21,250
+708,23,151
 709,1,709
 709,14,62
+709,16,197
+709,18,124
+709,21,251
+709,23,152
 710,1,710
 710,14,63
 711,1,711
@@ -3252,14 +4628,509 @@ species_id,pokedex_id,pokedex_number
 713,14,80
 714,1,714
 714,14,113
+714,21,83
+714,22,83
+714,25,29
 715,1,715
 715,14,114
+715,21,84
+715,22,84
+715,25,30
 716,1,716
 716,14,148
 717,1,717
 717,14,149
 718,1,718
 718,14,150
+718,16,205
+718,21,263
 719,1,719
 720,1,720
 721,1,721
+722,1,722
+722,16,1
+722,17,1
+722,21,1
+722,22,1
+723,1,723
+723,16,2
+723,17,2
+723,21,2
+723,22,2
+724,1,724
+724,16,3
+724,17,3
+724,21,3
+724,22,3
+725,1,725
+725,16,4
+725,17,4
+725,21,4
+725,22,4
+726,1,726
+726,16,5
+726,17,5
+726,21,5
+726,22,5
+727,1,727
+727,16,6
+727,17,6
+727,21,6
+727,22,6
+728,1,728
+728,16,7
+728,17,7
+728,21,7
+728,22,7
+729,1,729
+729,16,8
+729,17,8
+729,21,8
+729,22,8
+730,1,730
+730,16,9
+730,17,9
+730,21,9
+730,22,9
+731,1,731
+731,16,10
+731,17,10
+731,18,1
+731,19,1
+731,20,1
+731,21,10
+731,22,10
+731,23,1
+731,24,1
+731,25,1
+732,1,732
+732,16,11
+732,17,11
+732,18,2
+732,19,2
+732,20,2
+732,21,11
+732,22,11
+732,23,2
+732,24,2
+732,25,2
+733,1,733
+733,16,12
+733,17,12
+733,18,3
+733,19,3
+733,20,3
+733,21,12
+733,22,12
+733,23,3
+733,24,3
+733,25,3
+734,1,734
+734,16,13
+734,17,13
+734,18,4
+734,19,4
+734,20,4
+734,21,13
+734,22,13
+734,23,4
+734,24,4
+734,25,4
+735,1,735
+735,16,14
+735,17,14
+735,18,5
+735,19,5
+735,20,5
+735,21,14
+735,22,14
+735,23,5
+735,24,5
+735,25,5
+736,1,736
+736,16,27
+736,17,27
+736,18,11
+736,19,12
+736,21,34
+736,22,34
+736,23,11
+736,24,12
+737,1,737
+737,16,28
+737,17,28
+737,18,12
+737,19,13
+737,21,35
+737,22,35
+737,23,12
+737,24,13
+738,1,738
+738,16,29
+738,17,29
+738,18,13
+738,19,14
+738,21,36
+738,22,36
+738,23,13
+738,24,14
+739,1,739
+739,16,59
+739,17,59
+739,18,21
+739,19,30
+739,20,17
+739,21,71
+739,22,71
+739,23,21
+739,24,30
+739,25,24
+740,1,740
+740,16,60
+740,17,60
+740,18,22
+740,19,31
+740,20,18
+740,21,72
+740,22,72
+740,23,22
+740,24,31
+740,25,25
+741,1,741
+741,16,82
+741,17,82
+741,18,31
+741,19,42
+741,20,32
+741,21,97
+741,22,97
+741,23,31
+741,24,42
+741,25,41
+742,1,742
+742,16,83
+742,17,83
+742,19,43
+742,20,33
+742,21,98
+742,22,98
+742,24,43
+742,25,42
+743,1,743
+743,16,84
+743,17,84
+743,19,44
+743,20,34
+743,21,99
+743,22,99
+743,24,44
+743,25,43
+744,1,744
+744,16,103
+744,17,103
+744,20,53
+744,21,126
+744,22,126
+744,25,65
+745,1,745
+745,16,104
+745,17,104
+745,20,54
+745,21,127
+745,22,127
+745,25,66
+746,1,746
+746,16,110
+746,17,110
+746,18,42
+746,19,57
+746,21,133
+746,22,133
+746,23,42
+746,24,60
+747,1,747
+747,16,113
+747,17,113
+747,18,45
+747,21,136
+747,22,136
+747,23,45
+748,1,748
+748,16,114
+748,17,114
+748,18,46
+748,21,137
+748,22,137
+748,23,46
+749,1,749
+749,16,132
+749,18,59
+749,19,58
+749,20,59
+749,21,165
+749,23,66
+749,24,64
+749,25,71
+750,1,750
+750,16,133
+750,18,60
+750,19,59
+750,20,60
+750,21,166
+750,23,67
+750,24,65
+750,25,72
+751,1,751
+751,16,141
+751,18,68
+751,19,62
+751,21,174
+751,23,75
+751,24,68
+752,1,752
+752,16,142
+752,18,69
+752,19,63
+752,21,175
+752,23,76
+752,24,69
+753,1,753
+753,16,143
+753,18,70
+753,21,176
+753,23,77
+754,1,754
+754,16,144
+754,18,71
+754,21,177
+754,23,78
+755,1,755
+755,16,145
+755,18,72
+755,19,64
+755,21,178
+755,23,79
+755,24,70
+756,1,756
+756,16,146
+756,18,73
+756,19,65
+756,21,179
+756,23,80
+756,24,71
+757,1,757
+757,16,161
+757,18,88
+757,21,195
+757,23,96
+758,1,758
+758,16,162
+758,18,89
+758,21,196
+758,23,97
+759,1,759
+759,16,169
+759,18,96
+759,20,63
+759,21,205
+759,23,106
+759,25,76
+760,1,760
+760,16,170
+760,18,97
+760,20,64
+760,21,206
+760,23,107
+760,25,77
+761,1,761
+761,16,171
+761,18,98
+761,21,207
+761,23,108
+762,1,762
+762,16,172
+762,18,99
+762,21,208
+762,23,109
+763,1,763
+763,16,173
+763,18,100
+763,21,209
+763,23,110
+764,1,764
+764,16,174
+764,18,101
+764,21,210
+764,23,111
+765,1,765
+765,16,176
+765,18,103
+765,21,215
+765,23,116
+766,1,766
+766,16,177
+766,18,104
+766,21,216
+766,23,117
+767,1,767
+767,16,182
+767,18,109
+767,20,70
+767,21,221
+767,23,122
+767,25,83
+768,1,768
+768,16,183
+768,18,110
+768,20,71
+768,21,222
+768,23,123
+768,25,84
+769,1,769
+769,16,186
+769,18,113
+769,21,225
+769,23,126
+770,1,770
+770,16,187
+770,18,114
+770,21,226
+770,23,127
+771,1,771
+771,16,200
+771,18,127
+771,21,256
+771,23,157
+772,1,772
+772,16,203
+772,21,259
+773,1,773
+773,16,204
+773,21,260
+774,1,774
+774,16,213
+774,19,85
+774,21,277
+774,24,98
+775,1,775
+775,16,222
+775,19,94
+775,21,286
+775,24,107
+776,1,776
+776,16,224
+776,19,96
+776,21,288
+776,24,109
+777,1,777
+777,16,225
+777,19,97
+777,21,292
+777,24,113
+778,1,778
+778,16,242
+778,19,114
+778,21,315
+778,24,136
+779,1,779
+779,16,243
+779,19,115
+779,21,320
+779,24,141
+780,1,780
+780,16,244
+780,19,116
+780,21,321
+780,24,142
+781,1,781
+781,16,263
+781,20,78
+781,21,344
+781,25,91
+782,1,782
+782,16,271
+782,20,86
+782,21,361
+782,25,108
+783,1,783
+783,16,272
+783,20,87
+783,21,362
+783,25,109
+784,1,784
+784,16,273
+784,20,88
+784,21,363
+784,25,110
+785,1,785
+785,16,285
+785,17,120
+785,21,383
+785,22,150
+786,1,786
+786,16,286
+786,18,130
+786,21,384
+786,23,160
+787,1,787
+787,16,287
+787,19,130
+787,21,385
+787,24,160
+788,1,788
+788,16,288
+788,20,100
+788,21,386
+788,25,130
+789,1,789
+789,16,289
+789,21,387
+790,1,790
+790,16,290
+790,21,388
+791,1,791
+791,16,291
+791,21,389
+792,1,792
+792,16,292
+792,21,390
+793,1,793
+793,16,293
+793,21,391
+794,1,794
+794,16,294
+794,21,394
+795,1,795
+795,16,295
+795,21,395
+796,1,796
+796,16,296
+796,21,396
+797,1,797
+797,16,297
+797,21,397
+798,1,798
+798,16,298
+798,21,398
+799,1,799
+799,16,299
+799,21,399
+800,1,800
+800,16,300
+800,21,400
+801,1,801
+801,16,301
+801,21,401
+802,1,802
+802,16,302
+802,21,402
+803,1,803
+803,21,261
+804,1,804
+804,21,262
+805,1,805
+805,21,392
+806,1,806
+806,21,393
+807,1,807
+807,21,403
diff --git a/pokedex/data/csv/pokemon_evolution.csv b/pokedex/data/csv/pokemon_evolution.csv
index 86273c5..0603cb6 100644
--- a/pokedex/data/csv/pokemon_evolution.csv
+++ b/pokedex/data/csv/pokemon_evolution.csv
@@ -381,7 +381,7 @@ id,evolved_species_id,evolution_trigger_id,trigger_item_id,minimum_level,gender_
 381,735,1,,20,,,,day,,,,,,,,,,0,0
 382,737,1,,20,,,,,,,,,,,,,,0,0
 383,738,1,,,,,,,,,,,,,,,,0,0
-384,740,1,,,,,,,,,,,,,,,,0,0
+384,740,1,,,,775,,,,,,,,,,,,0,0
 385,743,1,,25,,,,,,,,,,,,,,0,0
 386,745,1,,25,,,,day,,,,,,,,,,0,0
 387,745,1,,25,,,,night,,,,,,,,,,0,0
diff --git a/pokedex/data/csv/pokemon_forms.csv b/pokedex/data/csv/pokemon_forms.csv
index 3a30f31..ac7ded2 100644
--- a/pokedex/data/csv/pokemon_forms.csv
+++ b/pokedex/data/csv/pokemon_forms.csv
@@ -24,1101 +24,1101 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau
 23,ekans,,23,1,1,0,0,1,32
 24,arbok,,24,1,1,0,0,1,33
 25,pikachu,,25,1,1,0,0,1,36
-26,raichu,,26,1,1,0,0,1,44
-27,sandshrew,,27,1,1,0,0,1,46
-28,sandslash,,28,1,1,0,0,1,48
-29,nidoran-f,,29,1,1,0,0,1,50
-30,nidorina,,30,1,1,0,0,1,51
-31,nidoqueen,,31,1,1,0,0,1,52
-32,nidoran-m,,32,1,1,0,0,1,53
-33,nidorino,,33,1,1,0,0,1,54
-34,nidoking,,34,1,1,0,0,1,55
-35,clefairy,,35,1,1,0,0,1,57
-36,clefable,,36,1,1,0,0,1,58
-37,vulpix,,37,1,1,0,0,1,59
-38,ninetales,,38,1,1,0,0,1,61
-39,jigglypuff,,39,1,1,0,0,1,64
-40,wigglytuff,,40,1,1,0,0,1,65
-41,zubat,,41,1,1,0,0,1,66
-42,golbat,,42,1,1,0,0,1,67
-43,oddish,,43,1,1,0,0,1,69
-44,gloom,,44,1,1,0,0,1,70
-45,vileplume,,45,1,1,0,0,1,71
-46,paras,,46,1,1,0,0,1,73
-47,parasect,,47,1,1,0,0,1,74
-48,venonat,,48,1,1,0,0,1,75
-49,venomoth,,49,1,1,0,0,1,76
-50,diglett,,50,1,1,0,0,1,77
-51,dugtrio,,51,1,1,0,0,1,79
-52,meowth,,52,1,1,0,0,1,81
-53,persian,,53,1,1,0,0,1,83
-54,psyduck,,54,1,1,0,0,1,85
-55,golduck,,55,1,1,0,0,1,86
-56,mankey,,56,1,1,0,0,1,87
-57,primeape,,57,1,1,0,0,1,88
-58,growlithe,,58,1,1,0,0,1,89
-59,arcanine,,59,1,1,0,0,1,90
-60,poliwag,,60,1,1,0,0,1,91
-61,poliwhirl,,61,1,1,0,0,1,92
-62,poliwrath,,62,1,1,0,0,1,93
-63,abra,,63,1,1,0,0,1,95
-64,kadabra,,64,1,1,0,0,1,96
-65,alakazam,,65,1,1,0,0,1,97
-66,machop,,66,1,1,0,0,1,99
-67,machoke,,67,1,1,0,0,1,100
-68,machamp,,68,1,1,0,0,1,101
-69,bellsprout,,69,1,1,0,0,1,102
-70,weepinbell,,70,1,1,0,0,1,103
-71,victreebel,,71,1,1,0,0,1,104
-72,tentacool,,72,1,1,0,0,1,105
-73,tentacruel,,73,1,1,0,0,1,106
-74,geodude,,74,1,1,0,0,1,107
-75,graveler,,75,1,1,0,0,1,109
-76,golem,,76,1,1,0,0,1,111
-77,ponyta,,77,1,1,0,0,1,113
-78,rapidash,,78,1,1,0,0,1,114
-79,slowpoke,,79,1,1,0,0,1,115
-80,slowbro,,80,1,1,0,0,1,116
-81,magnemite,,81,1,1,0,0,1,119
-82,magneton,,82,1,1,0,0,1,120
-83,farfetchd,,83,1,1,0,0,1,122
-84,doduo,,84,1,1,0,0,1,123
-85,dodrio,,85,1,1,0,0,1,124
-86,seel,,86,1,1,0,0,1,125
-87,dewgong,,87,1,1,0,0,1,126
-88,grimer,,88,1,1,0,0,1,127
-89,muk,,89,1,1,0,0,1,129
-90,shellder,,90,1,1,0,0,1,131
-91,cloyster,,91,1,1,0,0,1,132
-92,gastly,,92,1,1,0,0,1,133
-93,haunter,,93,1,1,0,0,1,134
-94,gengar,,94,1,1,0,0,1,135
-95,onix,,95,1,1,0,0,1,137
-96,drowzee,,96,1,1,0,0,1,140
-97,hypno,,97,1,1,0,0,1,141
-98,krabby,,98,1,1,0,0,1,142
-99,kingler,,99,1,1,0,0,1,143
-100,voltorb,,100,1,1,0,0,1,144
-101,electrode,,101,1,1,0,0,1,145
-102,exeggcute,,102,1,1,0,0,1,146
-103,exeggutor,,103,1,1,0,0,1,147
-104,cubone,,104,1,1,0,0,1,149
-105,marowak,,105,1,1,0,0,1,150
-106,hitmonlee,,106,1,1,0,0,1,154
-107,hitmonchan,,107,1,1,0,0,1,155
-108,lickitung,,108,1,1,0,0,1,157
-109,koffing,,109,1,1,0,0,1,159
-110,weezing,,110,1,1,0,0,1,160
-111,rhyhorn,,111,1,1,0,0,1,161
-112,rhydon,,112,1,1,0,0,1,162
-113,chansey,,113,1,1,0,0,1,165
-114,tangela,,114,1,1,0,0,1,167
-115,kangaskhan,,115,1,1,0,0,1,169
-116,horsea,,116,1,1,0,0,1,171
-117,seadra,,117,1,1,0,0,1,172
-118,goldeen,,118,1,1,0,0,1,174
-119,seaking,,119,1,1,0,0,1,175
-120,staryu,,120,1,1,0,0,1,176
-121,starmie,,121,1,1,0,0,1,177
-122,mr-mime,,122,1,1,0,0,1,179
-123,scyther,,123,1,1,0,0,1,180
-124,jynx,,124,1,1,0,0,1,184
-125,electabuzz,,125,1,1,0,0,1,186
-126,magmar,,126,1,1,0,0,1,189
-127,pinsir,,127,1,1,0,0,1,191
-128,tauros,,128,1,1,0,0,1,193
-129,magikarp,,129,1,1,0,0,1,194
-130,gyarados,,130,1,1,0,0,1,195
-131,lapras,,131,1,1,0,0,1,197
-132,ditto,,132,1,1,0,0,1,198
-133,eevee,,133,1,1,0,0,1,199
-134,vaporeon,,134,1,1,0,0,1,200
-135,jolteon,,135,1,1,0,0,1,201
-136,flareon,,136,1,1,0,0,1,202
-137,porygon,,137,1,1,0,0,1,208
-138,omanyte,,138,1,1,0,0,1,211
-139,omastar,,139,1,1,0,0,1,212
-140,kabuto,,140,1,1,0,0,1,213
-141,kabutops,,141,1,1,0,0,1,214
-142,aerodactyl,,142,1,1,0,0,1,215
-143,snorlax,,143,1,1,0,0,1,218
-144,articuno,,144,1,1,0,0,1,219
-145,zapdos,,145,1,1,0,0,1,220
-146,moltres,,146,1,1,0,0,1,221
-147,dratini,,147,1,1,0,0,1,222
-148,dragonair,,148,1,1,0,0,1,223
-149,dragonite,,149,1,1,0,0,1,224
-150,mewtwo,,150,1,1,0,0,1,225
-151,mew,,151,1,1,0,0,1,228
-152,chikorita,,152,3,1,0,0,1,229
-153,bayleef,,153,3,1,0,0,1,230
-154,meganium,,154,3,1,0,0,1,231
-155,cyndaquil,,155,3,1,0,0,1,232
-156,quilava,,156,3,1,0,0,1,233
-157,typhlosion,,157,3,1,0,0,1,234
-158,totodile,,158,3,1,0,0,1,235
-159,croconaw,,159,3,1,0,0,1,236
-160,feraligatr,,160,3,1,0,0,1,237
-161,sentret,,161,3,1,0,0,1,238
-162,furret,,162,3,1,0,0,1,239
-163,hoothoot,,163,3,1,0,0,1,240
-164,noctowl,,164,3,1,0,0,1,241
-165,ledyba,,165,3,1,0,0,1,242
-166,ledian,,166,3,1,0,0,1,243
-167,spinarak,,167,3,1,0,0,1,244
-168,ariados,,168,3,1,0,0,1,245
-169,crobat,,169,3,1,0,0,1,68
-170,chinchou,,170,3,1,0,0,1,246
-171,lanturn,,171,3,1,0,0,1,247
+26,raichu,,26,1,1,0,0,1,50
+27,sandshrew,,27,1,1,0,0,1,52
+28,sandslash,,28,1,1,0,0,1,54
+29,nidoran-f,,29,1,1,0,0,1,56
+30,nidorina,,30,1,1,0,0,1,57
+31,nidoqueen,,31,1,1,0,0,1,58
+32,nidoran-m,,32,1,1,0,0,1,59
+33,nidorino,,33,1,1,0,0,1,60
+34,nidoking,,34,1,1,0,0,1,61
+35,clefairy,,35,1,1,0,0,1,63
+36,clefable,,36,1,1,0,0,1,64
+37,vulpix,,37,1,1,0,0,1,65
+38,ninetales,,38,1,1,0,0,1,67
+39,jigglypuff,,39,1,1,0,0,1,70
+40,wigglytuff,,40,1,1,0,0,1,71
+41,zubat,,41,1,1,0,0,1,72
+42,golbat,,42,1,1,0,0,1,73
+43,oddish,,43,1,1,0,0,1,75
+44,gloom,,44,1,1,0,0,1,76
+45,vileplume,,45,1,1,0,0,1,77
+46,paras,,46,1,1,0,0,1,79
+47,parasect,,47,1,1,0,0,1,80
+48,venonat,,48,1,1,0,0,1,81
+49,venomoth,,49,1,1,0,0,1,82
+50,diglett,,50,1,1,0,0,1,83
+51,dugtrio,,51,1,1,0,0,1,85
+52,meowth,,52,1,1,0,0,1,87
+53,persian,,53,1,1,0,0,1,89
+54,psyduck,,54,1,1,0,0,1,91
+55,golduck,,55,1,1,0,0,1,92
+56,mankey,,56,1,1,0,0,1,93
+57,primeape,,57,1,1,0,0,1,94
+58,growlithe,,58,1,1,0,0,1,95
+59,arcanine,,59,1,1,0,0,1,96
+60,poliwag,,60,1,1,0,0,1,97
+61,poliwhirl,,61,1,1,0,0,1,98
+62,poliwrath,,62,1,1,0,0,1,99
+63,abra,,63,1,1,0,0,1,101
+64,kadabra,,64,1,1,0,0,1,102
+65,alakazam,,65,1,1,0,0,1,103
+66,machop,,66,1,1,0,0,1,105
+67,machoke,,67,1,1,0,0,1,106
+68,machamp,,68,1,1,0,0,1,107
+69,bellsprout,,69,1,1,0,0,1,108
+70,weepinbell,,70,1,1,0,0,1,109
+71,victreebel,,71,1,1,0,0,1,110
+72,tentacool,,72,1,1,0,0,1,111
+73,tentacruel,,73,1,1,0,0,1,112
+74,geodude,,74,1,1,0,0,1,113
+75,graveler,,75,1,1,0,0,1,115
+76,golem,,76,1,1,0,0,1,117
+77,ponyta,,77,1,1,0,0,1,119
+78,rapidash,,78,1,1,0,0,1,120
+79,slowpoke,,79,1,1,0,0,1,121
+80,slowbro,,80,1,1,0,0,1,122
+81,magnemite,,81,1,1,0,0,1,125
+82,magneton,,82,1,1,0,0,1,126
+83,farfetchd,,83,1,1,0,0,1,128
+84,doduo,,84,1,1,0,0,1,129
+85,dodrio,,85,1,1,0,0,1,130
+86,seel,,86,1,1,0,0,1,131
+87,dewgong,,87,1,1,0,0,1,132
+88,grimer,,88,1,1,0,0,1,133
+89,muk,,89,1,1,0,0,1,135
+90,shellder,,90,1,1,0,0,1,137
+91,cloyster,,91,1,1,0,0,1,138
+92,gastly,,92,1,1,0,0,1,139
+93,haunter,,93,1,1,0,0,1,140
+94,gengar,,94,1,1,0,0,1,141
+95,onix,,95,1,1,0,0,1,143
+96,drowzee,,96,1,1,0,0,1,146
+97,hypno,,97,1,1,0,0,1,147
+98,krabby,,98,1,1,0,0,1,148
+99,kingler,,99,1,1,0,0,1,149
+100,voltorb,,100,1,1,0,0,1,150
+101,electrode,,101,1,1,0,0,1,151
+102,exeggcute,,102,1,1,0,0,1,152
+103,exeggutor,,103,1,1,0,0,1,153
+104,cubone,,104,1,1,0,0,1,155
+105,marowak,,105,1,1,0,0,1,156
+106,hitmonlee,,106,1,1,0,0,1,160
+107,hitmonchan,,107,1,1,0,0,1,161
+108,lickitung,,108,1,1,0,0,1,163
+109,koffing,,109,1,1,0,0,1,165
+110,weezing,,110,1,1,0,0,1,166
+111,rhyhorn,,111,1,1,0,0,1,167
+112,rhydon,,112,1,1,0,0,1,168
+113,chansey,,113,1,1,0,0,1,171
+114,tangela,,114,1,1,0,0,1,173
+115,kangaskhan,,115,1,1,0,0,1,175
+116,horsea,,116,1,1,0,0,1,177
+117,seadra,,117,1,1,0,0,1,178
+118,goldeen,,118,1,1,0,0,1,180
+119,seaking,,119,1,1,0,0,1,181
+120,staryu,,120,1,1,0,0,1,182
+121,starmie,,121,1,1,0,0,1,183
+122,mr-mime,,122,1,1,0,0,1,185
+123,scyther,,123,1,1,0,0,1,186
+124,jynx,,124,1,1,0,0,1,190
+125,electabuzz,,125,1,1,0,0,1,192
+126,magmar,,126,1,1,0,0,1,195
+127,pinsir,,127,1,1,0,0,1,197
+128,tauros,,128,1,1,0,0,1,199
+129,magikarp,,129,1,1,0,0,1,200
+130,gyarados,,130,1,1,0,0,1,201
+131,lapras,,131,1,1,0,0,1,203
+132,ditto,,132,1,1,0,0,1,204
+133,eevee,,133,1,1,0,0,1,205
+134,vaporeon,,134,1,1,0,0,1,206
+135,jolteon,,135,1,1,0,0,1,207
+136,flareon,,136,1,1,0,0,1,208
+137,porygon,,137,1,1,0,0,1,214
+138,omanyte,,138,1,1,0,0,1,217
+139,omastar,,139,1,1,0,0,1,218
+140,kabuto,,140,1,1,0,0,1,219
+141,kabutops,,141,1,1,0,0,1,220
+142,aerodactyl,,142,1,1,0,0,1,221
+143,snorlax,,143,1,1,0,0,1,224
+144,articuno,,144,1,1,0,0,1,225
+145,zapdos,,145,1,1,0,0,1,226
+146,moltres,,146,1,1,0,0,1,227
+147,dratini,,147,1,1,0,0,1,228
+148,dragonair,,148,1,1,0,0,1,229
+149,dragonite,,149,1,1,0,0,1,230
+150,mewtwo,,150,1,1,0,0,1,231
+151,mew,,151,1,1,0,0,1,234
+152,chikorita,,152,3,1,0,0,1,235
+153,bayleef,,153,3,1,0,0,1,236
+154,meganium,,154,3,1,0,0,1,237
+155,cyndaquil,,155,3,1,0,0,1,238
+156,quilava,,156,3,1,0,0,1,239
+157,typhlosion,,157,3,1,0,0,1,240
+158,totodile,,158,3,1,0,0,1,241
+159,croconaw,,159,3,1,0,0,1,242
+160,feraligatr,,160,3,1,0,0,1,243
+161,sentret,,161,3,1,0,0,1,244
+162,furret,,162,3,1,0,0,1,245
+163,hoothoot,,163,3,1,0,0,1,246
+164,noctowl,,164,3,1,0,0,1,247
+165,ledyba,,165,3,1,0,0,1,248
+166,ledian,,166,3,1,0,0,1,249
+167,spinarak,,167,3,1,0,0,1,250
+168,ariados,,168,3,1,0,0,1,251
+169,crobat,,169,3,1,0,0,1,74
+170,chinchou,,170,3,1,0,0,1,252
+171,lanturn,,171,3,1,0,0,1,253
 172,pichu,,172,3,1,0,0,1,34
-173,cleffa,,173,3,1,0,0,1,56
-174,igglybuff,,174,3,1,0,0,1,63
-175,togepi,,175,3,1,0,0,1,248
-176,togetic,,176,3,1,0,0,1,249
-177,natu,,177,3,1,0,0,1,251
-178,xatu,,178,3,1,0,0,1,252
-179,mareep,,179,3,1,0,0,1,253
-180,flaaffy,,180,3,1,0,0,1,254
-181,ampharos,,181,3,1,0,0,1,255
-182,bellossom,,182,3,1,0,0,1,72
-183,marill,,183,3,1,0,0,1,258
-184,azumarill,,184,3,1,0,0,1,259
-185,sudowoodo,,185,3,1,0,0,1,261
-186,politoed,,186,3,1,0,0,1,94
-187,hoppip,,187,3,1,0,0,1,262
-188,skiploom,,188,3,1,0,0,1,263
-189,jumpluff,,189,3,1,0,0,1,264
-190,aipom,,190,3,1,0,0,1,265
-191,sunkern,,191,3,1,0,0,1,267
-192,sunflora,,192,3,1,0,0,1,268
-193,yanma,,193,3,1,0,0,1,269
-194,wooper,,194,3,1,0,0,1,271
-195,quagsire,,195,3,1,0,0,1,272
-196,espeon,,196,3,1,0,0,1,203
-197,umbreon,,197,3,1,0,0,1,204
-198,murkrow,,198,3,1,0,0,1,273
-199,slowking,,199,3,1,0,0,1,118
-200,misdreavus,,200,3,1,0,0,1,275
-201,unown-a,a,201,3,1,0,0,1,277
-202,wobbuffet,,202,3,1,0,0,1,306
-203,girafarig,,203,3,1,0,0,1,307
-204,pineco,,204,3,1,0,0,1,308
-205,forretress,,205,3,1,0,0,1,309
-206,dunsparce,,206,3,1,0,0,1,310
-207,gligar,,207,3,1,0,0,1,311
-208,steelix,,208,3,1,0,0,1,138
-209,snubbull,,209,3,1,0,0,1,313
-210,granbull,,210,3,1,0,0,1,314
-211,qwilfish,,211,3,1,0,0,1,315
-212,scizor,,212,3,1,0,0,1,181
-213,shuckle,,213,3,1,0,0,1,316
-214,heracross,,214,3,1,0,0,1,317
-215,sneasel,,215,3,1,0,0,1,319
-216,teddiursa,,216,3,1,0,0,1,321
-217,ursaring,,217,3,1,0,0,1,322
-218,slugma,,218,3,1,0,0,1,323
-219,magcargo,,219,3,1,0,0,1,324
-220,swinub,,220,3,1,0,0,1,325
-221,piloswine,,221,3,1,0,0,1,326
-222,corsola,,222,3,1,0,0,1,328
-223,remoraid,,223,3,1,0,0,1,329
-224,octillery,,224,3,1,0,0,1,330
-225,delibird,,225,3,1,0,0,1,331
-226,mantine,,226,3,1,0,0,1,333
-227,skarmory,,227,3,1,0,0,1,334
-228,houndour,,228,3,1,0,0,1,335
-229,houndoom,,229,3,1,0,0,1,336
-230,kingdra,,230,3,1,0,0,1,173
-231,phanpy,,231,3,1,0,0,1,338
-232,donphan,,232,3,1,0,0,1,339
-233,porygon2,,233,3,1,0,0,1,209
-234,stantler,,234,3,1,0,0,1,340
-235,smeargle,,235,3,1,0,0,1,341
-236,tyrogue,,236,3,1,0,0,1,153
-237,hitmontop,,237,3,1,0,0,1,156
-238,smoochum,,238,3,1,0,0,1,183
-239,elekid,,239,3,1,0,0,1,185
-240,magby,,240,3,1,0,0,1,188
-241,miltank,,241,3,1,0,0,1,342
-242,blissey,,242,3,1,0,0,1,166
-243,raikou,,243,3,1,0,0,1,343
-244,entei,,244,3,1,0,0,1,344
-245,suicune,,245,3,1,0,0,1,345
-246,larvitar,,246,3,1,0,0,1,346
-247,pupitar,,247,3,1,0,0,1,347
-248,tyranitar,,248,3,1,0,0,1,348
-249,lugia,,249,3,1,0,0,1,350
-250,ho-oh,,250,3,1,0,0,1,351
-251,celebi,,251,3,1,0,0,1,352
-252,treecko,,252,5,1,0,0,1,353
-253,grovyle,,253,5,1,0,0,1,354
-254,sceptile,,254,5,1,0,0,1,355
-255,torchic,,255,5,1,0,0,1,357
-256,combusken,,256,5,1,0,0,1,358
-257,blaziken,,257,5,1,0,0,1,359
-258,mudkip,,258,5,1,0,0,1,361
-259,marshtomp,,259,5,1,0,0,1,362
-260,swampert,,260,5,1,0,0,1,363
-261,poochyena,,261,5,1,0,0,1,365
-262,mightyena,,262,5,1,0,0,1,366
-263,zigzagoon,,263,5,1,0,0,1,367
-264,linoone,,264,5,1,0,0,1,368
-265,wurmple,,265,5,1,0,0,1,369
-266,silcoon,,266,5,1,0,0,1,370
-267,beautifly,,267,5,1,0,0,1,371
-268,cascoon,,268,5,1,0,0,1,372
-269,dustox,,269,5,1,0,0,1,373
-270,lotad,,270,5,1,0,0,1,374
-271,lombre,,271,5,1,0,0,1,375
-272,ludicolo,,272,5,1,0,0,1,376
-273,seedot,,273,5,1,0,0,1,377
-274,nuzleaf,,274,5,1,0,0,1,378
-275,shiftry,,275,5,1,0,0,1,379
-276,taillow,,276,5,1,0,0,1,380
-277,swellow,,277,5,1,0,0,1,381
-278,wingull,,278,5,1,0,0,1,382
-279,pelipper,,279,5,1,0,0,1,383
-280,ralts,,280,5,1,0,0,1,384
-281,kirlia,,281,5,1,0,0,1,385
-282,gardevoir,,282,5,1,0,0,1,386
-283,surskit,,283,5,1,0,0,1,390
-284,masquerain,,284,5,1,0,0,1,391
-285,shroomish,,285,5,1,0,0,1,392
-286,breloom,,286,5,1,0,0,1,393
-287,slakoth,,287,5,1,0,0,1,394
-288,vigoroth,,288,5,1,0,0,1,395
-289,slaking,,289,5,1,0,0,1,396
-290,nincada,,290,5,1,0,0,1,397
-291,ninjask,,291,5,1,0,0,1,398
-292,shedinja,,292,5,1,0,0,1,399
-293,whismur,,293,5,1,0,0,1,400
-294,loudred,,294,5,1,0,0,1,401
-295,exploud,,295,5,1,0,0,1,402
-296,makuhita,,296,5,1,0,0,1,403
-297,hariyama,,297,5,1,0,0,1,404
-298,azurill,,298,5,1,0,0,1,257
-299,nosepass,,299,5,1,0,0,1,405
-300,skitty,,300,5,1,0,0,1,407
-301,delcatty,,301,5,1,0,0,1,408
-302,sableye,,302,5,1,0,0,1,409
-303,mawile,,303,5,1,0,0,1,411
-304,aron,,304,5,1,0,0,1,413
-305,lairon,,305,5,1,0,0,1,414
-306,aggron,,306,5,1,0,0,1,415
-307,meditite,,307,5,1,0,0,1,417
-308,medicham,,308,5,1,0,0,1,418
-309,electrike,,309,5,1,0,0,1,420
-310,manectric,,310,5,1,0,0,1,421
-311,plusle,,311,5,1,0,0,1,423
-312,minun,,312,5,1,0,0,1,424
-313,volbeat,,313,5,1,0,0,1,425
-314,illumise,,314,5,1,0,0,1,426
-315,roselia,,315,5,1,0,0,1,428
-316,gulpin,,316,5,1,0,0,1,430
-317,swalot,,317,5,1,0,0,1,431
-318,carvanha,,318,5,1,0,0,1,432
-319,sharpedo,,319,5,1,0,0,1,433
-320,wailmer,,320,5,1,0,0,1,435
-321,wailord,,321,5,1,0,0,1,436
-322,numel,,322,5,1,0,0,1,437
-323,camerupt,,323,5,1,0,0,1,438
-324,torkoal,,324,5,1,0,0,1,440
-325,spoink,,325,5,1,0,0,1,441
-326,grumpig,,326,5,1,0,0,1,442
-327,spinda,,327,5,1,0,0,1,443
-328,trapinch,,328,5,1,0,0,1,444
-329,vibrava,,329,5,1,0,0,1,445
-330,flygon,,330,5,1,0,0,1,446
-331,cacnea,,331,5,1,0,0,1,447
-332,cacturne,,332,5,1,0,0,1,448
-333,swablu,,333,5,1,0,0,1,449
-334,altaria,,334,5,1,0,0,1,450
-335,zangoose,,335,5,1,0,0,1,452
-336,seviper,,336,5,1,0,0,1,453
-337,lunatone,,337,5,1,0,0,1,454
-338,solrock,,338,5,1,0,0,1,455
-339,barboach,,339,5,1,0,0,1,456
-340,whiscash,,340,5,1,0,0,1,457
-341,corphish,,341,5,1,0,0,1,458
-342,crawdaunt,,342,5,1,0,0,1,459
-343,baltoy,,343,5,1,0,0,1,460
-344,claydol,,344,5,1,0,0,1,461
-345,lileep,,345,5,1,0,0,1,462
-346,cradily,,346,5,1,0,0,1,463
-347,anorith,,347,5,1,0,0,1,464
-348,armaldo,,348,5,1,0,0,1,465
-349,feebas,,349,5,1,0,0,1,466
-350,milotic,,350,5,1,0,0,1,467
-351,castform,,351,5,1,0,0,1,468
-352,kecleon,,352,5,1,0,0,1,472
-353,shuppet,,353,5,1,0,0,1,473
-354,banette,,354,5,1,0,0,1,474
-355,duskull,,355,5,1,0,0,1,476
-356,dusclops,,356,5,1,0,0,1,477
-357,tropius,,357,5,1,0,0,1,479
-358,chimecho,,358,5,1,0,0,1,481
-359,absol,,359,5,1,0,0,1,482
-360,wynaut,,360,5,1,0,0,1,305
-361,snorunt,,361,5,1,0,0,1,484
-362,glalie,,362,5,1,0,0,1,485
-363,spheal,,363,5,1,0,0,1,488
-364,sealeo,,364,5,1,0,0,1,489
-365,walrein,,365,5,1,0,0,1,490
-366,clamperl,,366,5,1,0,0,1,491
-367,huntail,,367,5,1,0,0,1,492
-368,gorebyss,,368,5,1,0,0,1,493
-369,relicanth,,369,5,1,0,0,1,494
-370,luvdisc,,370,5,1,0,0,1,495
-371,bagon,,371,5,1,0,0,1,496
-372,shelgon,,372,5,1,0,0,1,497
-373,salamence,,373,5,1,0,0,1,498
-374,beldum,,374,5,1,0,0,1,500
-375,metang,,375,5,1,0,0,1,501
-376,metagross,,376,5,1,0,0,1,502
-377,regirock,,377,5,1,0,0,1,504
-378,regice,,378,5,1,0,0,1,505
-379,registeel,,379,5,1,0,0,1,506
-380,latias,,380,5,1,0,0,1,507
-381,latios,,381,5,1,0,0,1,509
-382,kyogre,,382,5,1,0,0,1,511
-383,groudon,,383,5,1,0,0,1,513
-384,rayquaza,,384,5,1,0,0,1,515
-385,jirachi,,385,5,1,0,0,1,517
-386,deoxys-normal,normal,386,5,1,0,0,1,518
-387,turtwig,,387,8,1,0,0,1,522
-388,grotle,,388,8,1,0,0,1,523
-389,torterra,,389,8,1,0,0,1,524
-390,chimchar,,390,8,1,0,0,1,525
-391,monferno,,391,8,1,0,0,1,526
-392,infernape,,392,8,1,0,0,1,527
-393,piplup,,393,8,1,0,0,1,528
-394,prinplup,,394,8,1,0,0,1,529
-395,empoleon,,395,8,1,0,0,1,530
-396,starly,,396,8,1,0,0,1,531
-397,staravia,,397,8,1,0,0,1,532
-398,staraptor,,398,8,1,0,0,1,533
-399,bidoof,,399,8,1,0,0,1,534
-400,bibarel,,400,8,1,0,0,1,535
-401,kricketot,,401,8,1,0,0,1,536
-402,kricketune,,402,8,1,0,0,1,537
-403,shinx,,403,8,1,0,0,1,538
-404,luxio,,404,8,1,0,0,1,539
-405,luxray,,405,8,1,0,0,1,540
-406,budew,,406,8,1,0,0,1,427
-407,roserade,,407,8,1,0,0,1,429
-408,cranidos,,408,8,1,0,0,1,541
-409,rampardos,,409,8,1,0,0,1,542
-410,shieldon,,410,8,1,0,0,1,543
-411,bastiodon,,411,8,1,0,0,1,544
-412,burmy-plant,plant,412,8,1,0,0,1,545
-413,wormadam-plant,plant,413,8,1,0,0,1,548
-414,mothim-plant,plant,414,8,1,0,0,1,551
-415,combee,,415,8,1,0,0,1,554
-416,vespiquen,,416,8,1,0,0,1,555
-417,pachirisu,,417,8,1,0,0,1,556
-418,buizel,,418,8,1,0,0,1,557
-419,floatzel,,419,8,1,0,0,1,558
-420,cherubi,,420,8,1,0,0,1,559
-421,cherrim-overcast,overcast,421,8,1,0,0,1,560
-422,shellos-west,west,422,8,1,0,0,1,562
-423,gastrodon-west,west,423,8,1,0,0,1,564
-424,ambipom,,424,8,1,0,0,1,266
-425,drifloon,,425,8,1,0,0,1,566
-426,drifblim,,426,8,1,0,0,1,567
-427,buneary,,427,8,1,0,0,1,568
-428,lopunny,,428,8,1,0,0,1,569
-429,mismagius,,429,8,1,0,0,1,276
-430,honchkrow,,430,8,1,0,0,1,274
-431,glameow,,431,8,1,0,0,1,571
-432,purugly,,432,8,1,0,0,1,572
-433,chingling,,433,8,1,0,0,1,480
-434,stunky,,434,8,1,0,0,1,573
-435,skuntank,,435,8,1,0,0,1,574
-436,bronzor,,436,8,1,0,0,1,575
-437,bronzong,,437,8,1,0,0,1,576
-438,bonsly,,438,8,1,0,0,1,260
-439,mime-jr,,439,8,1,0,0,1,178
-440,happiny,,440,8,1,0,0,1,164
-441,chatot,,441,8,1,0,0,1,577
-442,spiritomb,,442,8,1,0,0,1,578
-443,gible,,443,8,1,0,0,1,579
-444,gabite,,444,8,1,0,0,1,580
-445,garchomp,,445,8,1,0,0,1,581
-446,munchlax,,446,8,1,0,0,1,217
-447,riolu,,447,8,1,0,0,1,583
-448,lucario,,448,8,1,0,0,1,584
-449,hippopotas,,449,8,1,0,0,1,586
-450,hippowdon,,450,8,1,0,0,1,587
-451,skorupi,,451,8,1,0,0,1,588
-452,drapion,,452,8,1,0,0,1,589
-453,croagunk,,453,8,1,0,0,1,590
-454,toxicroak,,454,8,1,0,0,1,591
-455,carnivine,,455,8,1,0,0,1,592
-456,finneon,,456,8,1,0,0,1,593
-457,lumineon,,457,8,1,0,0,1,594
-458,mantyke,,458,8,1,0,0,1,332
-459,snover,,459,8,1,0,0,1,595
-460,abomasnow,,460,8,1,0,0,1,596
-461,weavile,,461,8,1,0,0,1,320
-462,magnezone,,462,8,1,0,0,1,121
-463,lickilicky,,463,8,1,0,0,1,158
-464,rhyperior,,464,8,1,0,0,1,163
-465,tangrowth,,465,8,1,0,0,1,168
-466,electivire,,466,8,1,0,0,1,187
-467,magmortar,,467,8,1,0,0,1,190
-468,togekiss,,468,8,1,0,0,1,250
-469,yanmega,,469,8,1,0,0,1,270
-470,leafeon,,470,8,1,0,0,1,205
-471,glaceon,,471,8,1,0,0,1,206
-472,gliscor,,472,8,1,0,0,1,312
-473,mamoswine,,473,8,1,0,0,1,327
-474,porygon-z,,474,8,1,0,0,1,210
-475,gallade,,475,8,1,0,0,1,388
-476,probopass,,476,8,1,0,0,1,406
-477,dusknoir,,477,8,1,0,0,1,478
-478,froslass,,478,8,1,0,0,1,487
-479,rotom,,479,8,1,0,0,1,598
-480,uxie,,480,8,1,0,0,1,604
-481,mesprit,,481,8,1,0,0,1,605
-482,azelf,,482,8,1,0,0,1,606
-483,dialga,,483,8,1,0,0,1,607
-484,palkia,,484,8,1,0,0,1,608
-485,heatran,,485,8,1,0,0,1,609
-486,regigigas,,486,8,1,0,0,1,610
-487,giratina-altered,altered,487,8,1,0,0,1,611
-488,cresselia,,488,8,1,0,0,1,613
-489,phione,,489,8,1,0,0,1,614
-490,manaphy,,490,8,1,0,0,1,615
-491,darkrai,,491,8,1,0,0,1,616
-492,shaymin-land,land,492,8,1,0,0,1,617
-493,arceus-normal,normal,493,8,1,0,0,1,619
-494,victini,,494,11,1,0,0,1,637
-495,snivy,,495,11,1,0,0,1,638
-496,servine,,496,11,1,0,0,1,639
-497,serperior,,497,11,1,0,0,1,640
-498,tepig,,498,11,1,0,0,1,641
-499,pignite,,499,11,1,0,0,1,642
-500,emboar,,500,11,1,0,0,1,643
-501,oshawott,,501,11,1,0,0,1,644
-502,dewott,,502,11,1,0,0,1,645
-503,samurott,,503,11,1,0,0,1,646
-504,patrat,,504,11,1,0,0,1,647
-505,watchog,,505,11,1,0,0,1,648
-506,lillipup,,506,11,1,0,0,1,649
-507,herdier,,507,11,1,0,0,1,650
-508,stoutland,,508,11,1,0,0,1,651
-509,purrloin,,509,11,1,0,0,1,652
-510,liepard,,510,11,1,0,0,1,653
-511,pansage,,511,11,1,0,0,1,654
-512,simisage,,512,11,1,0,0,1,655
-513,pansear,,513,11,1,0,0,1,656
-514,simisear,,514,11,1,0,0,1,657
-515,panpour,,515,11,1,0,0,1,658
-516,simipour,,516,11,1,0,0,1,659
-517,munna,,517,11,1,0,0,1,660
-518,musharna,,518,11,1,0,0,1,661
-519,pidove,,519,11,1,0,0,1,662
-520,tranquill,,520,11,1,0,0,1,663
-521,unfezant,,521,11,1,0,0,1,664
-522,blitzle,,522,11,1,0,0,1,665
-523,zebstrika,,523,11,1,0,0,1,666
-524,roggenrola,,524,11,1,0,0,1,667
-525,boldore,,525,11,1,0,0,1,668
-526,gigalith,,526,11,1,0,0,1,669
-527,woobat,,527,11,1,0,0,1,670
-528,swoobat,,528,11,1,0,0,1,671
-529,drilbur,,529,11,1,0,0,1,672
-530,excadrill,,530,11,1,0,0,1,673
-531,audino,,531,11,1,0,0,1,674
-532,timburr,,532,11,1,0,0,1,676
-533,gurdurr,,533,11,1,0,0,1,677
-534,conkeldurr,,534,11,1,0,0,1,678
-535,tympole,,535,11,1,0,0,1,679
-536,palpitoad,,536,11,1,0,0,1,680
-537,seismitoad,,537,11,1,0,0,1,681
-538,throh,,538,11,1,0,0,1,682
-539,sawk,,539,11,1,0,0,1,683
-540,sewaddle,,540,11,1,0,0,1,684
-541,swadloon,,541,11,1,0,0,1,685
-542,leavanny,,542,11,1,0,0,1,686
-543,venipede,,543,11,1,0,0,1,687
-544,whirlipede,,544,11,1,0,0,1,688
-545,scolipede,,545,11,1,0,0,1,689
-546,cottonee,,546,11,1,0,0,1,690
-547,whimsicott,,547,11,1,0,0,1,691
-548,petilil,,548,11,1,0,0,1,692
-549,lilligant,,549,11,1,0,0,1,693
-550,basculin-red-striped,red-striped,550,11,1,0,0,1,694
-551,sandile,,551,11,1,0,0,1,696
-552,krokorok,,552,11,1,0,0,1,697
-553,krookodile,,553,11,1,0,0,1,698
-554,darumaka,,554,11,1,0,0,1,699
-555,darmanitan-standard,standard,555,11,1,0,0,1,700
-556,maractus,,556,11,1,0,0,1,702
-557,dwebble,,557,11,1,0,0,1,703
-558,crustle,,558,11,1,0,0,1,704
-559,scraggy,,559,11,1,0,0,1,705
-560,scrafty,,560,11,1,0,0,1,706
-561,sigilyph,,561,11,1,0,0,1,707
-562,yamask,,562,11,1,0,0,1,708
-563,cofagrigus,,563,11,1,0,0,1,709
-564,tirtouga,,564,11,1,0,0,1,710
-565,carracosta,,565,11,1,0,0,1,711
-566,archen,,566,11,1,0,0,1,712
-567,archeops,,567,11,1,0,0,1,713
-568,trubbish,,568,11,1,0,0,1,714
-569,garbodor,,569,11,1,0,0,1,715
-570,zorua,,570,11,1,0,0,1,716
-571,zoroark,,571,11,1,0,0,1,717
-572,minccino,,572,11,1,0,0,1,718
-573,cinccino,,573,11,1,0,0,1,719
-574,gothita,,574,11,1,0,0,1,720
-575,gothorita,,575,11,1,0,0,1,721
-576,gothitelle,,576,11,1,0,0,1,722
-577,solosis,,577,11,1,0,0,1,723
-578,duosion,,578,11,1,0,0,1,724
-579,reuniclus,,579,11,1,0,0,1,725
-580,ducklett,,580,11,1,0,0,1,726
-581,swanna,,581,11,1,0,0,1,727
-582,vanillite,,582,11,1,0,0,1,728
-583,vanillish,,583,11,1,0,0,1,729
-584,vanilluxe,,584,11,1,0,0,1,730
-585,deerling-spring,spring,585,11,1,0,0,1,731
-586,sawsbuck-spring,spring,586,11,1,0,0,1,735
-587,emolga,,587,11,1,0,0,1,739
-588,karrablast,,588,11,1,0,0,1,740
-589,escavalier,,589,11,1,0,0,1,741
-590,foongus,,590,11,1,0,0,1,742
-591,amoonguss,,591,11,1,0,0,1,743
-592,frillish,,592,11,1,0,0,1,744
-593,jellicent,,593,11,1,0,0,1,745
-594,alomomola,,594,11,1,0,0,1,746
-595,joltik,,595,11,1,0,0,1,747
-596,galvantula,,596,11,1,0,0,1,748
-597,ferroseed,,597,11,1,0,0,1,749
-598,ferrothorn,,598,11,1,0,0,1,750
-599,klink,,599,11,1,0,0,1,751
-600,klang,,600,11,1,0,0,1,752
-601,klinklang,,601,11,1,0,0,1,753
-602,tynamo,,602,11,1,0,0,1,754
-603,eelektrik,,603,11,1,0,0,1,755
-604,eelektross,,604,11,1,0,0,1,756
-605,elgyem,,605,11,1,0,0,1,757
-606,beheeyem,,606,11,1,0,0,1,758
-607,litwick,,607,11,1,0,0,1,759
-608,lampent,,608,11,1,0,0,1,760
-609,chandelure,,609,11,1,0,0,1,761
-610,axew,,610,11,1,0,0,1,762
-611,fraxure,,611,11,1,0,0,1,763
-612,haxorus,,612,11,1,0,0,1,764
-613,cubchoo,,613,11,1,0,0,1,765
-614,beartic,,614,11,1,0,0,1,766
-615,cryogonal,,615,11,1,0,0,1,767
-616,shelmet,,616,11,1,0,0,1,768
-617,accelgor,,617,11,1,0,0,1,769
-618,stunfisk,,618,11,1,0,0,1,770
-619,mienfoo,,619,11,1,0,0,1,771
-620,mienshao,,620,11,1,0,0,1,772
-621,druddigon,,621,11,1,0,0,1,773
-622,golett,,622,11,1,0,0,1,774
-623,golurk,,623,11,1,0,0,1,775
-624,pawniard,,624,11,1,0,0,1,776
-625,bisharp,,625,11,1,0,0,1,777
-626,bouffalant,,626,11,1,0,0,1,778
-627,rufflet,,627,11,1,0,0,1,779
-628,braviary,,628,11,1,0,0,1,780
-629,vullaby,,629,11,1,0,0,1,781
-630,mandibuzz,,630,11,1,0,0,1,782
-631,heatmor,,631,11,1,0,0,1,783
-632,durant,,632,11,1,0,0,1,784
-633,deino,,633,11,1,0,0,1,785
-634,zweilous,,634,11,1,0,0,1,786
-635,hydreigon,,635,11,1,0,0,1,787
-636,larvesta,,636,11,1,0,0,1,788
-637,volcarona,,637,11,1,0,0,1,789
-638,cobalion,,638,11,1,0,0,1,790
-639,terrakion,,639,11,1,0,0,1,791
-640,virizion,,640,11,1,0,0,1,792
-641,tornadus-incarnate,incarnate,641,11,1,0,0,1,793
-642,thundurus-incarnate,incarnate,642,11,1,0,0,1,795
-643,reshiram,,643,11,1,0,0,1,797
-644,zekrom,,644,11,1,0,0,1,798
-645,landorus-incarnate,incarnate,645,11,1,0,0,1,799
-646,kyurem,,646,11,1,0,0,1,801
-647,keldeo-ordinary,ordinary,647,11,1,0,0,1,804
-648,meloetta-aria,aria,648,11,1,0,0,1,806
-649,genesect,,649,11,1,0,0,1,808
-650,chespin,,650,15,1,0,0,1,813
-651,quilladin,,651,15,1,0,0,1,814
-652,chesnaught,,652,15,1,0,0,1,815
-653,fennekin,,653,15,1,0,0,1,816
-654,braixen,,654,15,1,0,0,1,817
-655,delphox,,655,15,1,0,0,1,818
-656,froakie,,656,15,1,0,0,1,819
-657,frogadier,,657,15,1,0,0,1,820
-658,greninja,,658,15,1,0,0,1,821
-659,bunnelby,,659,15,1,0,0,1,824
-660,diggersby,,660,15,1,0,0,1,825
-661,fletchling,,661,15,1,0,0,1,826
-662,fletchinder,,662,15,1,0,0,1,827
-663,talonflame,,663,15,1,0,0,1,828
-664,scatterbug-icy-snow,icy-snow,664,15,1,0,0,1,829
-665,spewpa-icy-snow,icy-snow,665,15,1,0,0,1,849
-666,vivillon-meadow,meadow,666,15,0,0,0,7,875
-667,litleo,,667,15,1,0,0,1,889
-668,pyroar,,668,15,1,0,0,1,890
-669,flabebe-red,red,669,15,1,0,0,1,891
-670,floette-red,red,670,15,1,0,0,1,896
-671,florges-red,red,671,15,1,0,0,1,902
-672,skiddo,,672,15,1,0,0,1,907
-673,gogoat,,673,15,1,0,0,1,908
-674,pancham,,674,15,1,0,0,1,909
-675,pangoro,,675,15,1,0,0,1,910
-676,furfrou-natural,natural,676,15,1,0,0,1,911
-677,espurr,,677,15,1,0,0,1,921
-678,meowstic-male,male,678,15,1,0,0,1,922
-679,honedge,,679,15,1,0,0,1,924
-680,doublade,,680,15,1,0,0,1,925
-681,aegislash-shield,shield,681,15,1,0,0,1,926
-682,spritzee,,682,15,1,0,0,1,928
-683,aromatisse,,683,15,1,0,0,1,929
-684,swirlix,,684,15,1,0,0,1,930
-685,slurpuff,,685,15,1,0,0,1,931
-686,inkay,,686,15,1,0,0,1,932
-687,malamar,,687,15,1,0,0,1,933
-688,binacle,,688,15,1,0,0,1,934
-689,barbaracle,,689,15,1,0,0,1,935
-690,skrelp,,690,15,1,0,0,1,936
-691,dragalge,,691,15,1,0,0,1,937
-692,clauncher,,692,15,1,0,0,1,938
-693,clawitzer,,693,15,1,0,0,1,939
-694,helioptile,,694,15,1,0,0,1,940
-695,heliolisk,,695,15,1,0,0,1,941
-696,tyrunt,,696,15,1,0,0,1,942
-697,tyrantrum,,697,15,1,0,0,1,943
-698,amaura,,698,15,1,0,0,1,944
-699,aurorus,,699,15,1,0,0,1,945
-700,sylveon,,700,15,1,0,0,1,207
-701,hawlucha,,701,15,1,0,0,1,946
-702,dedenne,,702,15,1,0,0,1,947
-703,carbink,,703,15,1,0,0,1,948
-704,goomy,,704,15,1,0,0,1,949
-705,sliggoo,,705,15,1,0,0,1,950
-706,goodra,,706,15,1,0,0,1,951
-707,klefki,,707,15,1,0,0,1,952
-708,phantump,,708,15,1,0,0,1,953
-709,trevenant,,709,15,1,0,0,1,954
-710,pumpkaboo-average,average,710,15,1,0,0,1,955
-711,gourgeist-average,average,711,15,1,0,0,1,959
-712,bergmite,,712,15,1,0,0,1,963
-713,avalugg,,713,15,1,0,0,1,964
-714,noibat,,714,15,1,0,0,1,965
-715,noivern,,715,15,1,0,0,1,966
-716,xerneas-active,active,716,15,0,1,0,2,968
-717,yveltal,,717,15,1,0,0,1,969
-718,zygarde,,718,15,1,0,0,1,970
-719,diancie,,719,15,1,0,0,1,974
-720,hoopa,confined,720,15,1,0,0,1,976
-721,volcanion,,721,15,1,0,0,1,978
-722,rowlet,,722,17,1,0,0,1,979
-723,dartrix,,723,17,1,0,0,1,980
-724,decidueye,,724,17,1,0,0,1,981
-725,litten,,725,17,1,0,0,1,982
-726,torracat,,726,17,1,0,0,1,983
-727,incineroar,,727,17,1,0,0,1,984
-728,popplio,,728,17,1,0,0,1,985
-729,brionne,,729,17,1,0,0,1,986
-730,primarina,,730,17,1,0,0,1,987
-731,pikipek,,731,17,1,0,0,1,988
-732,trumbeak,,732,17,1,0,0,1,989
-733,toucannon,,733,17,1,0,0,1,990
-734,yungoos,,734,17,1,0,0,1,991
-735,gumshoos,,735,17,1,0,0,1,992
-736,grubbin,,736,17,1,0,0,1,994
-737,charjabug,,737,17,1,0,0,1,995
-738,vikavolt,,738,17,1,0,0,1,996
-739,crabrawler,,739,17,1,0,0,1,998
-740,crabominable,,740,17,1,0,0,1,999
-741,oricorio-baile,baile,741,17,1,0,0,1,1000
-742,cutiefly,,742,17,1,0,0,1,1004
-743,ribombee,,743,17,1,0,0,1,1005
-744,rockruff,,744,17,1,0,0,1,1007
-745,lycanroc-midday,midday,745,17,1,0,0,1,1009
-746,wishiwashi-solo,solo,746,17,1,0,0,1,1012
-747,mareanie,,747,17,1,0,0,1,1014
-748,toxapex,,748,17,1,0,0,1,1015
-749,mudbray,,749,17,1,0,0,1,1016
-750,mudsdale,,750,17,1,0,0,1,1017
-751,dewpider,,751,17,1,0,0,1,1018
-752,araquanid,,752,17,1,0,0,1,1019
-753,fomantis,,753,17,1,0,0,1,1021
-754,lurantis,,754,17,1,0,0,1,1022
-755,morelull,,755,17,1,0,0,1,1024
-756,shiinotic,,756,17,1,0,0,1,1025
-757,salandit,,757,17,1,0,0,1,1026
-758,salazzle,,758,17,1,0,0,1,1027
-759,stufful,,759,17,1,0,0,1,1029
-760,bewear,,760,17,1,0,0,1,1030
-761,bounsweet,,761,17,1,0,0,1,1031
-762,steenee,,762,17,1,0,0,1,1032
-763,tsareena,,763,17,1,0,0,1,1033
-764,comfey,,764,17,1,0,0,1,1034
-765,oranguru,,765,17,1,0,0,1,1035
-766,passimian,,766,17,1,0,0,1,1036
-767,wimpod,,767,17,1,0,0,1,1037
-768,golisopod,,768,17,1,0,0,1,1038
-769,sandygast,,769,17,1,0,0,1,1039
-770,palossand,,770,17,1,0,0,1,1040
-771,pyukumuku,,771,17,1,0,0,1,1041
-772,type-null,,772,17,1,0,0,1,1042
-773,silvally-normal,normal,773,17,1,0,0,1,1043
-774,minior-red-meteor,red-meteor,774,17,1,0,0,1,1061
-775,komala,,775,17,1,0,0,1,1075
-776,turtonator,,776,17,1,0,0,1,1076
-777,togedemaru,,777,17,1,0,0,1,1077
-778,mimikyu-disguised,disguised,778,17,1,0,0,1,1079
-779,bruxish,,779,17,1,0,0,1,1083
-780,drampa,,780,17,1,0,0,1,1084
-781,dhelmise,,781,17,1,0,0,1,1085
-782,jangmo-o,,782,17,1,0,0,1,1086
-783,hakamo-o,,783,17,1,0,0,1,1087
-784,kommo-o,,784,17,1,0,0,1,1088
-785,tapu-koko,,785,17,1,0,0,1,1090
-786,tapu-lele,,786,17,1,0,0,1,1091
-787,tapu-bulu,,787,17,1,0,0,1,1092
-788,tapu-fini,,788,17,1,0,0,1,1093
-789,cosmog,,789,17,1,0,0,1,1094
-790,cosmoem,,790,17,1,0,0,1,1095
-791,solgaleo,,791,17,1,0,0,1,1096
-792,lunala,,792,17,1,0,0,1,1097
-793,nihilego,,793,17,1,0,0,1,1098
-794,buzzwole,,794,17,1,0,0,1,1099
-795,pheromosa,,795,17,1,0,0,1,1100
-796,xurkitree,,796,17,1,0,0,1,1101
-797,celesteela,,797,17,1,0,0,1,1102
-798,kartana,,798,17,1,0,0,1,1103
-799,guzzlord,,799,17,1,0,0,1,1104
-800,necrozma,,800,17,1,0,0,1,1105
-801,magearna,,801,17,1,0,0,1,1109
-802,marshadow,,802,17,1,0,0,1,1111
-803,poipole,,803,18,1,0,0,1,1112
-804,naganadel,,804,18,1,0,0,1,1113
-805,stakataka,,805,18,1,0,0,1,1114
-806,blacephalon,,806,18,1,0,0,1,1115
-807,zeraora,,807,18,1,0,0,1,1116
-10001,unown-b,b,201,3,0,0,0,2,278
-10002,unown-c,c,201,3,0,0,0,3,279
-10003,unown-d,d,201,3,0,0,0,4,280
-10004,unown-e,e,201,3,0,0,0,5,281
-10005,unown-f,f,201,3,0,0,0,6,282
-10006,unown-g,g,201,3,0,0,0,7,283
-10007,unown-h,h,201,3,0,0,0,8,284
-10008,unown-i,i,201,3,0,0,0,9,285
-10009,unown-j,j,201,3,0,0,0,10,286
-10010,unown-k,k,201,3,0,0,0,11,287
-10011,unown-l,l,201,3,0,0,0,12,288
-10012,unown-m,m,201,3,0,0,0,13,289
-10013,unown-n,n,201,3,0,0,0,14,290
-10014,unown-o,o,201,3,0,0,0,15,291
-10015,unown-p,p,201,3,0,0,0,16,292
-10016,unown-q,q,201,3,0,0,0,17,293
-10017,unown-r,r,201,3,0,0,0,18,294
-10018,unown-s,s,201,3,0,0,0,19,295
-10019,unown-t,t,201,3,0,0,0,20,296
-10020,unown-u,u,201,3,0,0,0,21,297
-10021,unown-v,v,201,3,0,0,0,22,298
-10022,unown-w,w,201,3,0,0,0,23,299
-10023,unown-x,x,201,3,0,0,0,24,300
-10024,unown-y,y,201,3,0,0,0,25,301
-10025,unown-z,z,201,3,0,0,0,26,302
-10026,unown-exclamation,exclamation,201,5,0,0,0,27,303
-10027,unown-question,question,201,5,0,0,0,28,304
-10028,castform-sunny,sunny,10013,5,1,1,0,2,469
-10029,castform-rainy,rainy,10014,5,1,1,0,3,470
-10030,castform-snowy,snowy,10015,5,1,1,0,4,471
-10031,deoxys-attack,attack,10001,7,1,0,0,2,519
-10032,deoxys-defense,defense,10002,7,1,0,0,3,520
-10033,deoxys-speed,speed,10003,6,1,0,0,4,521
-10034,burmy-sandy,sandy,412,8,0,0,0,2,546
-10035,burmy-trash,trash,412,8,0,0,0,3,547
-10036,wormadam-sandy,sandy,10004,8,1,0,0,2,549
-10037,wormadam-trash,trash,10005,8,1,0,0,3,550
-10038,cherrim-sunshine,sunshine,421,8,0,1,0,2,561
-10039,shellos-east,east,422,8,0,0,0,2,563
-10040,gastrodon-east,east,423,8,0,0,0,2,565
-10041,arceus-bug,bug,493,8,0,0,0,7,625
-10042,arceus-dark,dark,493,8,0,0,0,17,635
-10043,arceus-dragon,dragon,493,8,0,0,0,16,634
-10044,arceus-electric,electric,493,8,0,0,0,13,631
-10045,arceus-fighting,fighting,493,8,0,0,0,2,620
-10046,arceus-fire,fire,493,8,0,0,0,10,628
-10047,arceus-flying,flying,493,8,0,0,0,3,621
-10048,arceus-ghost,ghost,493,8,0,0,0,8,626
-10049,arceus-grass,grass,493,8,0,0,0,12,630
-10050,arceus-ground,ground,493,8,0,0,0,5,623
-10051,arceus-ice,ice,493,8,0,0,0,15,633
-10052,arceus-poison,poison,493,8,0,0,0,4,622
-10053,arceus-psychic,psychic,493,8,0,0,0,14,632
-10054,arceus-rock,rock,493,8,0,0,0,6,624
-10055,arceus-steel,steel,493,8,0,0,0,9,627
-10056,arceus-water,water,493,8,0,0,0,11,629
-10057,arceus-unknown,unknown,493,8,0,0,0,3,621
-10058,rotom-heat,heat,10008,9,1,0,0,2,599
-10059,rotom-wash,wash,10009,9,1,0,0,3,600
-10060,rotom-frost,frost,10010,9,1,0,0,4,601
-10061,rotom-fan,fan,10011,9,1,0,0,5,602
-10062,rotom-mow,mow,10012,9,1,0,0,6,603
-10063,giratina-origin,origin,10007,9,1,0,0,2,612
-10064,shaymin-sky,sky,10006,9,1,0,0,2,618
+173,cleffa,,173,3,1,0,0,1,62
+174,igglybuff,,174,3,1,0,0,1,69
+175,togepi,,175,3,1,0,0,1,254
+176,togetic,,176,3,1,0,0,1,255
+177,natu,,177,3,1,0,0,1,257
+178,xatu,,178,3,1,0,0,1,258
+179,mareep,,179,3,1,0,0,1,259
+180,flaaffy,,180,3,1,0,0,1,260
+181,ampharos,,181,3,1,0,0,1,261
+182,bellossom,,182,3,1,0,0,1,78
+183,marill,,183,3,1,0,0,1,264
+184,azumarill,,184,3,1,0,0,1,265
+185,sudowoodo,,185,3,1,0,0,1,267
+186,politoed,,186,3,1,0,0,1,100
+187,hoppip,,187,3,1,0,0,1,268
+188,skiploom,,188,3,1,0,0,1,269
+189,jumpluff,,189,3,1,0,0,1,270
+190,aipom,,190,3,1,0,0,1,271
+191,sunkern,,191,3,1,0,0,1,273
+192,sunflora,,192,3,1,0,0,1,274
+193,yanma,,193,3,1,0,0,1,275
+194,wooper,,194,3,1,0,0,1,277
+195,quagsire,,195,3,1,0,0,1,278
+196,espeon,,196,3,1,0,0,1,209
+197,umbreon,,197,3,1,0,0,1,210
+198,murkrow,,198,3,1,0,0,1,279
+199,slowking,,199,3,1,0,0,1,124
+200,misdreavus,,200,3,1,0,0,1,281
+201,unown-a,a,201,3,1,0,0,1,283
+202,wobbuffet,,202,3,1,0,0,1,312
+203,girafarig,,203,3,1,0,0,1,313
+204,pineco,,204,3,1,0,0,1,314
+205,forretress,,205,3,1,0,0,1,315
+206,dunsparce,,206,3,1,0,0,1,316
+207,gligar,,207,3,1,0,0,1,317
+208,steelix,,208,3,1,0,0,1,144
+209,snubbull,,209,3,1,0,0,1,319
+210,granbull,,210,3,1,0,0,1,320
+211,qwilfish,,211,3,1,0,0,1,321
+212,scizor,,212,3,1,0,0,1,187
+213,shuckle,,213,3,1,0,0,1,322
+214,heracross,,214,3,1,0,0,1,323
+215,sneasel,,215,3,1,0,0,1,325
+216,teddiursa,,216,3,1,0,0,1,327
+217,ursaring,,217,3,1,0,0,1,328
+218,slugma,,218,3,1,0,0,1,329
+219,magcargo,,219,3,1,0,0,1,330
+220,swinub,,220,3,1,0,0,1,331
+221,piloswine,,221,3,1,0,0,1,332
+222,corsola,,222,3,1,0,0,1,334
+223,remoraid,,223,3,1,0,0,1,335
+224,octillery,,224,3,1,0,0,1,336
+225,delibird,,225,3,1,0,0,1,337
+226,mantine,,226,3,1,0,0,1,339
+227,skarmory,,227,3,1,0,0,1,340
+228,houndour,,228,3,1,0,0,1,341
+229,houndoom,,229,3,1,0,0,1,342
+230,kingdra,,230,3,1,0,0,1,179
+231,phanpy,,231,3,1,0,0,1,344
+232,donphan,,232,3,1,0,0,1,345
+233,porygon2,,233,3,1,0,0,1,215
+234,stantler,,234,3,1,0,0,1,346
+235,smeargle,,235,3,1,0,0,1,347
+236,tyrogue,,236,3,1,0,0,1,159
+237,hitmontop,,237,3,1,0,0,1,162
+238,smoochum,,238,3,1,0,0,1,189
+239,elekid,,239,3,1,0,0,1,191
+240,magby,,240,3,1,0,0,1,194
+241,miltank,,241,3,1,0,0,1,348
+242,blissey,,242,3,1,0,0,1,172
+243,raikou,,243,3,1,0,0,1,349
+244,entei,,244,3,1,0,0,1,350
+245,suicune,,245,3,1,0,0,1,351
+246,larvitar,,246,3,1,0,0,1,352
+247,pupitar,,247,3,1,0,0,1,353
+248,tyranitar,,248,3,1,0,0,1,354
+249,lugia,,249,3,1,0,0,1,356
+250,ho-oh,,250,3,1,0,0,1,357
+251,celebi,,251,3,1,0,0,1,358
+252,treecko,,252,5,1,0,0,1,359
+253,grovyle,,253,5,1,0,0,1,360
+254,sceptile,,254,5,1,0,0,1,361
+255,torchic,,255,5,1,0,0,1,363
+256,combusken,,256,5,1,0,0,1,364
+257,blaziken,,257,5,1,0,0,1,365
+258,mudkip,,258,5,1,0,0,1,367
+259,marshtomp,,259,5,1,0,0,1,368
+260,swampert,,260,5,1,0,0,1,369
+261,poochyena,,261,5,1,0,0,1,371
+262,mightyena,,262,5,1,0,0,1,372
+263,zigzagoon,,263,5,1,0,0,1,373
+264,linoone,,264,5,1,0,0,1,374
+265,wurmple,,265,5,1,0,0,1,375
+266,silcoon,,266,5,1,0,0,1,376
+267,beautifly,,267,5,1,0,0,1,377
+268,cascoon,,268,5,1,0,0,1,378
+269,dustox,,269,5,1,0,0,1,379
+270,lotad,,270,5,1,0,0,1,380
+271,lombre,,271,5,1,0,0,1,381
+272,ludicolo,,272,5,1,0,0,1,382
+273,seedot,,273,5,1,0,0,1,383
+274,nuzleaf,,274,5,1,0,0,1,384
+275,shiftry,,275,5,1,0,0,1,385
+276,taillow,,276,5,1,0,0,1,386
+277,swellow,,277,5,1,0,0,1,387
+278,wingull,,278,5,1,0,0,1,388
+279,pelipper,,279,5,1,0,0,1,389
+280,ralts,,280,5,1,0,0,1,390
+281,kirlia,,281,5,1,0,0,1,391
+282,gardevoir,,282,5,1,0,0,1,392
+283,surskit,,283,5,1,0,0,1,396
+284,masquerain,,284,5,1,0,0,1,397
+285,shroomish,,285,5,1,0,0,1,398
+286,breloom,,286,5,1,0,0,1,399
+287,slakoth,,287,5,1,0,0,1,400
+288,vigoroth,,288,5,1,0,0,1,401
+289,slaking,,289,5,1,0,0,1,402
+290,nincada,,290,5,1,0,0,1,403
+291,ninjask,,291,5,1,0,0,1,404
+292,shedinja,,292,5,1,0,0,1,405
+293,whismur,,293,5,1,0,0,1,406
+294,loudred,,294,5,1,0,0,1,407
+295,exploud,,295,5,1,0,0,1,408
+296,makuhita,,296,5,1,0,0,1,409
+297,hariyama,,297,5,1,0,0,1,410
+298,azurill,,298,5,1,0,0,1,263
+299,nosepass,,299,5,1,0,0,1,411
+300,skitty,,300,5,1,0,0,1,413
+301,delcatty,,301,5,1,0,0,1,414
+302,sableye,,302,5,1,0,0,1,415
+303,mawile,,303,5,1,0,0,1,417
+304,aron,,304,5,1,0,0,1,419
+305,lairon,,305,5,1,0,0,1,420
+306,aggron,,306,5,1,0,0,1,421
+307,meditite,,307,5,1,0,0,1,423
+308,medicham,,308,5,1,0,0,1,424
+309,electrike,,309,5,1,0,0,1,426
+310,manectric,,310,5,1,0,0,1,427
+311,plusle,,311,5,1,0,0,1,429
+312,minun,,312,5,1,0,0,1,430
+313,volbeat,,313,5,1,0,0,1,431
+314,illumise,,314,5,1,0,0,1,432
+315,roselia,,315,5,1,0,0,1,434
+316,gulpin,,316,5,1,0,0,1,436
+317,swalot,,317,5,1,0,0,1,437
+318,carvanha,,318,5,1,0,0,1,438
+319,sharpedo,,319,5,1,0,0,1,439
+320,wailmer,,320,5,1,0,0,1,441
+321,wailord,,321,5,1,0,0,1,442
+322,numel,,322,5,1,0,0,1,443
+323,camerupt,,323,5,1,0,0,1,444
+324,torkoal,,324,5,1,0,0,1,446
+325,spoink,,325,5,1,0,0,1,447
+326,grumpig,,326,5,1,0,0,1,448
+327,spinda,,327,5,1,0,0,1,449
+328,trapinch,,328,5,1,0,0,1,450
+329,vibrava,,329,5,1,0,0,1,451
+330,flygon,,330,5,1,0,0,1,452
+331,cacnea,,331,5,1,0,0,1,453
+332,cacturne,,332,5,1,0,0,1,454
+333,swablu,,333,5,1,0,0,1,455
+334,altaria,,334,5,1,0,0,1,456
+335,zangoose,,335,5,1,0,0,1,458
+336,seviper,,336,5,1,0,0,1,459
+337,lunatone,,337,5,1,0,0,1,460
+338,solrock,,338,5,1,0,0,1,461
+339,barboach,,339,5,1,0,0,1,462
+340,whiscash,,340,5,1,0,0,1,463
+341,corphish,,341,5,1,0,0,1,464
+342,crawdaunt,,342,5,1,0,0,1,465
+343,baltoy,,343,5,1,0,0,1,466
+344,claydol,,344,5,1,0,0,1,467
+345,lileep,,345,5,1,0,0,1,468
+346,cradily,,346,5,1,0,0,1,469
+347,anorith,,347,5,1,0,0,1,470
+348,armaldo,,348,5,1,0,0,1,471
+349,feebas,,349,5,1,0,0,1,472
+350,milotic,,350,5,1,0,0,1,473
+351,castform,,351,5,1,0,0,1,474
+352,kecleon,,352,5,1,0,0,1,478
+353,shuppet,,353,5,1,0,0,1,479
+354,banette,,354,5,1,0,0,1,480
+355,duskull,,355,5,1,0,0,1,482
+356,dusclops,,356,5,1,0,0,1,483
+357,tropius,,357,5,1,0,0,1,485
+358,chimecho,,358,5,1,0,0,1,487
+359,absol,,359,5,1,0,0,1,488
+360,wynaut,,360,5,1,0,0,1,311
+361,snorunt,,361,5,1,0,0,1,490
+362,glalie,,362,5,1,0,0,1,491
+363,spheal,,363,5,1,0,0,1,494
+364,sealeo,,364,5,1,0,0,1,495
+365,walrein,,365,5,1,0,0,1,496
+366,clamperl,,366,5,1,0,0,1,497
+367,huntail,,367,5,1,0,0,1,498
+368,gorebyss,,368,5,1,0,0,1,499
+369,relicanth,,369,5,1,0,0,1,500
+370,luvdisc,,370,5,1,0,0,1,501
+371,bagon,,371,5,1,0,0,1,502
+372,shelgon,,372,5,1,0,0,1,503
+373,salamence,,373,5,1,0,0,1,504
+374,beldum,,374,5,1,0,0,1,506
+375,metang,,375,5,1,0,0,1,507
+376,metagross,,376,5,1,0,0,1,508
+377,regirock,,377,5,1,0,0,1,510
+378,regice,,378,5,1,0,0,1,511
+379,registeel,,379,5,1,0,0,1,512
+380,latias,,380,5,1,0,0,1,513
+381,latios,,381,5,1,0,0,1,515
+382,kyogre,,382,5,1,0,0,1,517
+383,groudon,,383,5,1,0,0,1,519
+384,rayquaza,,384,5,1,0,0,1,521
+385,jirachi,,385,5,1,0,0,1,523
+386,deoxys-normal,normal,386,5,1,0,0,1,524
+387,turtwig,,387,8,1,0,0,1,528
+388,grotle,,388,8,1,0,0,1,529
+389,torterra,,389,8,1,0,0,1,530
+390,chimchar,,390,8,1,0,0,1,531
+391,monferno,,391,8,1,0,0,1,532
+392,infernape,,392,8,1,0,0,1,533
+393,piplup,,393,8,1,0,0,1,534
+394,prinplup,,394,8,1,0,0,1,535
+395,empoleon,,395,8,1,0,0,1,536
+396,starly,,396,8,1,0,0,1,537
+397,staravia,,397,8,1,0,0,1,538
+398,staraptor,,398,8,1,0,0,1,539
+399,bidoof,,399,8,1,0,0,1,540
+400,bibarel,,400,8,1,0,0,1,541
+401,kricketot,,401,8,1,0,0,1,542
+402,kricketune,,402,8,1,0,0,1,543
+403,shinx,,403,8,1,0,0,1,544
+404,luxio,,404,8,1,0,0,1,545
+405,luxray,,405,8,1,0,0,1,546
+406,budew,,406,8,1,0,0,1,433
+407,roserade,,407,8,1,0,0,1,435
+408,cranidos,,408,8,1,0,0,1,547
+409,rampardos,,409,8,1,0,0,1,548
+410,shieldon,,410,8,1,0,0,1,549
+411,bastiodon,,411,8,1,0,0,1,550
+412,burmy-plant,plant,412,8,1,0,0,1,551
+413,wormadam-plant,plant,413,8,1,0,0,1,554
+414,mothim-plant,plant,414,8,1,0,0,1,557
+415,combee,,415,8,1,0,0,1,560
+416,vespiquen,,416,8,1,0,0,1,561
+417,pachirisu,,417,8,1,0,0,1,562
+418,buizel,,418,8,1,0,0,1,563
+419,floatzel,,419,8,1,0,0,1,564
+420,cherubi,,420,8,1,0,0,1,565
+421,cherrim-overcast,overcast,421,8,1,0,0,1,566
+422,shellos-west,west,422,8,1,0,0,1,568
+423,gastrodon-west,west,423,8,1,0,0,1,570
+424,ambipom,,424,8,1,0,0,1,272
+425,drifloon,,425,8,1,0,0,1,572
+426,drifblim,,426,8,1,0,0,1,573
+427,buneary,,427,8,1,0,0,1,574
+428,lopunny,,428,8,1,0,0,1,575
+429,mismagius,,429,8,1,0,0,1,282
+430,honchkrow,,430,8,1,0,0,1,280
+431,glameow,,431,8,1,0,0,1,577
+432,purugly,,432,8,1,0,0,1,578
+433,chingling,,433,8,1,0,0,1,486
+434,stunky,,434,8,1,0,0,1,579
+435,skuntank,,435,8,1,0,0,1,580
+436,bronzor,,436,8,1,0,0,1,581
+437,bronzong,,437,8,1,0,0,1,582
+438,bonsly,,438,8,1,0,0,1,266
+439,mime-jr,,439,8,1,0,0,1,184
+440,happiny,,440,8,1,0,0,1,170
+441,chatot,,441,8,1,0,0,1,583
+442,spiritomb,,442,8,1,0,0,1,584
+443,gible,,443,8,1,0,0,1,585
+444,gabite,,444,8,1,0,0,1,586
+445,garchomp,,445,8,1,0,0,1,587
+446,munchlax,,446,8,1,0,0,1,223
+447,riolu,,447,8,1,0,0,1,589
+448,lucario,,448,8,1,0,0,1,590
+449,hippopotas,,449,8,1,0,0,1,592
+450,hippowdon,,450,8,1,0,0,1,593
+451,skorupi,,451,8,1,0,0,1,594
+452,drapion,,452,8,1,0,0,1,595
+453,croagunk,,453,8,1,0,0,1,596
+454,toxicroak,,454,8,1,0,0,1,597
+455,carnivine,,455,8,1,0,0,1,598
+456,finneon,,456,8,1,0,0,1,599
+457,lumineon,,457,8,1,0,0,1,600
+458,mantyke,,458,8,1,0,0,1,338
+459,snover,,459,8,1,0,0,1,601
+460,abomasnow,,460,8,1,0,0,1,602
+461,weavile,,461,8,1,0,0,1,326
+462,magnezone,,462,8,1,0,0,1,127
+463,lickilicky,,463,8,1,0,0,1,164
+464,rhyperior,,464,8,1,0,0,1,169
+465,tangrowth,,465,8,1,0,0,1,174
+466,electivire,,466,8,1,0,0,1,193
+467,magmortar,,467,8,1,0,0,1,196
+468,togekiss,,468,8,1,0,0,1,256
+469,yanmega,,469,8,1,0,0,1,276
+470,leafeon,,470,8,1,0,0,1,211
+471,glaceon,,471,8,1,0,0,1,212
+472,gliscor,,472,8,1,0,0,1,318
+473,mamoswine,,473,8,1,0,0,1,333
+474,porygon-z,,474,8,1,0,0,1,216
+475,gallade,,475,8,1,0,0,1,394
+476,probopass,,476,8,1,0,0,1,412
+477,dusknoir,,477,8,1,0,0,1,484
+478,froslass,,478,8,1,0,0,1,493
+479,rotom,,479,8,1,0,0,1,604
+480,uxie,,480,8,1,0,0,1,610
+481,mesprit,,481,8,1,0,0,1,611
+482,azelf,,482,8,1,0,0,1,612
+483,dialga,,483,8,1,0,0,1,613
+484,palkia,,484,8,1,0,0,1,614
+485,heatran,,485,8,1,0,0,1,615
+486,regigigas,,486,8,1,0,0,1,616
+487,giratina-altered,altered,487,8,1,0,0,1,617
+488,cresselia,,488,8,1,0,0,1,619
+489,phione,,489,8,1,0,0,1,620
+490,manaphy,,490,8,1,0,0,1,621
+491,darkrai,,491,8,1,0,0,1,622
+492,shaymin-land,land,492,8,1,0,0,1,623
+493,arceus-normal,normal,493,8,1,0,0,1,625
+494,victini,,494,11,1,0,0,1,644
+495,snivy,,495,11,1,0,0,1,645
+496,servine,,496,11,1,0,0,1,646
+497,serperior,,497,11,1,0,0,1,647
+498,tepig,,498,11,1,0,0,1,648
+499,pignite,,499,11,1,0,0,1,649
+500,emboar,,500,11,1,0,0,1,650
+501,oshawott,,501,11,1,0,0,1,651
+502,dewott,,502,11,1,0,0,1,652
+503,samurott,,503,11,1,0,0,1,653
+504,patrat,,504,11,1,0,0,1,654
+505,watchog,,505,11,1,0,0,1,655
+506,lillipup,,506,11,1,0,0,1,656
+507,herdier,,507,11,1,0,0,1,657
+508,stoutland,,508,11,1,0,0,1,658
+509,purrloin,,509,11,1,0,0,1,659
+510,liepard,,510,11,1,0,0,1,660
+511,pansage,,511,11,1,0,0,1,661
+512,simisage,,512,11,1,0,0,1,662
+513,pansear,,513,11,1,0,0,1,663
+514,simisear,,514,11,1,0,0,1,664
+515,panpour,,515,11,1,0,0,1,665
+516,simipour,,516,11,1,0,0,1,666
+517,munna,,517,11,1,0,0,1,667
+518,musharna,,518,11,1,0,0,1,668
+519,pidove,,519,11,1,0,0,1,669
+520,tranquill,,520,11,1,0,0,1,670
+521,unfezant,,521,11,1,0,0,1,671
+522,blitzle,,522,11,1,0,0,1,672
+523,zebstrika,,523,11,1,0,0,1,673
+524,roggenrola,,524,11,1,0,0,1,674
+525,boldore,,525,11,1,0,0,1,675
+526,gigalith,,526,11,1,0,0,1,676
+527,woobat,,527,11,1,0,0,1,677
+528,swoobat,,528,11,1,0,0,1,678
+529,drilbur,,529,11,1,0,0,1,679
+530,excadrill,,530,11,1,0,0,1,680
+531,audino,,531,11,1,0,0,1,681
+532,timburr,,532,11,1,0,0,1,683
+533,gurdurr,,533,11,1,0,0,1,684
+534,conkeldurr,,534,11,1,0,0,1,685
+535,tympole,,535,11,1,0,0,1,686
+536,palpitoad,,536,11,1,0,0,1,687
+537,seismitoad,,537,11,1,0,0,1,688
+538,throh,,538,11,1,0,0,1,689
+539,sawk,,539,11,1,0,0,1,690
+540,sewaddle,,540,11,1,0,0,1,691
+541,swadloon,,541,11,1,0,0,1,692
+542,leavanny,,542,11,1,0,0,1,693
+543,venipede,,543,11,1,0,0,1,694
+544,whirlipede,,544,11,1,0,0,1,695
+545,scolipede,,545,11,1,0,0,1,696
+546,cottonee,,546,11,1,0,0,1,697
+547,whimsicott,,547,11,1,0,0,1,698
+548,petilil,,548,11,1,0,0,1,699
+549,lilligant,,549,11,1,0,0,1,700
+550,basculin-red-striped,red-striped,550,11,1,0,0,1,701
+551,sandile,,551,11,1,0,0,1,703
+552,krokorok,,552,11,1,0,0,1,704
+553,krookodile,,553,11,1,0,0,1,705
+554,darumaka,,554,11,1,0,0,1,706
+555,darmanitan-standard,standard,555,11,1,0,0,1,707
+556,maractus,,556,11,1,0,0,1,709
+557,dwebble,,557,11,1,0,0,1,710
+558,crustle,,558,11,1,0,0,1,711
+559,scraggy,,559,11,1,0,0,1,712
+560,scrafty,,560,11,1,0,0,1,713
+561,sigilyph,,561,11,1,0,0,1,714
+562,yamask,,562,11,1,0,0,1,715
+563,cofagrigus,,563,11,1,0,0,1,716
+564,tirtouga,,564,11,1,0,0,1,717
+565,carracosta,,565,11,1,0,0,1,718
+566,archen,,566,11,1,0,0,1,719
+567,archeops,,567,11,1,0,0,1,720
+568,trubbish,,568,11,1,0,0,1,721
+569,garbodor,,569,11,1,0,0,1,722
+570,zorua,,570,11,1,0,0,1,723
+571,zoroark,,571,11,1,0,0,1,724
+572,minccino,,572,11,1,0,0,1,725
+573,cinccino,,573,11,1,0,0,1,726
+574,gothita,,574,11,1,0,0,1,727
+575,gothorita,,575,11,1,0,0,1,728
+576,gothitelle,,576,11,1,0,0,1,729
+577,solosis,,577,11,1,0,0,1,730
+578,duosion,,578,11,1,0,0,1,731
+579,reuniclus,,579,11,1,0,0,1,732
+580,ducklett,,580,11,1,0,0,1,733
+581,swanna,,581,11,1,0,0,1,734
+582,vanillite,,582,11,1,0,0,1,735
+583,vanillish,,583,11,1,0,0,1,736
+584,vanilluxe,,584,11,1,0,0,1,737
+585,deerling-spring,spring,585,11,1,0,0,1,738
+586,sawsbuck-spring,spring,586,11,1,0,0,1,742
+587,emolga,,587,11,1,0,0,1,746
+588,karrablast,,588,11,1,0,0,1,747
+589,escavalier,,589,11,1,0,0,1,748
+590,foongus,,590,11,1,0,0,1,749
+591,amoonguss,,591,11,1,0,0,1,750
+592,frillish,,592,11,1,0,0,1,751
+593,jellicent,,593,11,1,0,0,1,752
+594,alomomola,,594,11,1,0,0,1,753
+595,joltik,,595,11,1,0,0,1,754
+596,galvantula,,596,11,1,0,0,1,755
+597,ferroseed,,597,11,1,0,0,1,756
+598,ferrothorn,,598,11,1,0,0,1,757
+599,klink,,599,11,1,0,0,1,758
+600,klang,,600,11,1,0,0,1,759
+601,klinklang,,601,11,1,0,0,1,760
+602,tynamo,,602,11,1,0,0,1,761
+603,eelektrik,,603,11,1,0,0,1,762
+604,eelektross,,604,11,1,0,0,1,763
+605,elgyem,,605,11,1,0,0,1,764
+606,beheeyem,,606,11,1,0,0,1,765
+607,litwick,,607,11,1,0,0,1,766
+608,lampent,,608,11,1,0,0,1,767
+609,chandelure,,609,11,1,0,0,1,768
+610,axew,,610,11,1,0,0,1,769
+611,fraxure,,611,11,1,0,0,1,770
+612,haxorus,,612,11,1,0,0,1,771
+613,cubchoo,,613,11,1,0,0,1,772
+614,beartic,,614,11,1,0,0,1,773
+615,cryogonal,,615,11,1,0,0,1,774
+616,shelmet,,616,11,1,0,0,1,775
+617,accelgor,,617,11,1,0,0,1,776
+618,stunfisk,,618,11,1,0,0,1,777
+619,mienfoo,,619,11,1,0,0,1,778
+620,mienshao,,620,11,1,0,0,1,779
+621,druddigon,,621,11,1,0,0,1,780
+622,golett,,622,11,1,0,0,1,781
+623,golurk,,623,11,1,0,0,1,782
+624,pawniard,,624,11,1,0,0,1,783
+625,bisharp,,625,11,1,0,0,1,784
+626,bouffalant,,626,11,1,0,0,1,785
+627,rufflet,,627,11,1,0,0,1,786
+628,braviary,,628,11,1,0,0,1,787
+629,vullaby,,629,11,1,0,0,1,788
+630,mandibuzz,,630,11,1,0,0,1,789
+631,heatmor,,631,11,1,0,0,1,790
+632,durant,,632,11,1,0,0,1,791
+633,deino,,633,11,1,0,0,1,792
+634,zweilous,,634,11,1,0,0,1,793
+635,hydreigon,,635,11,1,0,0,1,794
+636,larvesta,,636,11,1,0,0,1,795
+637,volcarona,,637,11,1,0,0,1,796
+638,cobalion,,638,11,1,0,0,1,797
+639,terrakion,,639,11,1,0,0,1,798
+640,virizion,,640,11,1,0,0,1,799
+641,tornadus-incarnate,incarnate,641,11,1,0,0,1,800
+642,thundurus-incarnate,incarnate,642,11,1,0,0,1,802
+643,reshiram,,643,11,1,0,0,1,804
+644,zekrom,,644,11,1,0,0,1,805
+645,landorus-incarnate,incarnate,645,11,1,0,0,1,806
+646,kyurem,,646,11,1,0,0,1,808
+647,keldeo-ordinary,ordinary,647,11,1,0,0,1,811
+648,meloetta-aria,aria,648,11,1,0,0,1,813
+649,genesect,,649,11,1,0,0,1,815
+650,chespin,,650,15,1,0,0,1,820
+651,quilladin,,651,15,1,0,0,1,821
+652,chesnaught,,652,15,1,0,0,1,822
+653,fennekin,,653,15,1,0,0,1,823
+654,braixen,,654,15,1,0,0,1,824
+655,delphox,,655,15,1,0,0,1,825
+656,froakie,,656,15,1,0,0,1,826
+657,frogadier,,657,15,1,0,0,1,827
+658,greninja,,658,15,1,0,0,1,828
+659,bunnelby,,659,15,1,0,0,1,831
+660,diggersby,,660,15,1,0,0,1,832
+661,fletchling,,661,15,1,0,0,1,833
+662,fletchinder,,662,15,1,0,0,1,834
+663,talonflame,,663,15,1,0,0,1,835
+664,scatterbug-icy-snow,icy-snow,664,15,1,0,0,1,836
+665,spewpa-icy-snow,icy-snow,665,15,1,0,0,1,856
+666,vivillon-meadow,meadow,666,15,0,0,0,7,882
+667,litleo,,667,15,1,0,0,1,896
+668,pyroar,,668,15,1,0,0,1,897
+669,flabebe-red,red,669,15,1,0,0,1,898
+670,floette-red,red,670,15,1,0,0,1,903
+671,florges-red,red,671,15,1,0,0,1,909
+672,skiddo,,672,15,1,0,0,1,914
+673,gogoat,,673,15,1,0,0,1,915
+674,pancham,,674,15,1,0,0,1,916
+675,pangoro,,675,15,1,0,0,1,917
+676,furfrou-natural,natural,676,15,1,0,0,1,918
+677,espurr,,677,15,1,0,0,1,928
+678,meowstic-male,male,678,15,1,0,0,1,929
+679,honedge,,679,15,1,0,0,1,931
+680,doublade,,680,15,1,0,0,1,932
+681,aegislash-shield,shield,681,15,1,0,0,1,933
+682,spritzee,,682,15,1,0,0,1,935
+683,aromatisse,,683,15,1,0,0,1,936
+684,swirlix,,684,15,1,0,0,1,937
+685,slurpuff,,685,15,1,0,0,1,938
+686,inkay,,686,15,1,0,0,1,939
+687,malamar,,687,15,1,0,0,1,940
+688,binacle,,688,15,1,0,0,1,941
+689,barbaracle,,689,15,1,0,0,1,942
+690,skrelp,,690,15,1,0,0,1,943
+691,dragalge,,691,15,1,0,0,1,944
+692,clauncher,,692,15,1,0,0,1,945
+693,clawitzer,,693,15,1,0,0,1,946
+694,helioptile,,694,15,1,0,0,1,947
+695,heliolisk,,695,15,1,0,0,1,948
+696,tyrunt,,696,15,1,0,0,1,949
+697,tyrantrum,,697,15,1,0,0,1,950
+698,amaura,,698,15,1,0,0,1,951
+699,aurorus,,699,15,1,0,0,1,952
+700,sylveon,,700,15,1,0,0,1,213
+701,hawlucha,,701,15,1,0,0,1,953
+702,dedenne,,702,15,1,0,0,1,954
+703,carbink,,703,15,1,0,0,1,955
+704,goomy,,704,15,1,0,0,1,956
+705,sliggoo,,705,15,1,0,0,1,957
+706,goodra,,706,15,1,0,0,1,958
+707,klefki,,707,15,1,0,0,1,959
+708,phantump,,708,15,1,0,0,1,960
+709,trevenant,,709,15,1,0,0,1,961
+710,pumpkaboo-average,average,710,15,1,0,0,1,962
+711,gourgeist-average,average,711,15,1,0,0,1,966
+712,bergmite,,712,15,1,0,0,1,970
+713,avalugg,,713,15,1,0,0,1,971
+714,noibat,,714,15,1,0,0,1,972
+715,noivern,,715,15,1,0,0,1,973
+716,xerneas-active,active,716,15,0,1,0,2,975
+717,yveltal,,717,15,1,0,0,1,976
+718,zygarde,,718,15,1,0,0,1,977
+719,diancie,,719,15,1,0,0,1,981
+720,hoopa,confined,720,15,1,0,0,1,983
+721,volcanion,,721,15,1,0,0,1,985
+722,rowlet,,722,17,1,0,0,1,986
+723,dartrix,,723,17,1,0,0,1,987
+724,decidueye,,724,17,1,0,0,1,988
+725,litten,,725,17,1,0,0,1,989
+726,torracat,,726,17,1,0,0,1,990
+727,incineroar,,727,17,1,0,0,1,991
+728,popplio,,728,17,1,0,0,1,992
+729,brionne,,729,17,1,0,0,1,993
+730,primarina,,730,17,1,0,0,1,994
+731,pikipek,,731,17,1,0,0,1,995
+732,trumbeak,,732,17,1,0,0,1,996
+733,toucannon,,733,17,1,0,0,1,997
+734,yungoos,,734,17,1,0,0,1,998
+735,gumshoos,,735,17,1,0,0,1,999
+736,grubbin,,736,17,1,0,0,1,1001
+737,charjabug,,737,17,1,0,0,1,1002
+738,vikavolt,,738,17,1,0,0,1,1003
+739,crabrawler,,739,17,1,0,0,1,1005
+740,crabominable,,740,17,1,0,0,1,1006
+741,oricorio-baile,baile,741,17,1,0,0,1,1007
+742,cutiefly,,742,17,1,0,0,1,1011
+743,ribombee,,743,17,1,0,0,1,1012
+744,rockruff,,744,17,1,0,0,1,1014
+745,lycanroc-midday,midday,745,17,1,0,0,1,1016
+746,wishiwashi-solo,solo,746,17,1,0,0,1,1019
+747,mareanie,,747,17,1,0,0,1,1021
+748,toxapex,,748,17,1,0,0,1,1022
+749,mudbray,,749,17,1,0,0,1,1023
+750,mudsdale,,750,17,1,0,0,1,1024
+751,dewpider,,751,17,1,0,0,1,1025
+752,araquanid,,752,17,1,0,0,1,1026
+753,fomantis,,753,17,1,0,0,1,1028
+754,lurantis,,754,17,1,0,0,1,1029
+755,morelull,,755,17,1,0,0,1,1031
+756,shiinotic,,756,17,1,0,0,1,1032
+757,salandit,,757,17,1,0,0,1,1033
+758,salazzle,,758,17,1,0,0,1,1034
+759,stufful,,759,17,1,0,0,1,1036
+760,bewear,,760,17,1,0,0,1,1037
+761,bounsweet,,761,17,1,0,0,1,1038
+762,steenee,,762,17,1,0,0,1,1039
+763,tsareena,,763,17,1,0,0,1,1040
+764,comfey,,764,17,1,0,0,1,1041
+765,oranguru,,765,17,1,0,0,1,1042
+766,passimian,,766,17,1,0,0,1,1043
+767,wimpod,,767,17,1,0,0,1,1044
+768,golisopod,,768,17,1,0,0,1,1045
+769,sandygast,,769,17,1,0,0,1,1046
+770,palossand,,770,17,1,0,0,1,1047
+771,pyukumuku,,771,17,1,0,0,1,1048
+772,type-null,,772,17,1,0,0,1,1049
+773,silvally-normal,normal,773,17,1,0,0,1,1050
+774,minior-red-meteor,red-meteor,774,17,1,0,0,1,1068
+775,komala,,775,17,1,0,0,1,1082
+776,turtonator,,776,17,1,0,0,1,1083
+777,togedemaru,,777,17,1,0,0,1,1084
+778,mimikyu-disguised,disguised,778,17,1,0,0,1,1086
+779,bruxish,,779,17,1,0,0,1,1090
+780,drampa,,780,17,1,0,0,1,1091
+781,dhelmise,,781,17,1,0,0,1,1092
+782,jangmo-o,,782,17,1,0,0,1,1093
+783,hakamo-o,,783,17,1,0,0,1,1094
+784,kommo-o,,784,17,1,0,0,1,1095
+785,tapu-koko,,785,17,1,0,0,1,1097
+786,tapu-lele,,786,17,1,0,0,1,1098
+787,tapu-bulu,,787,17,1,0,0,1,1099
+788,tapu-fini,,788,17,1,0,0,1,1100
+789,cosmog,,789,17,1,0,0,1,1101
+790,cosmoem,,790,17,1,0,0,1,1102
+791,solgaleo,,791,17,1,0,0,1,1103
+792,lunala,,792,17,1,0,0,1,1104
+793,nihilego,,793,17,1,0,0,1,1105
+794,buzzwole,,794,17,1,0,0,1,1106
+795,pheromosa,,795,17,1,0,0,1,1107
+796,xurkitree,,796,17,1,0,0,1,1108
+797,celesteela,,797,17,1,0,0,1,1109
+798,kartana,,798,17,1,0,0,1,1110
+799,guzzlord,,799,17,1,0,0,1,1111
+800,necrozma,,800,17,1,0,0,1,1112
+801,magearna,,801,17,1,0,0,1,1116
+802,marshadow,,802,17,1,0,0,1,1118
+803,poipole,,803,18,1,0,0,1,1119
+804,naganadel,,804,18,1,0,0,1,1120
+805,stakataka,,805,18,1,0,0,1,1121
+806,blacephalon,,806,18,1,0,0,1,1122
+807,zeraora,,807,18,1,0,0,1,1123
+10001,unown-b,b,201,3,0,0,0,2,284
+10002,unown-c,c,201,3,0,0,0,3,285
+10003,unown-d,d,201,3,0,0,0,4,286
+10004,unown-e,e,201,3,0,0,0,5,287
+10005,unown-f,f,201,3,0,0,0,6,288
+10006,unown-g,g,201,3,0,0,0,7,289
+10007,unown-h,h,201,3,0,0,0,8,290
+10008,unown-i,i,201,3,0,0,0,9,291
+10009,unown-j,j,201,3,0,0,0,10,292
+10010,unown-k,k,201,3,0,0,0,11,293
+10011,unown-l,l,201,3,0,0,0,12,294
+10012,unown-m,m,201,3,0,0,0,13,295
+10013,unown-n,n,201,3,0,0,0,14,296
+10014,unown-o,o,201,3,0,0,0,15,297
+10015,unown-p,p,201,3,0,0,0,16,298
+10016,unown-q,q,201,3,0,0,0,17,299
+10017,unown-r,r,201,3,0,0,0,18,300
+10018,unown-s,s,201,3,0,0,0,19,301
+10019,unown-t,t,201,3,0,0,0,20,302
+10020,unown-u,u,201,3,0,0,0,21,303
+10021,unown-v,v,201,3,0,0,0,22,304
+10022,unown-w,w,201,3,0,0,0,23,305
+10023,unown-x,x,201,3,0,0,0,24,306
+10024,unown-y,y,201,3,0,0,0,25,307
+10025,unown-z,z,201,3,0,0,0,26,308
+10026,unown-exclamation,exclamation,201,5,0,0,0,27,309
+10027,unown-question,question,201,5,0,0,0,28,310
+10028,castform-sunny,sunny,10013,5,1,1,0,2,475
+10029,castform-rainy,rainy,10014,5,1,1,0,3,476
+10030,castform-snowy,snowy,10015,5,1,1,0,4,477
+10031,deoxys-attack,attack,10001,7,1,0,0,2,525
+10032,deoxys-defense,defense,10002,7,1,0,0,3,526
+10033,deoxys-speed,speed,10003,6,1,0,0,4,527
+10034,burmy-sandy,sandy,412,8,0,0,0,2,552
+10035,burmy-trash,trash,412,8,0,0,0,3,553
+10036,wormadam-sandy,sandy,10004,8,1,0,0,2,555
+10037,wormadam-trash,trash,10005,8,1,0,0,3,556
+10038,cherrim-sunshine,sunshine,421,8,0,1,0,2,567
+10039,shellos-east,east,422,8,0,0,0,2,569
+10040,gastrodon-east,east,423,8,0,0,0,2,571
+10041,arceus-bug,bug,493,8,0,0,0,7,631
+10042,arceus-dark,dark,493,8,0,0,0,17,641
+10043,arceus-dragon,dragon,493,8,0,0,0,16,640
+10044,arceus-electric,electric,493,8,0,0,0,13,637
+10045,arceus-fighting,fighting,493,8,0,0,0,2,626
+10046,arceus-fire,fire,493,8,0,0,0,10,634
+10047,arceus-flying,flying,493,8,0,0,0,3,627
+10048,arceus-ghost,ghost,493,8,0,0,0,8,632
+10049,arceus-grass,grass,493,8,0,0,0,12,636
+10050,arceus-ground,ground,493,8,0,0,0,5,629
+10051,arceus-ice,ice,493,8,0,0,0,15,639
+10052,arceus-poison,poison,493,8,0,0,0,4,628
+10053,arceus-psychic,psychic,493,8,0,0,0,14,638
+10054,arceus-rock,rock,493,8,0,0,0,6,630
+10055,arceus-steel,steel,493,8,0,0,0,9,633
+10056,arceus-water,water,493,8,0,0,0,11,635
+10057,arceus-unknown,unknown,493,8,0,0,0,10001,643
+10058,rotom-heat,heat,10008,9,1,0,0,2,605
+10059,rotom-wash,wash,10009,9,1,0,0,3,606
+10060,rotom-frost,frost,10010,9,1,0,0,4,607
+10061,rotom-fan,fan,10011,9,1,0,0,5,608
+10062,rotom-mow,mow,10012,9,1,0,0,6,609
+10063,giratina-origin,origin,10007,9,1,0,0,2,618
+10064,shaymin-sky,sky,10006,9,1,0,0,2,624
 10065,pichu-spiky-eared,spiky-eared,172,10,0,0,0,2,35
-10066,basculin-blue-striped,blue-striped,10016,11,1,0,0,2,695
-10067,darmanitan-zen,zen,10017,11,1,1,0,2,701
-10068,deerling-summer,summer,585,11,0,0,0,2,732
-10069,deerling-autumn,autumn,585,11,0,0,0,3,733
-10070,deerling-winter,winter,585,11,0,0,0,4,734
-10071,sawsbuck-summer,summer,586,11,0,0,0,2,736
-10072,sawsbuck-autumn,autumn,586,11,0,0,0,3,737
-10073,sawsbuck-winter,winter,586,11,0,0,0,4,738
-10074,meloetta-pirouette,pirouette,10018,11,1,1,0,2,807
-10075,genesect-douse,douse,649,11,0,0,0,2,809
-10076,genesect-shock,shock,649,11,0,0,0,3,810
-10077,genesect-burn,burn,649,11,0,0,0,4,811
-10078,genesect-chill,chill,649,11,0,0,0,5,812
-10079,tornadus-therian,therian,10019,14,1,0,0,2,794
-10080,thundurus-therian,therian,10020,14,1,0,0,2,796
-10081,landorus-therian,therian,10021,14,1,0,0,2,800
-10082,kyurem-black,black,10022,14,1,0,0,3,803
-10083,kyurem-white,white,10023,14,1,0,0,2,802
-10084,keldeo-resolute,resolute,10024,14,1,0,0,2,805
-10085,arceus-fairy,fairy,493,15,0,0,0,18,636
-10086,vivillon-icy-snow,icy-snow,666,15,1,0,0,1,869
-10087,vivillon-polar,polar,666,15,0,0,0,2,870
-10088,vivillon-tundra,tundra,666,15,0,0,0,3,871
-10089,vivillon-continental,continental,666,15,0,0,0,4,872
-10090,vivillon-garden,garden,666,15,0,0,0,5,873
-10091,vivillon-elegant,elegant,666,15,0,0,0,6,874
-10092,vivillon-modern,modern,666,15,0,0,0,8,876
-10093,vivillon-marine,marine,666,15,0,0,0,9,877
-10094,vivillon-archipelago,archipelago,666,15,0,0,0,10,878
-10095,vivillon-high-plains,high-plains,666,15,0,0,0,11,879
-10096,vivillon-sandstorm,sandstorm,666,15,0,0,0,12,880
-10097,vivillon-river,river,666,15,0,0,0,13,881
-10098,vivillon-monsoon,monsoon,666,15,0,0,0,14,882
-10099,vivillon-savanna,savanna,666,15,0,0,0,15,883
-10100,vivillon-sun,sun,666,15,0,0,0,16,884
-10101,vivillon-ocean,ocean,666,15,0,0,0,17,885
-10102,vivillon-jungle,jungle,666,15,0,0,0,18,886
-10103,flabebe-yellow,yellow,669,15,0,0,0,2,892
-10104,flabebe-orange,orange,669,15,0,0,0,3,893
-10105,flabebe-blue,blue,669,15,0,0,0,4,894
-10106,flabebe-white,white,669,15,0,0,0,5,895
-10107,floette-yellow,yellow,670,15,0,0,0,2,897
-10108,floette-orange,orange,670,15,0,0,0,3,898
-10109,floette-blue,blue,670,15,0,0,0,4,899
-10110,floette-white,white,670,15,0,0,0,5,900
-10111,florges-yellow,yellow,671,15,0,0,0,2,903
-10112,florges-orange,orange,671,15,0,0,0,3,904
-10113,florges-blue,blue,671,15,0,0,0,4,905
-10114,florges-white,white,671,15,0,0,0,5,906
-10115,furfrou-heart,heart,676,15,0,0,0,2,912
-10116,furfrou-star,star,676,15,0,0,0,3,913
-10117,furfrou-diamond,diamond,676,15,0,0,0,4,914
-10118,furfrou-debutante,debutante,676,15,0,0,0,5,915
-10119,furfrou-matron,matron,676,15,0,0,0,6,916
-10120,furfrou-dandy,dandy,676,15,0,0,0,7,917
-10121,furfrou-la-reine,la-reine,676,15,0,0,0,8,918
-10122,furfrou-kabuki,kabuki,676,15,0,0,0,9,919
-10123,furfrou-pharaoh,pharaoh,676,15,0,0,0,10,920
-10124,meowstic-female,female,10025,15,1,0,0,2,923
-10125,aegislash-blade,blade,10026,15,1,1,0,2,927
-10126,pumpkaboo-small,small,10027,15,1,0,0,2,956
-10127,pumpkaboo-large,large,10028,15,1,0,0,3,957
-10128,pumpkaboo-super,super,10029,15,1,0,0,4,958
-10129,gourgeist-small,small,10030,15,1,0,0,2,960
-10130,gourgeist-large,large,10031,15,1,0,0,3,961
-10131,gourgeist-super,super,10032,15,1,0,0,4,962
-10132,xerneas-neutral,neutral,716,15,1,0,0,1,967
+10066,basculin-blue-striped,blue-striped,10016,11,1,0,0,2,702
+10067,darmanitan-zen,zen,10017,11,1,1,0,2,708
+10068,deerling-summer,summer,585,11,0,0,0,2,739
+10069,deerling-autumn,autumn,585,11,0,0,0,3,740
+10070,deerling-winter,winter,585,11,0,0,0,4,741
+10071,sawsbuck-summer,summer,586,11,0,0,0,2,743
+10072,sawsbuck-autumn,autumn,586,11,0,0,0,3,744
+10073,sawsbuck-winter,winter,586,11,0,0,0,4,745
+10074,meloetta-pirouette,pirouette,10018,11,1,1,0,2,814
+10075,genesect-douse,douse,649,11,0,0,0,2,816
+10076,genesect-shock,shock,649,11,0,0,0,3,817
+10077,genesect-burn,burn,649,11,0,0,0,4,818
+10078,genesect-chill,chill,649,11,0,0,0,5,819
+10079,tornadus-therian,therian,10019,14,1,0,0,2,801
+10080,thundurus-therian,therian,10020,14,1,0,0,2,803
+10081,landorus-therian,therian,10021,14,1,0,0,2,807
+10082,kyurem-black,black,10022,14,1,0,0,3,810
+10083,kyurem-white,white,10023,14,1,0,0,2,809
+10084,keldeo-resolute,resolute,10024,14,1,0,0,2,812
+10085,arceus-fairy,fairy,493,15,0,0,0,18,642
+10086,vivillon-icy-snow,icy-snow,666,15,1,0,0,1,876
+10087,vivillon-polar,polar,666,15,0,0,0,2,877
+10088,vivillon-tundra,tundra,666,15,0,0,0,3,878
+10089,vivillon-continental,continental,666,15,0,0,0,4,879
+10090,vivillon-garden,garden,666,15,0,0,0,5,880
+10091,vivillon-elegant,elegant,666,15,0,0,0,6,881
+10092,vivillon-modern,modern,666,15,0,0,0,8,883
+10093,vivillon-marine,marine,666,15,0,0,0,9,884
+10094,vivillon-archipelago,archipelago,666,15,0,0,0,10,885
+10095,vivillon-high-plains,high-plains,666,15,0,0,0,11,886
+10096,vivillon-sandstorm,sandstorm,666,15,0,0,0,12,887
+10097,vivillon-river,river,666,15,0,0,0,13,888
+10098,vivillon-monsoon,monsoon,666,15,0,0,0,14,889
+10099,vivillon-savanna,savanna,666,15,0,0,0,15,890
+10100,vivillon-sun,sun,666,15,0,0,0,16,891
+10101,vivillon-ocean,ocean,666,15,0,0,0,17,892
+10102,vivillon-jungle,jungle,666,15,0,0,0,18,893
+10103,flabebe-yellow,yellow,669,15,0,0,0,2,899
+10104,flabebe-orange,orange,669,15,0,0,0,3,900
+10105,flabebe-blue,blue,669,15,0,0,0,4,901
+10106,flabebe-white,white,669,15,0,0,0,5,902
+10107,floette-yellow,yellow,670,15,0,0,0,2,904
+10108,floette-orange,orange,670,15,0,0,0,3,905
+10109,floette-blue,blue,670,15,0,0,0,4,906
+10110,floette-white,white,670,15,0,0,0,5,907
+10111,florges-yellow,yellow,671,15,0,0,0,2,910
+10112,florges-orange,orange,671,15,0,0,0,3,911
+10113,florges-blue,blue,671,15,0,0,0,4,912
+10114,florges-white,white,671,15,0,0,0,5,913
+10115,furfrou-heart,heart,676,15,0,0,0,2,919
+10116,furfrou-star,star,676,15,0,0,0,3,920
+10117,furfrou-diamond,diamond,676,15,0,0,0,4,921
+10118,furfrou-debutante,debutante,676,15,0,0,0,5,922
+10119,furfrou-matron,matron,676,15,0,0,0,6,923
+10120,furfrou-dandy,dandy,676,15,0,0,0,7,924
+10121,furfrou-la-reine,la-reine,676,15,0,0,0,8,925
+10122,furfrou-kabuki,kabuki,676,15,0,0,0,9,926
+10123,furfrou-pharaoh,pharaoh,676,15,0,0,0,10,927
+10124,meowstic-female,female,10025,15,1,0,0,2,930
+10125,aegislash-blade,blade,10026,15,1,1,0,2,934
+10126,pumpkaboo-small,small,10027,15,1,0,0,2,963
+10127,pumpkaboo-large,large,10028,15,1,0,0,3,964
+10128,pumpkaboo-super,super,10029,15,1,0,0,4,965
+10129,gourgeist-small,small,10030,15,1,0,0,2,967
+10130,gourgeist-large,large,10031,15,1,0,0,3,968
+10131,gourgeist-super,super,10032,15,1,0,0,4,969
+10132,xerneas-neutral,neutral,716,15,1,0,0,1,974
 10133,venusaur-mega,mega,10033,15,1,1,1,2,4
 10134,charizard-mega-x,mega-x,10034,15,1,1,1,2,8
 10135,charizard-mega-y,mega-y,10035,15,1,1,1,3,9
 10136,blastoise-mega,mega,10036,15,1,1,1,2,13
-10137,alakazam-mega,mega,10037,15,1,1,1,2,98
-10138,gengar-mega,mega,10038,15,1,1,1,2,136
-10139,kangaskhan-mega,mega,10039,15,1,1,1,2,170
-10140,pinsir-mega,mega,10040,15,1,1,1,2,192
-10141,gyarados-mega,mega,10041,15,1,1,1,2,196
-10142,aerodactyl-mega,mega,10042,15,1,1,1,2,216
-10143,mewtwo-mega-x,mega-x,10043,15,1,1,1,2,226
-10144,mewtwo-mega-y,mega-y,10044,15,1,1,1,3,227
-10145,ampharos-mega,mega,10045,15,1,1,1,2,256
-10146,scizor-mega,mega,10046,15,1,1,1,2,182
-10147,heracross-mega,mega,10047,15,1,1,1,2,318
-10148,houndoom-mega,mega,10048,15,1,1,1,2,337
-10149,tyranitar-mega,mega,10049,15,1,1,1,2,349
-10150,blaziken-mega,mega,10050,15,1,1,1,2,360
-10151,gardevoir-mega,mega,10051,15,1,1,1,2,387
-10152,mawile-mega,mega,10052,15,1,1,1,2,412
-10153,aggron-mega,mega,10053,15,1,1,1,2,416
-10154,medicham-mega,mega,10054,15,1,1,1,2,419
-10155,manectric-mega,mega,10055,15,1,1,1,2,422
-10156,banette-mega,mega,10056,15,1,1,1,2,475
-10157,absol-mega,mega,10057,15,1,1,1,2,483
-10158,garchomp-mega,mega,10058,15,1,1,1,2,582
-10159,lucario-mega,mega,10059,15,1,1,1,2,585
-10160,abomasnow-mega,mega,10060,15,1,1,1,2,597
-10161,vivillon-fancy,fancy,666,15,0,0,0,19,887
-10162,vivillon-poke-ball,poke-ball,666,15,0,0,0,20,888
-10163,floette-eternal,eternal,10061,15,1,0,0,6,901
-10164,latias-mega,mega,10062,15,1,1,1,2,508
-10165,latios-mega,mega,10063,15,1,1,1,2,510
-10166,swampert-mega,mega,10064,16,1,1,1,2,364
-10167,sceptile-mega,mega,10065,16,1,1,1,2,356
-10168,sableye-mega,mega,10066,16,1,1,1,2,410
-10169,altaria-mega,mega,10067,16,1,1,1,2,451
-10170,gallade-mega,mega,10068,16,1,1,1,2,389
-10171,audino-mega,mega,10069,16,1,1,1,2,675
-10172,sharpedo-mega,mega,10070,16,1,1,1,2,434
-10173,slowbro-mega,mega,10071,16,1,1,1,2,117
-10174,steelix-mega,mega,10072,16,1,1,1,2,139
+10137,alakazam-mega,mega,10037,15,1,1,1,2,104
+10138,gengar-mega,mega,10038,15,1,1,1,2,142
+10139,kangaskhan-mega,mega,10039,15,1,1,1,2,176
+10140,pinsir-mega,mega,10040,15,1,1,1,2,198
+10141,gyarados-mega,mega,10041,15,1,1,1,2,202
+10142,aerodactyl-mega,mega,10042,15,1,1,1,2,222
+10143,mewtwo-mega-x,mega-x,10043,15,1,1,1,2,232
+10144,mewtwo-mega-y,mega-y,10044,15,1,1,1,3,233
+10145,ampharos-mega,mega,10045,15,1,1,1,2,262
+10146,scizor-mega,mega,10046,15,1,1,1,2,188
+10147,heracross-mega,mega,10047,15,1,1,1,2,324
+10148,houndoom-mega,mega,10048,15,1,1,1,2,343
+10149,tyranitar-mega,mega,10049,15,1,1,1,2,355
+10150,blaziken-mega,mega,10050,15,1,1,1,2,366
+10151,gardevoir-mega,mega,10051,15,1,1,1,2,393
+10152,mawile-mega,mega,10052,15,1,1,1,2,418
+10153,aggron-mega,mega,10053,15,1,1,1,2,422
+10154,medicham-mega,mega,10054,15,1,1,1,2,425
+10155,manectric-mega,mega,10055,15,1,1,1,2,428
+10156,banette-mega,mega,10056,15,1,1,1,2,481
+10157,absol-mega,mega,10057,15,1,1,1,2,489
+10158,garchomp-mega,mega,10058,15,1,1,1,2,588
+10159,lucario-mega,mega,10059,15,1,1,1,2,591
+10160,abomasnow-mega,mega,10060,15,1,1,1,2,603
+10161,vivillon-fancy,fancy,666,15,0,0,0,19,894
+10162,vivillon-poke-ball,poke-ball,666,15,0,0,0,20,895
+10163,floette-eternal,eternal,10061,15,1,0,0,6,908
+10164,latias-mega,mega,10062,15,1,1,1,2,514
+10165,latios-mega,mega,10063,15,1,1,1,2,516
+10166,swampert-mega,mega,10064,16,1,1,1,2,370
+10167,sceptile-mega,mega,10065,16,1,1,1,2,362
+10168,sableye-mega,mega,10066,16,1,1,1,2,416
+10169,altaria-mega,mega,10067,16,1,1,1,2,457
+10170,gallade-mega,mega,10068,16,1,1,1,2,395
+10171,audino-mega,mega,10069,16,1,1,1,2,682
+10172,sharpedo-mega,mega,10070,16,1,1,1,2,440
+10173,slowbro-mega,mega,10071,16,1,1,1,2,123
+10174,steelix-mega,mega,10072,16,1,1,1,2,145
 10175,pidgeot-mega,mega,10073,16,1,1,1,2,24
-10176,glalie-mega,mega,10074,16,1,1,1,2,486
-10177,diancie-mega,mega,10075,16,1,1,1,2,975
-10178,metagross-mega,mega,10076,16,1,1,1,2,503
-10179,kyogre-primal,primal,10077,16,1,1,0,2,512
-10180,groudon-primal,primal,10078,16,1,1,0,2,514
-10181,rayquaza-mega,mega,10079,16,1,1,1,2,516
+10176,glalie-mega,mega,10074,16,1,1,1,2,492
+10177,diancie-mega,mega,10075,16,1,1,1,2,982
+10178,metagross-mega,mega,10076,16,1,1,1,2,509
+10179,kyogre-primal,primal,10077,16,1,1,0,2,518
+10180,groudon-primal,primal,10078,16,1,1,0,2,520
+10181,rayquaza-mega,mega,10079,16,1,1,1,2,522
 10182,pikachu-rock-star,rock-star,10080,16,1,0,0,3,38
 10183,pikachu-belle,belle,10081,16,1,0,0,4,39
 10184,pikachu-pop-star,pop-star,10082,16,1,0,0,5,40
 10185,pikachu-phd,phd,10083,16,1,0,0,6,41
 10186,pikachu-libre,libre,10084,16,1,0,0,7,42
 10187,pikachu-cosplay,cosplay,10085,16,1,0,0,2,37
-10188,hoopa-unbound,unbound,10086,16,1,0,0,2,977
-10189,camerupt-mega,mega,10087,16,1,1,1,2,439
-10190,lopunny-mega,mega,10088,16,1,1,1,2,570
-10191,salamence-mega,mega,10089,16,1,1,1,2,499
+10188,hoopa-unbound,unbound,10086,16,1,0,0,2,984
+10189,camerupt-mega,mega,10087,16,1,1,1,2,445
+10190,lopunny-mega,mega,10088,16,1,1,1,2,576
+10191,salamence-mega,mega,10089,16,1,1,1,2,505
 10192,beedrill-mega,mega,10090,16,1,1,1,2,20
 10193,rattata-alola,alola,10091,17,1,0,0,2,26
 10194,raticate-alola,alola,10092,17,1,0,0,2,28
 10195,raticate-totem-alola,totem-alola,10093,17,1,1,0,3,29
-10196,pikachu-original-cap,original-cap,10094,17,1,0,0,2,37
-10197,pikachu-hoenn-cap,hoenn-cap,10095,17,1,0,0,3,38
-10198,pikachu-sinnoh-cap,sinnoh-cap,10096,17,1,0,0,4,39
-10199,pikachu-unova-cap,unova-cap,10097,17,1,0,0,5,40
-10200,pikachu-kalos-cap,kalos-cap,10098,17,1,0,0,6,41
-10201,pikachu-alola-cap,alola-cap,10099,17,1,0,0,7,42
-10202,raichu-alola,alola,10100,17,1,0,0,2,45
-10203,sandshrew-alola,alola,10101,17,1,0,0,2,47
-10204,sandslash-alola,alola,10102,17,1,0,0,2,49
-10205,vulpix-alola,alola,10103,17,1,0,0,2,60
-10206,ninetales-alola,alola,10104,17,1,0,0,2,62
-10207,diglett-alola,alola,10105,17,1,0,0,2,78
-10208,dugtrio-alola,alola,10106,17,1,0,0,2,80
-10209,meowth-alola,alola,10107,17,1,0,0,2,82
-10210,persian-alola,alola,10108,17,1,0,0,2,84
-10211,geodude-alola,alola,10109,17,1,0,0,2,108
-10212,graveler-alola,alola,10110,17,1,0,0,2,110
-10213,golem-alola,alola,10111,17,1,0,0,2,112
-10214,grimer-alola,alola,10112,17,1,0,0,2,128
-10215,muk-alola,alola,10113,17,1,0,0,2,130
-10216,exeggutor-alola,alola,10114,17,1,0,0,2,148
-10217,marowak-alola,alola,10115,17,1,0,0,2,151
-10218,greninja-battle-bond,battle-bond,10116,17,1,0,0,2,822
-10219,greninja-ash,ash,10117,17,1,1,0,3,823
-10220,zygarde-10,10,10118,17,1,0,0,2,971
-10221,zygarde-50,50,10119,17,1,0,0,3,972
-10222,zygarde-complete,complete,10120,17,1,0,0,4,973
-10223,gumshoos-totem,totem,10121,17,1,1,0,2,993
-10224,vikavolt-totem,totem,10122,17,1,1,0,2,997
-10225,oricorio-pom-pom,pom-pom,10123,17,1,0,0,2,1001
-10226,oricorio-pau,pau,10124,17,1,0,0,3,1002
-10227,oricorio-sensu,sensu,10125,17,1,0,0,4,1003
-10228,lycanroc-midnight,midnight,10126,17,1,0,0,2,1010
-10229,wishiwashi-school,school,10127,17,1,1,0,2,1013
-10230,lurantis-totem,totem,10128,17,1,1,0,2,1023
-10231,salazzle-totem,totem,10129,17,1,1,0,2,1028
-10232,silvally-fighting,fighting,773,17,0,0,0,2,1044
-10233,silvally-flying,flying,773,17,0,0,0,3,1045
-10234,silvally-poison,poison,773,17,0,0,0,4,1046
-10235,silvally-ground,ground,773,17,0,0,0,5,1047
-10236,silvally-rock,rock,773,17,0,0,0,6,1048
-10237,silvally-bug,bug,773,17,0,0,0,7,1049
-10238,silvally-ghost,ghost,773,17,0,0,0,8,1050
-10239,silvally-steel,steel,773,17,0,0,0,9,1051
-10240,silvally-fire,fire,773,17,0,0,0,10,1052
-10241,silvally-water,water,773,17,0,0,0,11,1053
-10242,silvally-grass,grass,773,17,0,0,0,12,1054
-10243,silvally-electric,electric,773,17,0,0,0,13,1055
-10244,silvally-psychic,psychic,773,17,0,0,0,14,1056
-10245,silvally-ice,ice,773,17,0,0,0,15,1057
-10246,silvally-dragon,dragon,773,17,0,0,0,16,1058
-10247,silvally-dark,dark,773,17,0,0,0,17,1059
-10248,silvally-fairy,fairy,773,17,0,0,0,18,1060
-10249,minior-orange-meteor,orange-meteor,10130,17,1,1,0,2,1062
-10250,minior-yellow-meteor,yellow-meteor,10131,17,1,1,0,3,1063
-10251,minior-green-meteor,green-meteor,10132,17,1,1,0,4,1064
-10252,minior-blue-meteor,blue-meteor,10133,17,1,1,0,5,1065
-10253,minior-indigo-meteor,indigo-meteor,10134,17,1,1,0,6,1066
-10254,minior-violet-meteor,violet-meteor,10135,17,1,1,0,7,1067
-10255,minior-red,red,10136,17,1,0,0,8,1068
-10256,minior-orange,orange,10137,17,1,0,0,9,1069
-10257,minior-yellow,yellow,10138,17,1,0,0,10,1070
-10258,minior-green,green,10139,17,1,0,0,11,1071
-10259,minior-blue,blue,10140,17,1,0,0,12,1072
-10260,minior-indigo,indigo,10141,17,1,0,0,13,1073
-10261,minior-violet,violet,10142,17,1,0,0,14,1074
-10262,mimikyu-busted,busted,10143,17,1,1,0,2,1080
-10263,mimikyu-totem-disguised,totem-disguised,10144,17,1,1,0,3,1081
-10264,mimikyu-totem-busted,totem-busted,10145,17,1,1,0,4,1082
-10265,kommo-o-totem,totem,10146,17,1,1,0,2,1089
-10266,magearna-original,original,10147,17,1,0,0,2,1110
-10267,pikachu-partner-cap,partner-cap,10148,18,1,0,0,8,43
-10268,marowak-totem,totem,10149,18,1,0,0,3,152
-10269,mothim-sandy,sandy,414,18,0,0,0,2,552
-10270,mothim-trash,trash,414,18,0,0,0,3,553
-10271,scatterbug-polar,polar,664,18,0,0,0,2,830
-10272,scatterbug-tundra,tundra,664,18,0,0,0,3,831
-10273,scatterbug-continental,continental,664,18,0,0,0,4,832
-10274,scatterbug-garden,garden,664,18,0,0,0,5,833
-10275,scatterbug-elegant,elegant,664,18,0,0,0,6,834
-10276,scatterbug-meadow,meadow,664,18,0,0,0,7,835
-10277,scatterbug-modern,modern,664,18,0,0,0,8,836
-10278,scatterbug-marine,marine,664,18,0,0,0,9,837
-10279,scatterbug-archipelago,archipelago,664,18,0,0,0,10,838
-10280,scatterbug-high-plains,high-plains,664,18,0,0,0,11,839
-10281,scatterbug-sandstorm,sandstorm,664,18,0,0,0,12,840
-10282,scatterbug-river,river,664,18,0,0,0,13,841
-10283,scatterbug-monsoon,monsoon,664,18,0,0,0,14,842
-10284,scatterbug-savanna,savanna,664,18,0,0,0,15,843
-10285,scatterbug-sun,sun,664,18,0,0,0,16,844
-10286,scatterbug-ocean,ocean,664,18,0,0,0,17,845
-10287,scatterbug-jungle,jungle,664,18,0,0,0,18,846
-10288,scatterbug-fancy,fancy,664,18,0,0,0,19,847
-10289,scatterbug-poke-ball,poke-ball,664,18,0,0,0,20,848
-10290,spewpa-polar,polar,665,18,0,0,0,2,850
-10291,spewpa-tundra,tundra,665,18,0,0,0,3,851
-10292,spewpa-continental,continental,665,18,0,0,0,4,852
-10293,spewpa-garden,garden,665,18,0,0,0,5,853
-10294,spewpa-elegant,elegant,665,18,0,0,0,6,854
-10295,spewpa-meadow,meadow,665,18,0,0,0,7,855
-10296,spewpa-modern,modern,665,18,0,0,0,8,856
-10297,spewpa-marine,marine,665,18,0,0,0,9,857
-10298,spewpa-archipelago,archipelago,665,18,0,0,0,10,858
-10299,spewpa-high-plains,high-plains,665,18,0,0,0,11,859
-10300,spewpa-sandstorm,sandstorm,665,18,0,0,0,12,860
-10301,spewpa-river,river,665,18,0,0,0,13,861
-10302,spewpa-monsoon,monsoon,665,18,0,0,0,14,862
-10303,spewpa-savanna,savanna,665,18,0,0,0,15,863
-10304,spewpa-sun,sun,665,18,0,0,0,16,864
-10305,spewpa-ocean,ocean,665,18,0,0,0,17,865
-10306,spewpa-jungle,jungle,665,18,0,0,0,18,866
-10307,spewpa-fancy,fancy,665,18,0,0,0,19,867
-10308,spewpa-poke-ball,poke-ball,665,18,0,0,0,20,868
-10309,ribombee-totem,totem,10150,18,1,0,0,2,1006
-10310,rockruff-own-tempo,own-tempo,10151,18,1,0,0,2,1008
-10311,lycanroc-dusk,dusk,10152,18,1,0,0,3,1011
-10312,araquanid-totem,totem,10153,18,1,0,0,2,1020
-10313,togedemaru-totem,totem,10154,18,1,0,0,2,1078
-10314,necrozma-dusk,dusk,10155,18,1,0,0,2,1106
-10315,necrozma-dawn,dawn,10156,18,1,0,0,3,1107
-10316,necrozma-ultra,ultra,10157,18,1,0,0,4,1108
+10196,pikachu-original-cap,original-cap,10094,17,1,0,0,8,43
+10197,pikachu-hoenn-cap,hoenn-cap,10095,17,1,0,0,9,44
+10198,pikachu-sinnoh-cap,sinnoh-cap,10096,17,1,0,0,10,45
+10199,pikachu-unova-cap,unova-cap,10097,17,1,0,0,11,46
+10200,pikachu-kalos-cap,kalos-cap,10098,17,1,0,0,12,47
+10201,pikachu-alola-cap,alola-cap,10099,17,1,0,0,13,48
+10202,raichu-alola,alola,10100,17,1,0,0,2,51
+10203,sandshrew-alola,alola,10101,17,1,0,0,2,53
+10204,sandslash-alola,alola,10102,17,1,0,0,2,55
+10205,vulpix-alola,alola,10103,17,1,0,0,2,66
+10206,ninetales-alola,alola,10104,17,1,0,0,2,68
+10207,diglett-alola,alola,10105,17,1,0,0,2,84
+10208,dugtrio-alola,alola,10106,17,1,0,0,2,86
+10209,meowth-alola,alola,10107,17,1,0,0,2,88
+10210,persian-alola,alola,10108,17,1,0,0,2,90
+10211,geodude-alola,alola,10109,17,1,0,0,2,114
+10212,graveler-alola,alola,10110,17,1,0,0,2,116
+10213,golem-alola,alola,10111,17,1,0,0,2,118
+10214,grimer-alola,alola,10112,17,1,0,0,2,134
+10215,muk-alola,alola,10113,17,1,0,0,2,136
+10216,exeggutor-alola,alola,10114,17,1,0,0,2,154
+10217,marowak-alola,alola,10115,17,1,0,0,2,157
+10218,greninja-battle-bond,battle-bond,10116,17,1,0,0,2,829
+10219,greninja-ash,ash,10117,17,1,1,0,3,830
+10220,zygarde-10,10,10118,17,1,0,0,2,978
+10221,zygarde-50,50,10119,17,1,0,0,3,979
+10222,zygarde-complete,complete,10120,17,1,0,0,4,980
+10223,gumshoos-totem,totem,10121,17,1,1,0,2,1000
+10224,vikavolt-totem,totem,10122,17,1,1,0,2,1004
+10225,oricorio-pom-pom,pom-pom,10123,17,1,0,0,2,1008
+10226,oricorio-pau,pau,10124,17,1,0,0,3,1009
+10227,oricorio-sensu,sensu,10125,17,1,0,0,4,1010
+10228,lycanroc-midnight,midnight,10126,17,1,0,0,2,1017
+10229,wishiwashi-school,school,10127,17,1,1,0,2,1020
+10230,lurantis-totem,totem,10128,17,1,1,0,2,1030
+10231,salazzle-totem,totem,10129,17,1,1,0,2,1035
+10232,silvally-fighting,fighting,773,17,0,0,0,2,1051
+10233,silvally-flying,flying,773,17,0,0,0,3,1052
+10234,silvally-poison,poison,773,17,0,0,0,4,1053
+10235,silvally-ground,ground,773,17,0,0,0,5,1054
+10236,silvally-rock,rock,773,17,0,0,0,6,1055
+10237,silvally-bug,bug,773,17,0,0,0,7,1056
+10238,silvally-ghost,ghost,773,17,0,0,0,8,1057
+10239,silvally-steel,steel,773,17,0,0,0,9,1058
+10240,silvally-fire,fire,773,17,0,0,0,10,1059
+10241,silvally-water,water,773,17,0,0,0,11,1060
+10242,silvally-grass,grass,773,17,0,0,0,12,1061
+10243,silvally-electric,electric,773,17,0,0,0,13,1062
+10244,silvally-psychic,psychic,773,17,0,0,0,14,1063
+10245,silvally-ice,ice,773,17,0,0,0,15,1064
+10246,silvally-dragon,dragon,773,17,0,0,0,16,1065
+10247,silvally-dark,dark,773,17,0,0,0,17,1066
+10248,silvally-fairy,fairy,773,17,0,0,0,18,1067
+10249,minior-orange-meteor,orange-meteor,10130,17,1,1,0,2,1069
+10250,minior-yellow-meteor,yellow-meteor,10131,17,1,1,0,3,1070
+10251,minior-green-meteor,green-meteor,10132,17,1,1,0,4,1071
+10252,minior-blue-meteor,blue-meteor,10133,17,1,1,0,5,1072
+10253,minior-indigo-meteor,indigo-meteor,10134,17,1,1,0,6,1073
+10254,minior-violet-meteor,violet-meteor,10135,17,1,1,0,7,1074
+10255,minior-red,red,10136,17,1,0,0,8,1075
+10256,minior-orange,orange,10137,17,1,0,0,9,1076
+10257,minior-yellow,yellow,10138,17,1,0,0,10,1077
+10258,minior-green,green,10139,17,1,0,0,11,1078
+10259,minior-blue,blue,10140,17,1,0,0,12,1079
+10260,minior-indigo,indigo,10141,17,1,0,0,13,1080
+10261,minior-violet,violet,10142,17,1,0,0,14,1081
+10262,mimikyu-busted,busted,10143,17,1,1,0,2,1087
+10263,mimikyu-totem-disguised,totem-disguised,10144,17,1,1,0,3,1088
+10264,mimikyu-totem-busted,totem-busted,10145,17,1,1,0,4,1089
+10265,kommo-o-totem,totem,10146,17,1,1,0,2,1096
+10266,magearna-original,original,10147,17,1,0,0,2,1117
+10267,pikachu-partner-cap,partner-cap,10148,18,1,0,0,14,49
+10268,marowak-totem,totem,10149,18,1,0,0,3,158
+10269,mothim-sandy,sandy,414,18,0,0,0,2,558
+10270,mothim-trash,trash,414,18,0,0,0,3,559
+10271,scatterbug-polar,polar,664,18,0,0,0,2,837
+10272,scatterbug-tundra,tundra,664,18,0,0,0,3,838
+10273,scatterbug-continental,continental,664,18,0,0,0,4,839
+10274,scatterbug-garden,garden,664,18,0,0,0,5,840
+10275,scatterbug-elegant,elegant,664,18,0,0,0,6,841
+10276,scatterbug-meadow,meadow,664,18,0,0,0,7,842
+10277,scatterbug-modern,modern,664,18,0,0,0,8,843
+10278,scatterbug-marine,marine,664,18,0,0,0,9,844
+10279,scatterbug-archipelago,archipelago,664,18,0,0,0,10,845
+10280,scatterbug-high-plains,high-plains,664,18,0,0,0,11,846
+10281,scatterbug-sandstorm,sandstorm,664,18,0,0,0,12,847
+10282,scatterbug-river,river,664,18,0,0,0,13,848
+10283,scatterbug-monsoon,monsoon,664,18,0,0,0,14,849
+10284,scatterbug-savanna,savanna,664,18,0,0,0,15,850
+10285,scatterbug-sun,sun,664,18,0,0,0,16,851
+10286,scatterbug-ocean,ocean,664,18,0,0,0,17,852
+10287,scatterbug-jungle,jungle,664,18,0,0,0,18,853
+10288,scatterbug-fancy,fancy,664,18,0,0,0,19,854
+10289,scatterbug-poke-ball,poke-ball,664,18,0,0,0,20,855
+10290,spewpa-polar,polar,665,18,0,0,0,2,857
+10291,spewpa-tundra,tundra,665,18,0,0,0,3,858
+10292,spewpa-continental,continental,665,18,0,0,0,4,859
+10293,spewpa-garden,garden,665,18,0,0,0,5,860
+10294,spewpa-elegant,elegant,665,18,0,0,0,6,861
+10295,spewpa-meadow,meadow,665,18,0,0,0,7,862
+10296,spewpa-modern,modern,665,18,0,0,0,8,863
+10297,spewpa-marine,marine,665,18,0,0,0,9,864
+10298,spewpa-archipelago,archipelago,665,18,0,0,0,10,865
+10299,spewpa-high-plains,high-plains,665,18,0,0,0,11,866
+10300,spewpa-sandstorm,sandstorm,665,18,0,0,0,12,867
+10301,spewpa-river,river,665,18,0,0,0,13,868
+10302,spewpa-monsoon,monsoon,665,18,0,0,0,14,869
+10303,spewpa-savanna,savanna,665,18,0,0,0,15,870
+10304,spewpa-sun,sun,665,18,0,0,0,16,871
+10305,spewpa-ocean,ocean,665,18,0,0,0,17,872
+10306,spewpa-jungle,jungle,665,18,0,0,0,18,873
+10307,spewpa-fancy,fancy,665,18,0,0,0,19,874
+10308,spewpa-poke-ball,poke-ball,665,18,0,0,0,20,875
+10309,ribombee-totem,totem,10150,18,1,0,0,2,1013
+10310,rockruff-own-tempo,own-tempo,10151,18,1,0,0,2,1015
+10311,lycanroc-dusk,dusk,10152,18,1,0,0,3,1018
+10312,araquanid-totem,totem,10153,18,1,0,0,2,1027
+10313,togedemaru-totem,totem,10154,18,1,0,0,2,1085
+10314,necrozma-dusk,dusk,10155,18,1,0,0,2,1113
+10315,necrozma-dawn,dawn,10156,18,1,0,0,3,1114
+10316,necrozma-ultra,ultra,10157,18,1,0,0,4,1115
diff --git a/pokedex/data/csv/pokemon_species_names.csv b/pokedex/data/csv/pokemon_species_names.csv
index 192a2d4..d97dfe3 100644
--- a/pokedex/data/csv/pokemon_species_names.csv
+++ b/pokedex/data/csv/pokemon_species_names.csv
@@ -8534,31 +8534,31 @@ pokemon_species_id,local_language_id,name,genus
 804,12,四颚针龙,毒针宝可梦
 805,1,ツンデツンデ,いしがきポケモン
 805,3,차곡차곡,돌담포켓몬
-805,4,石,石牆寶可夢
+805,4,壘磊石,石牆寶可夢
 805,5,Ama-Ama,Pokémon Muraille
 805,6,Muramura,Steinmauer
 805,7,Stakataka,Pokémon Muro
 805,8,Stakataka,Pokémon Bastione
 805,9,Stakataka,Rampart Pokémon
 805,11,ツンデツンデ,いしがきポケモン
-805,12,石,石墙宝可梦
+805,12,垒磊石,石墙宝可梦
 806,1,ズガドーン,はなびポケモン
 806,3,두파팡,불꽃놀이포켓몬
-806,4,頭小,煙火寶可夢
+806,4,砰頭小丑,煙火寶可夢
 806,5,Pierroteknik,Pokémon Artificier
 806,6,Kopplosio,Feuerwerk
 806,7,Blacephalon,Pokémon Pirotecnia
 806,8,Blacephalon,Pokémon Pirotecnico
 806,9,Blacephalon,Fireworks Pokémon
 806,11,ズガドーン,はなびポケモン
-806,12,头小丑,烟火宝可梦
+806,12,砰头小丑,烟火宝可梦
 807,1,ゼラオラ,じんらいポケモン
 807,3,제라오라,신뢰포켓몬
-807,4,捷拉拉,奔雷寶可夢
+807,4,捷拉奥拉,奔雷寶可夢
 807,5,Zeraora,Pokémon Vif Éclair
 807,6,Zeraora,Blitzsturm
 807,7,Zeraora,Pokémon Fulgor
 807,8,Zeraora,Pokémon Fulmirapido
 807,9,Zeraora,Thunderclap Pokémon
 807,11,ゼラオラ,じんらいポケモン
-807,12,捷拉拉,奔雷宝可梦
+807,12,捷拉奥拉,奔雷宝可梦
diff --git a/pokedex/data/csv/region_names.csv b/pokedex/data/csv/region_names.csv
index bf638a1..e0d908f 100644
--- a/pokedex/data/csv/region_names.csv
+++ b/pokedex/data/csv/region_names.csv
@@ -1,30 +1,36 @@
 region_id,local_language_id,name
 1,1,カントー地方
+1,3,관동지방
 1,5,Kanto
 1,6,Kanto
 1,8,Kanto
 1,9,Kanto
 2,1,ジョウト地方
+2,3,성도지방
 2,5,Johto
 2,6,Johto
 2,8,Johto
 2,9,Johto
 3,1,ホウエン地方
+3,3,호연지방
 3,5,Hoenn
 3,6,Hoenn
 3,8,Hoenn
 3,9,Hoenn
 4,1,シンオウ地方
+4,3,신오지방
 4,5,Sinnoh
 4,6,Sinnoh
 4,8,Sinnoh
 4,9,Sinnoh
 5,1,イッシュ地方
+5,3,하나지방
 5,5,Unys
 5,6,Einall
 5,8,Unima
 5,9,Unova
 6,1,カロス地方
+6,3,칼로스지방
 6,5,Kalos
 6,6,Kalos
 6,8,Kalos
diff --git a/pokedex/data/csv/stat_names.csv b/pokedex/data/csv/stat_names.csv
index 1e98a1a..fc2186c 100644
--- a/pokedex/data/csv/stat_names.csv
+++ b/pokedex/data/csv/stat_names.csv
@@ -1,47 +1,55 @@
 stat_id,local_language_id,name
 1,1,HP
+1,3,HP
 1,5,PV
 1,6,KP
 1,7,PS
 1,8,PS
 1,9,HP
 2,1,こうげき
+2,3,공격
 2,5,Attaque
 2,6,Angriff
 2,7,Ataque
 2,8,Attacco
 2,9,Attack
 3,1,ぼうぎょ
+3,3,방어
 3,5,Défense
 3,6,Verteidigung
 3,7,Defensa
 3,8,Difesa
 3,9,Defense
 4,1,とくこう
+4,3,특수공격
 4,5,Attaque Spéciale
 4,6,Spezialangriff
 4,7,Ataque Especial
 4,8,Attacco Speciale
 4,9,Special Attack
 5,1,とくぼう
+5,3,특수방어
 5,5,Défense Spéciale
 5,6,Spezialverteidigung
 5,7,Defensa Especial
 5,8,Difesa Speciale
 5,9,Special Defense
 6,1,すばやさ
+6,3,스피드
 6,5,Vitesse
 6,6,Initiative
 6,7,Velocidad
 6,8,Velocità
 6,9,Speed
 7,1,めいちゅう
+7,3,명중률
 7,5,Précision
 7,6,Genauigkeit
 7,7,Precisión
 7,8,precisione
 7,9,accuracy
 8,1,かいひ
+8,3,회피율
 8,5,Esquive
 8,6,Fluchtwert
 8,7,Evasión
diff --git a/pokedex/data/csv/type_names.csv b/pokedex/data/csv/type_names.csv
index 0156411..aa3a49e 100644
--- a/pokedex/data/csv/type_names.csv
+++ b/pokedex/data/csv/type_names.csv
@@ -126,12 +126,14 @@ type_id,local_language_id,name
 18,8,Folletto
 18,9,Fairy
 10001,1,???
+10001,3,???
 10001,5,???
 10001,6,???
 10001,7,???
 10001,8,???
 10001,9,???
 10002,1,ダーク
+10002,3,다크
 10002,5,Obscur
 10002,6,Crypto
 10002,8,Ombra
diff --git a/pokedex/data/csv/version_names.csv b/pokedex/data/csv/version_names.csv
index 2b4bd0e..ff229bd 100644
--- a/pokedex/data/csv/version_names.csv
+++ b/pokedex/data/csv/version_names.csv
@@ -1,165 +1,211 @@
 version_id,local_language_id,name
 1,1,赤
+1,3,레드
 1,5,Rouge
 1,6,Rot
 1,7,Rojo
 1,8,Rossa
 1,9,Red
 2,1,緑
+2,3,블루
 2,5,Bleu
 2,6,Blau
 2,7,Azul
 2,8,Blu
 2,9,Blue
 3,1,ピカチュウ
+3,3,피카츄
 3,5,Jaune
 3,6,Gelb
 3,7,Amarillo
 3,8,Gialla
 3,9,Yellow
 4,1,金
+4,3,골드
 4,5,Or
 4,6,Gold
 4,7,Oro
 4,8,Oro
 4,9,Gold
 5,1,銀
+5,3,실버
 5,5,Argent
 5,6,Silber
 5,7,Plata
 5,8,Argento
 5,9,Silver
 6,1,クリスタル
+6,3,크리스탈
 6,5,Cristal
 6,6,Kristall
 6,7,Cristal
 6,8,Cristallo
 6,9,Crystal
 7,1,ルビー
+7,3,루비
 7,5,Rubis
 7,6,Rubin
 7,7,Rubí
 7,8,Rubino
 7,9,Ruby
 8,1,サファイア
+8,3,사파이어
 8,5,Saphir
 8,6,Saphir
 8,7,Zafiro
 8,8,Zaffiro
 8,9,Sapphire
 9,1,エメラルド
+9,3,에메랄드
 9,5,Émeraude
 9,6,Smaragd
 9,7,Esmeralda
 9,8,Smeraldo
 9,9,Emerald
 10,1,ファイアレッド
+10,3,파이어레드
 10,5,Rouge Feu
 10,6,Feuerrot
 10,7,Rojo Fuego
 10,8,Rosso Fuoco
 10,9,FireRed
 11,1,リーフグリーン
+11,3,리프그린
 11,5,Vert Feuille
 11,6,Blattgrün
 11,7,Verde Hoja
 11,8,Verde Foglia
 11,9,LeafGreen
 12,1,ダイヤモンド
+12,3,디아루가
 12,5,Diamant
 12,6,Diamant
 12,7,Diamante
 12,8,Diamante
 12,9,Diamond
 13,1,パール
+13,3,펄기아
 13,5,Perle
 13,6,Perl
 13,7,Perla
 13,8,Perla
 13,9,Pearl
 14,1,プラチナ
+14,3,기라티나
 14,5,Platine
 14,6,Platin
 14,7,Platino
 14,8,Platino
 14,9,Platinum
 15,1,ハートゴールド
+15,3,하트골드
 15,5,Or HeartGold
 15,6,HeartGold
 15,7,Oro HeartGold
 15,8,Oro HeartGold
 15,9,HeartGold
 16,1,ソウルシルバー
+16,3,소울실버
 16,5,Argent SoulSilver
 16,6,SoulSilver
 16,7,Plata SoulSilver
 16,8,Argento SoulSilver
 16,9,SoulSilver
 17,1,ブラック
+17,3,블랙
 17,5,Noir
 17,6,Schwarz
 17,7,Negro
 17,8,Nera
 17,9,Black
 18,1,ホワイト
+18,3,화이트
 18,5,Blanc
 18,6,Weiß
 18,7,Blanco
 18,8,Bianca
 18,9,White
 19,1,コロシアム
+19,3,콜로세움
 19,5,Colosseum
 19,6,Colosseum
 19,7,Colosseum
 19,8,Colosseum
 19,9,Colosseum
 20,1,XD
+20,3,XD
 20,5,XD
 20,6,XD
 20,7,XD
 20,8,XD
 20,9,XD
 21,1,ブラック2
+21,3,블랙 2
 21,5,Noir 2
 21,6,Schwarz 2
 21,7,Negro 2
 21,8,Nera 2
 21,9,Black 2
 22,1,ホワイト2
+22,3,화이트 2
 22,5,Blanc 2
 22,6,Weiß 2
 22,7,Blanco 2
 22,8,Bianca 2
 22,9,White 2
 23,1,X
+23,3,X
 23,5,X
 23,6,X
 23,7,X
 23,8,X
 23,9,X
 24,1,Y
+24,3,Y
 24,5,Y
 24,6,Y
 24,7,Y
 24,8,Y
 24,9,Y
 25,1,オメガルビー
+25,3,오메가루비
 25,5,Rubis Oméga
 25,6,Omega Rubin
 25,7,Rubí Omega
 25,8,Rubino Omega
 25,9,Omega Ruby
 26,1,アルファサファイア
+26,3,알파사파이어
 26,5,Saphir Alpha
 26,6,Alpha Saphir
 26,7,Zafiro Alfa
 26,8,Zaffiro Alpha
 26,9,Alpha Sapphire
+27,1,サン
+27,3,썬
+27,5,Soleil
+27,6,Sonne
 27,7,Sol
+27,8,Sole
 27,9,Sun
+28,1,ムーン
+28,3,문
+28,5,Lune
+28,6,Mond
 28,7,Luna
+28,8,Luna
 28,9,Moon
+29,1,ウルトラサン
+29,3,울트라썬
+29,5,Ultra-Soleil
+29,6,Ultrasonne
 29,7,Ultrasol
+29,8,Ultrasole
 29,9,Ultra Sun
+30,1,ウルトラムーン
+30,3,울트라문
+30,5,Ultra-Lune
+30,6,Ultramond
 30,7,Ultraluna
+30,8,Ultraluna
 30,9,Ultra Moon
diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py
index b05f9b3..0c2aa39 100644
--- a/pokedex/db/tables.py
+++ b/pokedex/db/tables.py
@@ -90,10 +90,10 @@ class Language(TableBase):
     id = Column(Integer, primary_key=True, nullable=False,
         doc=u"A numeric ID")
     iso639 = Column(Unicode(79), nullable=False,
-        doc=u"The two-letter code of the country where this language is spoken. Note that it is not unique.",
+        doc=u"The two-letter code of the language. Note that it is not unique.",
         info=dict(format='identifier'))
     iso3166 = Column(Unicode(79), nullable=False,
-        doc=u"The two-letter code of the language. Note that it is not unique.",
+        doc=u"The two-letter code of the country where this language is spoken. Note that it is not unique.",
         info=dict(format='identifier'))
     identifier = Column(Unicode(79), nullable=False,
         doc=u"An identifier",
@@ -850,7 +850,17 @@ create_translation_table('encounter_method_prose', EncounterMethod, 'prose',
 )
 
 class EncounterSlot(TableBase):
-    u"""An abstract "slot" within a method, associated with both some set of conditions and a rarity."""
+    u"""An abstract "slot" within a method, associated with both some set of conditions and a rarity.
+
+    "slot" has a very specific meaning:
+    If during gameplay you know sufficient details about the current game state,
+    you can predict which slot (and therefore which pokemon) will spawn.
+
+    There are currently two reasons that "slot" might be empty:
+    1) The slot corresponds to a gift pokemon.
+    2) Red/Blue's Super Rod slots, which don't correspond to in-game slots.
+       See https://github.com/veekun/pokedex/issues/166#issuecomment-220101455
+    """
 
     __tablename__ = 'encounter_slots'
     id = Column(Integer, primary_key=True, nullable=False,
@@ -1761,6 +1771,13 @@ class PokemonDexNumber(TableBase):
     pokedex_number = Column(Integer, nullable=False,
         doc=u"Number of the Pokémon in that the Pokédex")
 
+    __table_args__ = (
+        UniqueConstraint(pokedex_id, pokedex_number),
+        UniqueConstraint(pokedex_id, species_id),
+        {},
+    )
+
+
 class PokemonEggGroup(TableBase):
     u"""Maps an Egg group to a species; each species belongs to one or two egg groups."""
     __tablename__ = 'pokemon_egg_groups'
diff --git a/pokedex/db/translations.py b/pokedex/db/translations.py
index 8f55473..d3ea35f 100755
--- a/pokedex/db/translations.py
+++ b/pokedex/db/translations.py
@@ -377,7 +377,10 @@ def group_by_object(stream):
     Yields ((class name, object ID), (list of messages)) pairs.
     """
     stream = iter(stream)
-    current = next(stream)
+    try:
+        current = next(stream)
+    except StopIteration:
+        return
     current_key = current.cls, current.id
     group = [current]
     for message in stream:
diff --git a/pokedex/tests/test_database_sanity.py b/pokedex/tests/test_database_sanity.py
index 0415fed..c515a48 100644
--- a/pokedex/tests/test_database_sanity.py
+++ b/pokedex/tests/test_database_sanity.py
@@ -1,6 +1,7 @@
 import pytest
 parametrize = pytest.mark.parametrize
 
+from collections import Counter
 import re
 
 from sqlalchemy.orm import aliased, joinedload, lazyload
@@ -28,6 +29,28 @@ def test_encounter_slots(session):
     # Encounter slots all match the encounters they belong to
     assert sanity_q.count() == 0
 
+def test_encounter_regions(session):
+    """Check that encounter locations match the region of the game they're from.
+    """
+
+    sanity_q = session.query(tables.Encounter) \
+        .join((tables.Version, tables.Encounter.version)) \
+        .join((tables.VersionGroup, tables.Version.version_group)) \
+        .join((tables.LocationArea, tables.Encounter.location_area)) \
+        .join((tables.Location, tables.LocationArea.location)) \
+        .join((tables.Region, tables.Location.region)) \
+        .filter(~tables.VersionGroup.version_group_regions.any(tables.VersionGroupRegion.region_id == tables.Region.id))
+
+    for e in sanity_q.limit(20):
+        acceptable_regions = " or ".join(r.identifier for r in e.version.version_group.regions)
+        if e.location_area.location.region is not None:
+            print("{e} ({e.pokemon.identifier}, {e.slot.method.identifier}, {e.version.identifier}) is in {e.location_area.location.region.identifier} ({e.location_area.location.identifier}) but should be in {acceptable_regions} ({e.version.identifier})".format(e=e, acceptable_regions=acceptable_regions))
+        else:
+            print("{e} ({e.pokemon.identifier}, {e.slot.method.identifier}, {e.version.identifier}) is in a pseudo-location ({e.location_area.location.identifier}) that is not part of any region, but should be in {acceptable_regions} ({e.version.identifier})".format(e=e, acceptable_regions=acceptable_regions))
+
+    # Encounter regions match the games they belong to
+    assert sanity_q.count() == 0
+
 @parametrize('cls', tables.mapped_classes)
 def test_nonzero_autoincrement_ids(session, cls):
     """Check that autoincrementing ids don't contain zeroes
@@ -47,7 +70,7 @@ def test_nonzero_autoincrement_ids(session, cls):
         pytest.fail("No zero id in %s" % cls.__name__)
 
 def test_unique_form_order(session):
-    """Check that tone PokemonForm.order value isn't used for more species"""
+    """Check that one PokemonForm.order value isn't used for more species"""
 
     species_by_form_order = {}
 
@@ -66,6 +89,22 @@ def test_unique_form_order(session):
                         species_by_form_order[form.order].name,
                         form.species.name))
 
+def test_pokedex_numbers(session):
+    """Check that pokedex numbers are contiguous (there are no gaps)"""
+
+    dex_query = session.query(tables.Pokedex).order_by(tables.Pokedex.id)
+    failed = False
+    for dex in dex_query:
+        query = session.query(tables.PokemonDexNumber.pokedex_number).filter_by(pokedex_id=dex.id)
+        numbers = set([x[0] for x in query.all()])
+        for i in range(1, max(numbers)):
+            if i not in numbers:
+                print("number {n} is missing from the {dex.name} pokedex".format(n=i, dex=dex))
+                failed = True
+
+    assert not failed, "missing pokedex numbers"
+
+
 def test_default_forms(session):
     """Check that each pokemon has one default form and each species has one
     default pokemon."""
diff --git a/scripts/add-gift-encounters.py b/scripts/add-gift-encounters.py
new file mode 100644
index 0000000..16714ee
--- /dev/null
+++ b/scripts/add-gift-encounters.py
@@ -0,0 +1,308 @@
+#!/usr/bin/env python2
+"""
+This is an unmaintained one-shot script, only included in the repo for
+reference.
+"""
+
+from pokedex.db import connect, identifier_from_name
+from pokedex.db.tables import Encounter, EncounterMethod, EncounterSlot, Language, Location, LocationArea, Pokemon, Version
+
+session = connect()
+
+def get_version(name):
+    return session.query(Version).filter_by(identifier=identifier_from_name(name)).one()
+
+R = get_version(u'red')
+B = get_version(u'blue')
+Ye = get_version(u'yellow')
+G = get_version(u'gold')
+S = get_version(u'silver')
+C = get_version(u'crystal')
+RU = get_version(u'ruby')
+SA = get_version(u'sapphire')
+EM = get_version(u'emerald')
+FR = get_version(u'firered')
+LG = get_version(u'leafgreen')
+
+DI = get_version(u'diamond')
+PE = get_version(u'pearl')
+PT = get_version(u'platinum')
+HG = get_version(u'heartgold')
+SS = get_version(u'soulsilver')
+
+BL = get_version(u'black')
+WH = get_version(u'white')
+B2 = get_version(u'black-2')
+W2 = get_version(u'white-2')
+
+X  = get_version(u'x')
+Y  = get_version(u'y')
+OR = get_version(u'omega-ruby')
+AS = get_version(u'alpha-sapphire')
+
+def normal_gift_data():
+    return [
+        # Gen I
+        [ u'bulbasaur',   [ R, B ],  5, u'pallet-town' ],
+        [ u'charmander',  [ R, B ],  5, u'pallet-town' ],
+        [ u'squirtle',    [ R, B ],  5, u'pallet-town' ],
+        [ u'pikachu',     [ Ye   ],  5, u'pallet-town' ],
+        [ u'bulbasaur',   [ Ye   ], 10, u'cerulean-city'  ],
+        [ u'charmander',  [ Ye   ], 10, u'kanto-route-24' ],
+        [ u'squirtle',    [ Ye   ], 10, u'vermilion-city' ],
+
+        #[ u'aerodactyl', [ R, B, Ye ], 30, u'pewter-city',   u'museum-of-science', u'Pewter Museum of Science' ],
+        [ u'magikarp',   [ R, B, Ye ],  5, u'kanto-route-4', u'pokemon-center',    u'Pokemon Center' ],
+        #[ u'omanyte',    [ R, B, Ye ], 30, u'mt-moon',       u'b2f' ],
+        #[ u'kabuto',     [ R, B, Ye ], 30, u'mt-moon',       u'b2f' ],
+        [ u'hitmonlee',  [ R, B, Ye ], 30, u'saffron-city',  u'fighting-dojo',     u'Fighting Dojo' ],
+        [ u'hitmonchan', [ R, B, Ye ], 30, u'saffron-city',  u'fighting-dojo',     u'Fighting Dojo' ],
+        [ u'eevee',      [ R, B, Ye ], 25, u'celadon-city',  u'celadon-mansion',   u'Celadon Mansion rooftop' ],
+        [ u'lapras',     [ R, B, Ye ], 15, u'saffron-city',  u'silph-co-7f',       u'Silph Co. 7F' ],
+
+        # Gen II
+        [ u'chikorita', [ G, S, C ],  5, u'new-bark-town' ],
+        [ u'cyndaquil', [ G, S, C ],  5, u'new-bark-town' ],
+        [ u'totodile',  [ G, S, C ],  5, u'new-bark-town' ],
+        [ u'spearow',   [ G, S, C ], 10, u'goldenrod-city', u'north-gate',   u'North Gate' ],
+        [ u'eevee',     [ G, S, C ], 20, u'goldenrod-city', u'bills-house',  u"Bill's house" ],
+        [ u'shuckle',   [ G, S, C ], 15, u'cianwood-city',  u'manias-house', u"Mania's house" ],
+        [ u'dratini',   [       C ], 15, u'dragons-den'    ],
+        [ u'tyrogue',   [ G, S, C ], 10, u'mt-mortar',      u'b1f' ],
+
+        # Gen III
+        # Note Lileep + Anorith are not listed because they are not *gifts*
+        # They're note quite encounters either
+        # but that's outta scope of gift logic
+        [ u'treecko',   [ RU, SA, EM ],  5, u'hoenn-route-101' ],
+        [ u'torchic',   [ RU, SA, EM ],  5, u'hoenn-route-101' ],
+        [ u'mudkip' ,   [ RU, SA, EM ],  5, u'hoenn-route-101' ],
+        [ u'castform',  [ RU, SA, EM ], 25, u'hoenn-route-119', u'weather-institute', u'Weather Institute' ],
+        [ u'beldum',    [ RU, SA, EM ],  5, u'mossdeep-city',   u'stevens-house',     u"Steven's house"  ],
+        [ u'chikorita', [         EM ],  5, u'littleroot-town' ],
+        [ u'cyndaquil', [         EM ],  5, u'littleroot-town' ],
+        [ u'totodile',  [         EM ],  5, u'littleroot-town' ],
+
+        [ u'bulbasaur',  [ FR, LG ],  5, u'pallet-town' ],
+        [ u'charmander', [ FR, LG ],  5, u'pallet-town' ],
+        [ u'squirtle',   [ FR, LG ],  5, u'pallet-town' ],
+        #[ u'aerodactyl', [ FR, LG ],  5, u'pewter-city',   u'museum-of-science' ],
+        [ u'magikarp',   [ FR, LG ],  5, u'kanto-route-4', u'pokemon-center' ],
+        #[ u'omanyte',    [ FR, LG ],  5, u'mt-moon',       u'b2f' ],
+        #[ u'kabuto',     [ FR, LG ],  5, u'mt-moon',       u'b2f' ],
+        [ u'hitmonlee',  [ FR, LG ], 25, u'saffron-city',  u'fighting-dojo' ],
+        [ u'hitmonchan', [ FR, LG ], 25, u'saffron-city',  u'fighting-dojo' ],
+        [ u'eevee',      [ FR, LG ], 25, u'celadon-city',  u'celadon-mansion' ],
+        [ u'lapras',     [ FR, LG ], 25, u'saffron-city',  u'silph-co-7f' ],
+
+        # Gen IV
+        [ u'turtwig',  [ DI, PE     ],  5, u'lake-verity', u'before-galactic-intervention' ],
+        [ u'chimchar', [ DI, PE     ],  5, u'lake-verity', u'before-galactic-intervention' ],
+        [ u'piplup',   [ DI, PE     ],  5, u'lake-verity', u'before-galactic-intervention' ],
+        [ u'turtwig',  [         PT ],  5, u'sinnoh-route-201' ],
+        [ u'chimchar', [         PT ],  5, u'sinnoh-route-201' ],
+        [ u'piplup',   [         PT ],  5, u'sinnoh-route-201' ],
+        [ u'eevee',    [ DI, PE,    ],  5, u'hearthome-city' ],
+        [ u'eevee',    [         PT ], 20, u'hearthome-city' ],
+        [ u'porygon',  [         PT ], 25, u'veilstone-city' ],
+
+        [ u'chikorita',  [ HG, SS ],  5, u'new-bark-town' ],
+        [ u'cyndaquil',  [ HG, SS ],  5, u'new-bark-town' ],
+        [ u'totodile',   [ HG, SS ],  5, u'new-bark-town' ],
+        [ u'spearow',    [ HG, SS ], 20, u'goldenrod-city', u'north-gate' ],
+        [ u'eevee',      [ HG, SS ],  5, u'goldenrod-city', u'bills-house' ],
+        [ u'shuckle',    [ HG, SS ], 15, u'cianwood-city', u'kirks-house', u"Kirk's house"  ],
+        [ u'dratini',    [ HG, SS ], 15, u'dragons-den'    ],
+        [ u'tyrogue',    [ HG, SS ], 10, u'mt-mortar',      u'b1f' ],
+        [ u'bulbasaur',  [ HG, SS ],  5, u'pallet-town'   ],
+        [ u'charmander', [ HG, SS ],  5, u'pallet-town'   ],
+        [ u'squirtle',   [ HG, SS ],  5, u'pallet-town'   ],
+        [ u'treecko',    [ HG, SS ],  5, u'saffron-city',   u'silph-co-7f' ],
+        [ u'torchic',    [ HG, SS ],  5, u'saffron-city',   u'silph-co-7f' ],
+        [ u'mudkip' ,    [ HG, SS ],  5, u'saffron-city',   u'silph-co-7f' ],
+
+        # Gen V
+        [ u'snivy',      [ BL, WH ],  5, u'nuvema-town'   ],
+        [ u'tepig',      [ BL, WH ],  5, u'nuvema-town'   ],
+        [ u'oshawott',   [ BL, WH ],  5, u'nuvema-town'   ],
+        [ u'pansage',    [ BL, WH ], 10, u'dreamyard'     ], # not the basement
+        [ u'pansear',    [ BL, WH ], 10, u'dreamyard'     ],
+        [ u'panpour',    [ BL, WH ], 10, u'dreamyard'     ],
+        [ u'zorua',      [ BL, WH ], 10, u'castelia-city', u'game-freak-hq-1f', u'Game Freak HQ 1F' ],
+        #[ u'tirtouga',   [ BL, WH ], 25, u'relic-castle', u'a' ],
+        #[ u'archen',     [ BL, WH ], 25, u'relic-castle', u'a' ],
+        #[ u'omanyte',    [ BL, WH ], 25, u'twist-mountain'     ],
+        #[ u'kabuto',     [ BL, WH ], 25, u'twist-mountain'     ],
+        #[ u'aerodactyl', [ BL, WH ], 25, u'twist-mountain'     ],
+        #[ u'lileep',     [ BL, WH ], 25, u'twist-mountain'     ],
+        #[ u'anorith',    [ BL, WH ], 25, u'twist-mountain'     ],
+        #[ u'cranidos',   [ BL, WH ], 25, u'twist-mountain'     ],
+        #[ u'shieldon',   [ BL, WH ], 25, u'twist-mountain'     ],
+        [ u'magikarp',   [ BL, WH ],  5, u'marvelous-bridge'   ],
+
+        [ u'snivy',      [ B2, W2 ],  5, u'aspertia-city'    ],
+        [ u'tepig',      [ B2, W2 ],  5, u'aspertia-city'    ],
+        [ u'oshawott',   [ B2, W2 ],  5, u'aspertia-city'    ],
+        [ u'zorua',      [ B2, W2 ], 25, u'driftveil-city'   ],
+        [ u'deerling',   [ B2, W2 ], 30, u'unova-route-6', u'weather-institute', u'Weather Institute' ],
+        [ u'eevee',      [ B2, W2 ], 10, u'castelia-city'    ],
+        #[ u'omanyte',    [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'kabuto',     [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'aerodactyl', [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'lileep',     [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'anorith',    [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'cranidos',   [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'shieldon',   [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'tirtouga',   [ B2, W2 ], 25, u'join-avenue'      ],
+        #[ u'archen',     [ B2, W2 ], 25, u'join-avenue'      ],
+        [ u'magikarp',   [ B2, W2 ],  5, u'marvelous-bridge' ],
+        #[ u'tirtouga',   [ B2, W2 ], 25, u'nacrene-city', u'museum', u'Nacrene City Museum' ],
+        #[ u'archen',     [ B2, W2 ], 25, u'nacrene-city', u'museum'],
+        #[ u'omanyte',    [ B2, W2 ], 25, u'twist-mountain'   ],
+        #[ u'kabuto',     [ B2, W2 ], 25, u'twist-mountain'   ],
+        #[ u'aerodactyl', [ B2, W2 ], 25, u'twist-mountain'   ],
+        #[ u'lileep',     [ B2, W2 ], 25, u'twist-mountain'   ],
+        #[ u'anorith',    [ B2, W2 ], 25, u'twist-mountain'   ],
+        #[ u'cranidos',   [ B2, W2 ], 25, u'twist-mountain'   ],
+        #[ u'shieldon',   [ B2, W2 ], 25, u'twist-mountain'   ],
+        # These are shiny...
+        [ u'dratini',    [     W2 ],  1, u'floccesy-town'    ],
+        [ u'gible',      [ B2     ],  1, u'floccesy-town'    ],
+
+        # Gen VI
+        [ u'chespin',      [ X, Y ],  5, u'aquacorde-town'   ],
+        [ u'fennekin',     [ X, Y ],  5, u'aquacorde-town'   ],
+        [ u'froakie',      [ X, Y ],  5, u'aquacorde-town'   ],
+        [ u'bulbasaur',    [ X, Y ], 10, u'lumiose-city'     ],
+        [ u'charmander',   [ X, Y ], 10, u'lumiose-city'     ],
+        [ u'squirtle',     [ X, Y ], 10, u'lumiose-city'     ],
+        [ u'tyrunt',       [ X, Y ], 20, u'glittering-cave', u'unknown-area-303' ], # 304 means ceiling
+        [ u'amaura',       [ X, Y ], 20, u'glittering-cave', u'unknown-area-303' ],
+        [ u'lucario',      [ X, Y ], 32, u'tower-of-mastery' ],
+        [ u'lapras',       [ X, Y ], 30, u'kalos-route-12'   ],
+
+        [ u'treecko',   [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'torchic',   [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'mudkip',    [ OR, AS ],  5, u'hoenn-route-101' ],
+        # cosplay pikachu is given to you the first time you participate in a contest
+        [ u'pikachu',   [ OR, AS ], 20, u'slateport-city',  u'contest-hall', u"Contest Hall" ],
+        [ u'pikachu',   [ OR, AS ], 20, u'verdanturf-town', u'contest-hall', u"Contest Hall" ],
+        [ u'pikachu',   [ OR, AS ], 20, u'fallarbor-town',  u'contest-hall', u"Contest Hall" ],
+        [ u'pikachu',   [ OR, AS ], 20, u'lilycove-city',   u'contest-hall', u"Contest Hall" ],
+        [ u'latios',    [ OR     ], 30, u'southern-island' ], # eon tickets ignored here - they're not gifts?
+        [ u'latias',    [     AS ], 30, u'southern-island' ],
+        [ u'castform',  [ OR, AS ], 30, u'hoenn-route-119', u'weather-institute' ],
+        [ u'chikorita', [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'cyndaquil', [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'totodile',  [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'snivy',     [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'tepig',     [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'oshawott',  [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'beldum',    [ OR, AS ],  1, u'mossdeep-city',   u'stevens-house'  ],
+        [ u'turtwig',   [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'chimchar',  [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'piplup',    [ OR, AS ],  5, u'hoenn-route-101' ],
+        [ u'camerupt',  [ OR, AS ], 40, u'battle-resort'    ],
+        [ u'sharpedo',  [ OR, AS ], 40, u'battle-resort'    ],
+    ]
+
+def egg_gift_data():
+    return [
+        [ u'togepi',    [ G, S, C ],  5, u'violet-city'   ],
+        [ u'pichu',     [       C ],  5, u'johto-route-34' ],
+        [ u'cleffa',    [       C ],  5, u'johto-route-34' ],
+        [ u'igglybuff', [       C ],  5, u'johto-route-34' ],
+        [ u'tyrogue',   [       C ],  5, u'johto-route-34' ],
+        [ u'smoochum',  [       C ],  5, u'johto-route-34' ],
+        [ u'elekid',    [       C ],  5, u'johto-route-34' ],
+        [ u'magby',     [       C ],  5, u'johto-route-34' ],
+
+        [ u'wynaut',    [ RU, SA, EM ],  5, u'lavaridge-town'  ],
+        [ u'togepi',     [ FR, LG ],  5, u'water-labyrinth' ],
+
+        [ u'togepi',   [ DI, PE, PT ],  1, u'eterna-city',    u'west-gate', u'West Gate' ],
+        [ u'happiny',  [ DI, PE,    ],  1, u'hearthome-city', u'west-gate', u'West Gate' ],
+        [ u'riolu',    [ DI, PE, PT ],  1, u'iron-island', u'b2f-left' ],
+        [ u'togepi',     [ HG, SS ],  1, u'violet-city',   u'poke-mart', u'Poke Mart' ],
+        [ u'mareep',     [ HG, SS ],  1, u'violet-city',   u'pokemon-center', u'Pokemon Center' ],
+        [ u'wooper',     [ HG, SS ],  1, u'violet-city',   u'pokemon-center' ],
+        [ u'slugma',     [ HG, SS ],  1, u'violet-city',   u'pokemon-center' ],
+
+        [ u'larvesta',   [ BL, WH ],  1, u'unova-route-18'     ],
+        [ u'happiny',    [ B2, W2 ],  1, u'nacrene-city', u'west-gate', u'West Gate' ],
+        [ u'wynaut',    [ OR, AS ],  1, u'lavaridge-town'  ],
+        [ u'togepi',    [ OR, AS ],  1, u'lavaridge-town'  ],
+    ]
+
+def record_method_and_gifts(gift_method, gift_data):
+
+    en = session.query(Language).filter_by(identifier=u'en').one()
+
+    for gift_datum in gift_data:
+        pokemon_name  = identifier_from_name(gift_datum[0])
+        versions      = gift_datum[1]
+        level         = identifier_from_name(str(gift_datum[2]))
+        location_name = identifier_from_name(gift_datum[3])
+        area_name       = None
+        if len(gift_datum) > 4:
+            area_name     = identifier_from_name(gift_datum[4])
+
+        pokemon       = session.query(Pokemon     ).filter_by(identifier=pokemon_name                      ).one()
+        location      = session.query(Location    ).filter_by(identifier=location_name                     ).one()
+        location_area = session.query(LocationArea).filter_by(identifier=area_name, location_id=location.id).first()
+        # Some of these don't exist yet
+        if not location_area:
+
+            location_area = LocationArea(
+                location_id = location.id,
+                game_index  = 0, # cause who knows what this means
+                identifier  = area_name
+            )
+
+            area_prose = None
+            if area_name != None:
+                area_prose = gift_datum[5]
+            location_area.name_map[en] = area_prose
+
+            session.add(location_area)
+            session.commit()
+
+        for version in versions:
+            encounter_slot = session.query(EncounterSlot).filter_by(
+                version_group_id    = version.version_group_id,
+                encounter_method_id = gift_method.id
+            ).first()
+
+            if not encounter_slot:
+                encounter_slot = EncounterSlot(
+                    version_group_id = version.version_group_id,
+                    encounter_method_id = gift_method.id,
+                    # No priority over or under other events/conditions
+                    slot                = None,
+                    # Rarity is meaningless for gifts, but say that it's
+                    # 100% to help out code that expects rarity to be defined.
+                    rarity              = 100,
+                )
+                session.add(encounter_slot)
+                session.commit()
+
+            encounter_info = {
+                'version_id':        version.id,
+                'location_area_id':  location_area.id,
+                'encounter_slot_id': encounter_slot.id,
+                'pokemon_id':        pokemon.id,
+                'min_level':         level,
+                'max_level':         level
+            }
+            encounter = session.query(Encounter).filter_by(**encounter_info).first()
+            if not encounter:
+                encounter = Encounter(**encounter_info)
+                session.add(encounter)
+
+        session.commit()
+
+normal_gift_method = session.query(EncounterMethod).filter_by(identifier=u'gift').one()
+record_method_and_gifts(normal_gift_method, normal_gift_data())
+
+egg_gift_method = session.query(EncounterMethod).filter_by(identifier=u'gift-egg').one()
+record_method_and_gifts(egg_gift_method, egg_gift_data())
diff --git a/scripts/gen-iii-contest-effects.py b/scripts/gen-iii-contest-effects.py
new file mode 100644
index 0000000..8f97f31
--- /dev/null
+++ b/scripts/gen-iii-contest-effects.py
@@ -0,0 +1,113 @@
+#!/usr/bin/env python3
+"""
+This is an unmaintained one-shot script, only included in the repo for
+reference.
+"""
+
+import struct
+
+def main():
+    NUM_MOVES = 354
+    with open("pokeruby.gba", 'rb') as f:
+        f.seek(0x3cf594 )
+        data = f.read(8 * (NUM_MOVES + 1))
+
+
+    effects = []
+    combo_id_map = {} # combo_id => move_id
+    combo_pairs = [] # [(combo starter, move id)]
+
+    with open("update_contest_effect_ids.sql", "w") as f:
+        for i in range(NUM_MOVES+1):
+            effect, type, combo_id, *combo_prev = struct.unpack("<BBBBBBBx", data[i*8:(i+1)*8])
+            print(i, idmap[effect], type, combo_id, combo_prev)
+            if i:
+                print("UPDATE moves SET contest_effect_id = %d, contest_type_id = %d WHERE id = %d;" % (idmap[effect], type+1, i), file=f)
+            effects.append(effect)
+            if combo_id:
+                combo_id_map.setdefault(combo_id, []).append(i)
+            for c in combo_prev:
+                combo_pairs.append((c, i))
+
+    move_pairs = []
+    for combo_id, second_move_id in combo_pairs:
+        for id1 in combo_id_map.get(combo_id, ()):
+            move_pairs.append((id1, second_move_id))
+    move_pairs.sort()
+    with open("contest_combos.csv", "w") as f:
+        print("first_move_id,second_move_id", file=f)
+        for first, second in move_pairs:
+            print(first, second, sep=",", file=f)
+
+
+    num_effects = max(effects)+1
+    with open("pokeruby.gba", 'rb') as f:
+        f.seek(0x3d00ac)
+        data = f.read(4 * num_effects)
+
+    with open("contest_effects.csv", "w") as f:
+        print("id,effect_type,appeal,jam", file=f)
+        for i in range(num_effects):
+            if i not in effects:
+                continue
+            effectType, appeal, jam = struct.unpack("<BBBx", data[i*4:(i+1)*4])
+            #print(idmap[i],effectType, appeal//10, jam//10, sep=",")
+            print(idmap[i], appeal//10, jam//10, sep=",", file=f)
+
+idmap = {
+    0: 1, # CONTEST_EFFECT_HIGHLY_APPEALING
+    1: 3, # CONTEST_EFFECT_USER_MORE_EASILY_STARTLED
+    2: 7, # CONTEST_EFFECT_GREAT_APPEAL_BUT_NO_MORE_MOVES
+    3: 17, # CONTEST_EFFECT_REPETITION_NOT_BORING
+    4: 16, # CONTEST_EFFECT_AVOID_STARTLE_ONCE
+    5: 15, # CONTEST_EFFECT_AVOID_STARTLE
+    #6: # CONTEST_EFFECT_AVOID_STARTLE_SLIGHTLY
+    #7: # CONTEST_EFFECT_USER_LESS_EASILY_STARTLED
+    #8: # CONTEST_EFFECT_STARTLE_FRONT_MON
+    #9: # CONTEST_EFFECT_SLIGHTLY_STARTLE_PREV_MONS
+    10: 9, # CONTEST_EFFECT_STARTLE_PREV_MON
+    11: 8, # CONTEST_EFFECT_STARTLE_PREV_MONS
+    12: 4, # CONTEST_EFFECT_BADLY_STARTLE_FRONT_MON
+    13: 5, # CONTEST_EFFECT_BADLY_STARTLE_PREV_MONS
+    #14: # CONTEST_EFFECT_STARTLE_PREV_MON_2
+    #15: # CONTEST_EFFECT_STARTLE_PREV_MONS_2
+    16: 22, # CONTEST_EFFECT_SHIFT_JUDGE_ATTENTION
+    17: 10, # CONTEST_EFFECT_STARTLE_MON_WITH_JUDGES_ATTENTION
+    18: 6, # CONTEST_EFFECT_JAMS_OTHERS_BUT_MISS_ONE_TURN
+    19: 23, # CONTEST_EFFECT_STARTLE_MONS_SAME_TYPE_APPEAL
+    #20: 0, # CONTEST_EFFECT_STARTLE_MONS_COOL_APPEAL
+    #21: 0, # CONTEST_EFFECT_STARTLE_MONS_BEAUTY_APPEAL
+    #22: 0, # CONTEST_EFFECT_STARTLE_MONS_CUTE_APPEAL
+    #23: 0, # CONTEST_EFFECT_STARTLE_MONS_SMART_APPEAL
+    #24: 0, # CONTEST_EFFECT_STARTLE_MONS_TOUGH_APPEAL
+    #25: # CONTEST_EFFECT_MAKE_FOLLOWING_MON_NERVOUS
+    26: 18, # CONTEST_EFFECT_MAKE_FOLLOWING_MONS_NERVOUS
+    27: 33, # CONTEST_EFFECT_WORSEN_CONDITION_OF_PREV_MONS
+    #28: # CONTEST_EFFECT_BADLY_STARTLES_MONS_IN_GOOD_CONDITION
+    29: 27, # CONTEST_EFFECT_BETTER_IF_FIRST
+    30: 28, # CONTEST_EFFECT_BETTER_IF_LAST
+    31: 20, # CONTEST_EFFECT_APPEAL_AS_GOOD_AS_PREV_ONES
+    32: 19, # CONTEST_EFFECT_APPEAL_AS_GOOD_AS_PREV_ONE
+    33: 26, # CONTEST_EFFECT_BETTER_WHEN_LATER
+    34: 25, # CONTEST_EFFECT_QUALITY_DEPENDS_ON_TIMING
+    35: 12,  # CONTEST_EFFECT_BETTER_IF_SAME_TYPE
+    #36: # CONTEST_EFFECT_BETTER_IF_DIFF_TYPE
+    37: 2, # CONTEST_EFFECT_AFFECTED_BY_PREV_APPEAL
+    38: 32, # CONTEST_EFFECT_IMPROVE_CONDITION_PREVENT_NERVOUSNESS
+    39: 29, # CONTEST_EFFECT_BETTER_WITH_GOOD_CONDITION
+    40: 30, # CONTEST_EFFECT_NEXT_APPEAL_EARLIER
+    41: 31, # CONTEST_EFFECT_NEXT_APPEAL_LATER
+    #42: # CONTEST_EFFECT_MAKE_SCRAMBLING_TURN_ORDER_EASIER
+    43: 21, # CONTEST_EFFECT_SCRAMBLE_NEXT_TURN_ORDER
+    44: 13, # CONTEST_EFFECT_EXCITE_AUDIENCE_IN_ANY_CONTEST
+    45: 14, # CONTEST_EFFECT_BADLY_STARTLE_MONS_WITH_GOOD_APPEALS
+    46: 11, # CONTEST_EFFECT_BETTER_WHEN_AUDIENCE_EXCITED
+    47: 24, # CONTEST_EFFECT_DONT_EXCITE_AUDIENCE
+}
+
+from collections import Counter
+c = Counter(idmap.values())
+print([v for v in c if c[v] > 1])
+assert len(idmap) == len(set(idmap.values()))
+
+main()
diff --git a/setup.py b/setup.py
index 7ea67c7..71fe291 100644
--- a/setup.py
+++ b/setup.py
@@ -1,30 +1,29 @@
 from setuptools import setup, find_packages
 
-import sys
-
 setup(
-    name = 'Pokedex',
-    version = '0.1',
-    zip_safe = False,
-    packages = find_packages(),
-    package_data = {
+    name='Pokedex',
+    version='0.1',
+    zip_safe=False,
+    packages=find_packages(),
+    package_data={
         'pokedex': ['data/csv/*.csv']
     },
-    install_requires = [
-        'SQLAlchemy>=0.9.7',
+    install_requires=[
+        'SQLAlchemy>=1.0,<2.0',
         'whoosh>=2.5,<2.7',
-        'markdown',
-        'construct',
+        'markdown==2.4.1',
+        'construct==2.5.3',
         'six>=1.9.0',
     ],
-    entry_points = {
+    entry_points={
         'console_scripts': [
             'pokedex = pokedex.main:setuptools_entry',
         ],
     },
-    classifiers = [
+    classifiers=[
         "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3.4",
         "Programming Language :: Python :: 3.5",
-    ],
+        "Programming Language :: Python :: 3.7",
+    ]
 )